e="style1"> cs1120: Problem Set 9: Making A Dynamic Web Application
cs1120  Fall 2010

cs1120: Computer Science
from Ada and Euclid to Quantum Computing and the World Wide Web


Instructor
Westley Weimer

Email Address
cs1120-staff@cs.virginia.edu

Class Meetings
Mondays and Wednesdays, 3:30-4:45pm in CHEM 005
Office & Lab Hours
Mo 14:30-15:00 Wes
Mo 17:00-19:00 Evan
Fr 15:00-16:00 Nathan
Su 13:00-14:00 Evan Yang
Su 14:00-15:00 Evan
Su 15:00-17:00 Jon


Located in Thornton Stacks
or OLS 001 (We 11:00-14:00 + Su)
or OLS 219 (Mo/We 14:30-15:00)
does not). Your site can be anything you want (so long as it is consistent with the University's policy on public computing resources). You may incorporate anything from previous problems sets you want into your site, as well as any other open source code you find (so long as your use of it is consistent with the provider's distribution license).

Your site should be as accessible to all web users. That means it should be obvious to any visitor what your site is for and how to use it. You site should be designed so it works well even for for visitors who have slow network connections (that is, its function should not depend on unnecessarily large images) or small monitors with poor color contrast. You should even strive to make your site accessible to the blind (that is, it should be possible to use your site using a text-only browser) or to users with iPhones or similar PDAs.

If you are having a hard time thinking of a good idea for your site, you may want to look over projects from previous classes:

Note that expectations are much higher for this year's class than in previous years: students in previous years did not do a previous assignment programming in Python, did not have the course book, and according to Neil De Grasse Tyson's essay we should expect this year's students to be 4% better, so your web site projects should be even more impressive.

Ideas

If you are having a hard time thinking of a good idea for your site, you may want to consider these titles from previous years: In addition, many presentations from CS 1120 in 2009 and 2010 are available on YouTube for inspiration. Turn up the volume on your end so that you can hear them. Watching the first few minutes of each one is a good way to get a feel for possibilities — then you might watch the one that interests you most in its entirety.

Another approach for finding ideas is to consider websites that you enjoy using. Could you make something similar to eBay, Flickr, Craigslist, Blogger, IMDb, or Facebook?

Making A Pretty Website

A number of video tutorials are available on how to make your webserver look more professional. We grade primarily on functionality, but many students are interested in artistic merit.

Team Requests

You will be assigned teams for this assignment, but I may honor team requests. You must send these by email. The subject line on your email should be "PS9 Request". If your team has agreed to work together, your team should send exactly one email, with cc:'s to all team members.

In order to increase the chances I honor your request, your email should not only list the team members but should give a brief description of the web site you have agreed as a group to build. Students who do not request teams will be arbitrarily grouped into teams or three or four.

The size of your team may be between one and fifty students, but the impressiveness of the web site you intend to build should scale as the square root of the number of people on your team (e.g., a team of four students should build something twice as impressive as a team of one student working alone). If you have a large team, you will need to figure out carefully how to divide your project into smaller, independent pieces. The ideal team size in most cases will be three or four students. More than that, and you spend too much time on management issues. Less than that, and it is hard to build a sufficiently interesting web application.

Project Descriptions

By midnight, email to cs1120-staff@cs.virginia.edu a document that describes:

Design Reviews

After class one day (see calendar above), each team will sign up for a time slot for a design review project meeting. All team members must attend the design review, so it is important that you select a time all members can attend.

At the design review, you will describe your ideas for what your site will do and how you will build it. You will also be expected to show your progress so far. We will discuss the questions on your Proposal document and how you are dividing the work among your team.

The design review does not need to be a formal presentation, but you should prepare for it to make it as useful as possible. In particular, you should come to the design review knowing what you think the toughest problem for your project will be and having some preliminary ideas how to solve it.

Presentations and Reports

The final project deliverable is either a presentation or a report (reports are due about a week after presentations are due). In order to be eligible for the presentation option, your team must send me an email before 11:59pm on the appropriate day (see calendary above) that contains the URL for your project site. Some essential functionality of your project must be working at that URL when you send the email to be eligible for the presentation.

