Day 4: Thursday, January 16th, 2014ΒΆ

  1. For class, read http://en.wikipedia.org/wiki/Deep_Web. Maybe also check out http://arxiv.org/pdf/1312.6122v1.pdf.

  2. Quiz and discussion.

  3. Code review HOWTO:

    To do a code review, today:

    1. Check out and run/review; add comments and/or fix;
    2. Commit your comments.
    3. Push to branch ‘hw1-review’ on your own fork, and submit pull requests to original repository.

    To do all of this with git, let’s do this in a new repo.

    git clone <repository under review> cse491-hw1-review
    cd cse491-hw-review
    # ... make changes ...
    git commit -am "review of hw1"
    git push <your home repository> master:hw1-review
    # now, go set up a pull request.
    

    The last ‘git push’ command is the only truly new one; you’re just copying your default branch, ‘master’, to your home repository, with the new name ‘hw1-review’.

    Your code review should focus on the following issues:

    1. Does it run
    2. Spaces rather than tabs
    3. Spaces after # in comments
    4. Properly spelled variable names

    See http://www.python.org/dev/peps/pep-0008/ for general Python code thoughts ;).

  4. Do code review!

Previous topic

Homework 2

Next topic

Day 3: Tuesday, January 14th, 2014

This Page

Edit this document!

This file can be edited directly through the Web. Anyone can update and fix errors in this document with few clicks -- no downloads needed.

  1. Go to Day 4: Thursday, January 16th, 2014 on GitHub.
  2. Edit files using GitHub's text editor in your web browser (see the 'Edit' tab on the top right of the file)
  3. Fill in the Commit message text box at the bottom of the page describing why you made the changes. Press the Propose file change button next to it when done.
  4. Then click Send a pull request.
  5. Your changes are now queued for review under the project's Pull requests tab on GitHub!

For an introduction to the documentation format please see the reST primer.