|
[ Home ] [ Syllabus ] [ Lectures ] [ Information ] [ Assignments ] [ Grades ] Unless otherwise noted, all assignments, homeworks, programs, assessents, etc... Are due at 11:59:59pm on the day it is due. I.e., if the assignment is due on Monday, it means it's due before Monday turns Tuesday. | ||||
Exams | ||||
Homeworks
| Assignments
| Quizzes
| TurninSince all programs you write should compile and run on the cs machines
(moons.cs.unm.edu), it is of course imperative that you have a CS account.
On these machines, there is a facilty called
turnin <assignment name> <list of files>
When you have turned in an assignment, you can verify your turnin using the following command:
turnin -ls <assignment name>
Note! If you get the following type of message when trying to submit your assignment:
Turning in:
Can't open "Hw1Answers.txt".
All files were not turned in successfully!
There is a permissions issue with your files. In order for the turnin to work, the following two rules have to be adhered to:
Let's say that you have the following structure:
Home
+ -> CS341
+ -> Hw1
+ -> Hw1Answers.txt
In order to accomplish the correct permissions on the files and directories, you'd say:
> cd ~/CS341
> chmod o+x Hw1
> chmod o+r Hw1/Hw1Answers.txt
> cd Hw1
> turnin cs341.hw1 Hw1Answers.txt
And the file would be turned in correctly. It's ok to turn in an assignment several times, only the latest submission will be used. Note that this is the only valid way of turning in an assignment. Submissions over email or other media will not be accepted. Assignment deadlines should be kept, and once the turnin for an assignment is closed, assignment submissions will no longer be accepted. Notes! You should *ONLY* turn in the source and documentation files specifically requested in the assignment writeup. Submission of other files such as backup files etc, will have a negative impact on your grade for that assignment. Naturally, all files that you turn in should be properly documented with your name, email, and assignment name and number.
| Page last modified 04/29/2008 11:46AM by Andree |