In the normal class room on from 5pm to at most 8pm (see calendar above), teams that qualify for the presentation option will have an opportunity to present and demonstrate their web sites. The time for each presentation will be alloted depending on the number of qualifying teams (but will probably be about five minutes per team). To be eligible to present your site, you must send me an email containing a zip file containing all the files for your site by the appropriate day (see calendar above). The subject of the email should be "PS9 Team N", where N is your team name. You should also send me usernames and logins for your site: I will have them available in another window for copy-and-paste when you give the presentation. You can change your site between when you send the email and when you do the presentation, but you should be very wary. Your presentation should include the following elements:

Further notes:

Teams that do not do a presentation instead submit a final project report containing:

If you present your site, you do not need to turn in a paper project report.

Minor extra credit (+2 points on PS9) will be offered to students who attend the (optional) Presentation Day to see the presentations.

Reports

Unless you gave a presentation, your team should prepare a written report. It should contain the following sections:
  1. Introduction. What is the theme or purpose of your website? Briefly, how does it work? Who would benefit from it? Why is it better than, or equal to, what is currently available? Sell me on your idea.
  2. Use Cases. Walk through indicative usage patterns for your website. What do you expect a user to do? For each one, include screenshots showing all of the steps. You should include enough screenshots to show off all of your hard work. If you want to draw attention to a particular portion of the screenshot, mark up the screenshot (e.g., as the red circles in the PS8 screenshots). For most groups there will be at least two such use cases: one for each CS 1120 concept. Notably, you should document everything a user could do on your site: if you don't document it, I won't know about it and won't give you credit for it.
  3. Implementation and Concepts. Describe the computing, coding, or stylistic work that produced your final website. Which concepts and topics from the course have you incorporated into your website? Include code listings for non-trivial new code that you wrote. For example, you need not list changes to constants.py or other minor cosmetic changes. You should, however, list any new database interactions, or any code that shows course concepts (e.g., recursion, list filtering, auction logic, etc.). If your code sits in the middle of existing PS8 code, do not bother showing the PS8 code. If PS8 code sits in the middle of your code, gray it out or bold your code or somesuch. In any event, it should be clear what was your work and what was already there. Code you list should be documented. In addition, every piece of code you list must also be described in English in the report. If your code does not work perfectly, so state, and describe what should happen and how you would solve it.
  4. Project Management. Describe your meeting frequency and structure. How was the work divided up? Who was responsible for what? How were the tests devised? Does your project pass all of your tests? How did you integrate separate pieces written by separate people? About how long did each person work on each task?
  5. Conclusion. Are you pleased with the result? What worked well and what worked poorly? What was easy? What was harder than you thought? Did you stick to your initial schedule? If you were going to do it over again, what would you change? What advice would you give to people doing CS 1120 projects in the future? Recalling your grading contract from your Project Description, what grade do you feel you deserve?
There is no length limit either way on your report. I am more concerned with the answers to the questions posed above than with filler text. Answer everything above fully and then stop. You will lose points for spelling or grammatical errors in your report.

Your report should be a turned in as a PDF file. You will lose points if you turn in a DOC or DOCX file.

Peer Evaluations

To prevent freeloading, part of your grade will be determined by peer evaluation. Peer evaluations can be completed via the automatic adjudicator, and must be completed at or before the time you turn in your report or make your presentation.

You must submit an evaluation of every member of your group, including yourself.

Group work can be tricky. For just one example of potential pitfalls, check out this recent journal article on gender biases in interpersonal communication. If your group has friction, please let me know and we can try to work things out.

Final Checklist: Presentation

If you applied for and received permission to do a Presentation, you must:

Final Checklist: Report

If you completed a Report, you must:

Recommended Reading and Browsing

cs1120: Problem Set 9: Making A Dynamic Web Application
cs1120  Fall 2010

cs1120: Computer Science
from Ada and Euclid to Quantum Computing and the World Wide Web


Instructor
Westley Weimer

Email Address
cs1120-staff@cs.virginia.edu

Class Meetings
Mondays and Wednesdays, 3:30-4:45pm in CHEM 005
Office & Lab Hours
Mo 14:30-15:00 Wes
Mo 17:00-19:00 Evan
Fr 15:00-16:00 Nathan
Su 13:00-14:00 Evan Yang
Su 14:00-15:00 Evan
Su 15:00-17:00 Jon


Located in Thornton Stacks
or OLS 001 (We 11:00-14:00 + Su)
or OLS 219 (Mo/We 14:30-15:00)

cs1120: Computer Science
University of Virginia
weimer@virginia.edu
Using these Materials