There is a WWW interface at the CS department portal. This allows submission by any registered users to any open assignment.
If you don't get the control code because you used the wrong e-mail address, you may register again with the correct e-mail address. But otherwise please do not register again because two registrations for the same person will make it hard to ensure that proper credit is given for submitting projects.
java -cp client.jar -Dcourse=cseXXXX -Dproject=projN -Dcontrol=XYZ submit.client.Submit file1.txt File2.java
Submission parameters may go into the files being submitted. Using a header like this:
/* * Author: Iam Student, istudent@fit.edu * Course: CSE 2010, Section 02, Spring 2013 * Project: Proj 03, Perverse Inverse * Charset: US-ASCII * -*- coding: LATIN-1 -*- Recognized by GNU Emacs */or
{- - Author: Iam Student, istudent@fit.edu - Author: Another Partner, apartner@fit.edu - Course: CSE 2010, Section 02, Spring 2006 - Project: Proj 03, Perverse Inverse -}or
;; Author: Iam Student, istudent@fit.edu ;; Course: CSE 2010, Section 02, Spring 2006 ;; Project: Proj 03, Perverse Inversehelps a lot. The tags "course" and "project" direct the file to the proper location. Each of these keywords must appear on a line of its own toward the beginning of the file. White space is ignored, case is ignored, as is everything on the line starting with the comma. The first example above is appropriate as the header for a Java program, but since the leading characters are ignored, a header can be constructed for most any line-oriented file format.