CSCI 485 Assignment 1

Printer testing: if you want to test your print script without sending something to an actual printer, you can now also use the printer name nullp. (Thanks jim!)

To obtain, edit, and submit the assignment, follow the instructions below to fork/clone the git repository, editing the required source code files in the repository you clone, and then submitting your updated repository.

The specific assignment instructions can be found in the README file in the cloned repository.

The assignment must be submitted using the process below by 5pm on January 30th.
Late penalties are detailed in the main CSCI 485 labs page.


Git submission system

For this assignment (and all CSCI 485 assignments this term) you will be using an adaptation of the git version control system to obtain the assignment material, to track changes as you make them, and ultimately to submit your completed assignment.

You must use this system to obtain and submit your work - no other mechanism will be accepted.

The specific instructions to obtain, edit, and submit this assignment are as follows:
Obtaining the assignment material
Sometime after the instructor has announced that the material has been posted,
log into otter (or one of the cubs/pups) and
   follow the instructions below.
The instructions are case sensitive and are to be entered exactly as shown,
   including the work $USER exactly as shown, ONCE ONLY.
(They create a repository for you on a central server and copy that 
   repository to your account - doing this multiple times is highly 
   likely to cause issues!)
If it looks like an instruction failed then stop and check with the
   instructor before proceeding to the next step.
    cd
    mkdir -p csci485
    ssh csci fork csci485/assign1 csci485/$USER/assign1
    cd csci485
    git clone csci:csci485/$USER/assign1
    cd assign1
Working on your assignment
In your csci485/assign1 directory you should find, among other things,
   a README file containing the assignment instructions and requirements,
   plus descriptions of any other relevant files in the repository.

Git allows you to track the changes you make to the files in the directory, to create and switch between alternate versions of them, and to roll back changes if you find them unsuitable. However, git needs to be told when you have added or altered files you want included in the latest version, and when the latest version is ready to be committed. To add a new file, or changes to a file use the command git add filename To delete a file use the command git rm filename To rename a file use the command git mv oldname newname To save/commit your changes and associate a message with the new version: git commit -m "whatever your message is" See these links for more detailed discussion of the the processes involved and of git in general.

Submitting your completed assignment
You can submit your assignment as often as you wish, each new submission copies your
   new updates/alterations to the version of your assignment stored on the central git server.
If you don't do these steps successfully prior to the submission deadline
   then your work is not submitted and you get zero for the assignment.
Make sure you are in your assign1 directory on otter or one of the pups/cubs,
   then follow these instructions:
      git add .
      git add -u
      git commit -m "committing for submit"
      git push