Princeton University |
Computer Science 333:
|
Thanks to everyone for really great presentations. It's pretty remarkable what can be accomplished in 2/3 of a semester.
Now the final bit: here are instructions for final submission. These echo what was said earlier, but with some minor revisions, so please read carefully.
Lecture notes: 2/7 2/9-14 2/16 2/21 2/23 3/1 3/6 3/8 3/13 3/15 3/27 3/29 4/5 4/10 4/12 4/17 4/19 4/26 5/1 5/3
Assignments:   0     1     2     3     4    
Project: project ideas (updated 3/5) preliminary description (2/7) previous projects (2/7) comments from previous projects (2/7) project slides (2/9) undergrad advisors (2/14) Project Overview Document SVN, Git; CAS (3/27) Project groups (3/27) what to do after break (3/27) CAS code Demo and submission info (4/11) CAS code as a tar file sample final report (4/22)
Readings: 2011 topics general bibliography language tutorials
Old stuff: Piazza playlist survey getting a CS account Epigrams on Programming SQL injection attacks Dan Russell Ruby and Javascript video RJMetrics C++ paper by Bjarne Stroustrup Google C++ Style Guide Annemarie Bridy International Obfuscated C Code Contest
Dates: All dates are subject to minor changes.
Su Mo Tu We Th Fr Sa Feb 1 2 3 4 5 6 7 8 9 10 11 first class 12 13 14 15 16 17 18 assignment 0 due 19 20 21 22 23 24 25 assignment 1 due 26 27 28 29 assignment 2 due Mar 1 2 3 4 5 6 7 8 9 10 assignment 3 due 11 12 13 14 15 16 17 assignment 4 due 18 19 20 21 22 23 24 spring break 25 26 27 28 29 30 31 weekly TA meetings start this week Apr 1 2 3 4 5 6 7 8 9 10 11 12 13 14 project prototype 15 16 17 18 19 20 21 22 23 24 25 26 27 28 alpha test 29 30 May 1 2 3 4 5 last class; beta test 6 7 8 9 10 11 12 demo days 13 14 15 16 17 18 19 Dean's date: projects due by 5pm 20 21 22 23 24 25 26 27 28 29 30 31
This is a course about the practice of programming, an attempt to expose students to the development of real programs. Programming is more than just writing code. Programmers must also assess tradeoffs, choose among design alternatives, debug and test, improve performance, and maintain software written by themselves and others. At the same time, they must be concerned with compatibility, robustness, and reliability, while meeting specifications. Students will have the opportunity to develop these skills by working on their own code and in group projects.
During the first half of the semester, there will be a programming assignment each week, which should take perhaps 5-6 hours to complete. During the second half of the semester, students will work in groups of 3 to 5 on a project that will involve a substantial amount of design and implementation.
COS 333 is about programming, not about a specific language. The course will assume that you are very familiar with C and Java, and will include excursions into C++ and scripting languages like shells, Awk, Python and Javascript. There will be significant emphasis on tools, both how to use them and how they are designed and built. Students must be comfortable with C and Java programming and with Unix, and able to write modest-sized programs that work. COS 217 and 226 are prerequisites.
This is meant to be more than a laundry list, however. Each section will also discuss issues of design, implementation, testing, performance, portability, and other software engineering concerns, and these will also be part of the programming assignments. With luck there will be a couple of guest lecturers as well.
There is one required text: The Practice of Programming, by Kernighan and Pike; you should also know basic Unix tools and usage as described in, for example, The Unix Programming Environment. Other readings will be handed out in class or found on the Web. The books listed in this bibliography are also worth looking at; they cover a wide variety of material related to programming.
I have also asked the Engineering library to put these books on reserve:
Lectures:
Tuesday and Thursday 11:00-12:20, Frist 302
Professor:
Brian Kernighan,
311 CS Building, 609-258-2089, bwk at cs.princeton.edu. Depending on
class size, I may set up regular office hours once things get rolling;
alternatively, send mail to make an appointment, or just drop in if my
door is open, which it usually is.
Teaching Assistants and office hours:
Stephen Beard (Fri 2-3, CS 213), Chris Monsanto (Mon 10-11, CS 214), Srinivas Narayana (Thu 3-4, CS 314), Taewook Oh (Wed 1:30-2:30, CS 213), Yida Wang (Mon 11-12, CS 318A), Gordon Stewart.
Half a dozen programming exercises will be assigned during the first half of the term; each is intended to take about 5-6 hours, but is sure to take longer unless you are careful.
Assignments are together worth about 35-40 percent of the course
grade. Assignments are due by
midnight on Sundays
unless there are extraordinary circumstances. For the record,
extracurricular activities and heavy workloads in other classes don't
count as "extraordinary", no matter how unexpected or important or
time-consuming. Assignments will generally be posted on Tuesday and due
at midnight on Sunday 12 days later. This leaves enough time that we
will not be able to grant extensions except in case of documented medical
or other serious issues.
If you submit your work late,
The project will have frequent checkpoints along the way for which you will have to prepare status reports, preliminary designs, and the like. There will be a public presentation and demo at the end, a written writeup, and submission of a system for testing and evaluation. All of these are graded.
The project will be worth about 60-65 percent of the course grade; it will be shared equally among group members, with the possibility of negative adjustments for members who fail to contribute their fair share.
You must complete all assignments and project requirements to pass the course. Furthermore, the class is so large that we don't have the resources to nag and make special arrangements; you are responsible for meeting all the requirements without reminders.
Regular class attendance is required and class participation helps. Unexcused absences are grounds for a failing grade regardless of other performance. This means you. |
Do not, under any circumstances, copy another person's program for an assignment. Writing code for use by another person or using another person's code in any form violates the University's academic regulations.
Examples of unacceptable behavior for assignments include:
The program you turn in must be your work. You may get help from the instructor or a TA after you have started writing code, but not from other students. Computer science assignments are not like physics or math problem sets: there is no single right answer. Each student is expected to come up with his or her own individual solution.
If you plan to do something that you are not absolutely sure is legal, ask first. Ignorance of this policy will not be accepted as an excuse for your actions.
You are responsible for ensuring that your files are not readable by your classmates. We recommend doing your COS 333 assignments on your own machine or in a private subdirectory, i.e.:
% mkdir cos333 % chmod 700 cos333
Project groups are encouraged to share insights and information about how things work, how to get things done, and other aspects of programming knowledge.