Introduction00:00

  • CS50 Staff 2014 share favorite memories of CS50, advice for students, and their signature dance moves.

  • Register for Puzzle Day 2014 with friends from Facebook who will challenge you with problems they have written.

3D Printing03:27

  • Ansel Duff, former student and advisee, is now an engineering student who built the binary bulbs this summer with Dan Bradley, as well as the lecturn used on stage.

    • He built an iPhone dock using a 3D printer, which takes plastic filament and melts it down to build objects layer by layer. To do this, he first measured the device and used CAD (computer aided-design) software to create it.

  • On campus, more advanced researchers are using biological materials to solve physiological problems for humans.

Algorithms06:38

  • The field of computer science has many directions and areas to go into. The guide has descriptions and a diagram of classes after 50.

  • Today we focus on the fundamental view of having algorithms that find the outputs for a problem given some inputs. The phonebook example was solved in three ways, with one (dividing the problem in half each time) being fundamentally faster. If the phonebook had 4 billion pages, it would only take 32 divisions to find the page containing a particular person like Mike Smith.

  • Pseudocode is expressed using English or any language to convey the idea of an algorithm, with the goal of anticipating all possible cases.

     1pick up phone book
     2open to middle of phone book
     3look at names
     4if "Smith" is among names
     5    call Mike
     6else if "Smith" is earlier in book
     7    open to middle of left half of book
     8    go to line 3
     9else if "Smith" is later in book
    10    open to middle of right half of book
    11    go to line 3
    12else
    13    give up
    • The last else is a corner case, to handle the possibility that Mike isn’t in the phonebook at all.

  • Software crashing usually means that a programmer didn’t anticipate a case or mistake, so the program acts unpredictably, crashing or rebooting your computer.

  • More general problem of taking attendance can be formalized as shown in TED’s animated clip "What’s an algorithm?".

    • David’s script and narration describes counting people one at a time and then two at a time, introducing variables, loops, and conditions.

Programming Concepts14:41

  • A variable is like a container (a glass bowl) implemented as bits on a hard drive or memory, that stores a particular value.

    1let N = 0
    2for each person in room
    3  set N = N + 1
    • In the code above, line 1 sets the value of N to 0, like having an empty glass bowl.

    • Line 3 is like adding a ping pong ball to the glass bowl, incrementing the value of the variable by 1.

  • A loop is doing the same thing over and over again, commonly expressed in a format like "for each person in the room, do this" with the proposition for.

    • The indented line, line 3, is will be done in every pass of the loop.

  • A condition, or branch, will handle certain cases. In the animated example, when counting pairs of people in a room, the case of having an odd number of people is handled by such a condition, as shown below.

    1if 1 person remains then
    2  set N = N + 1

PB&J Demonstration17:14

  • Rob and two volunteers, Anita and Kiersten, will demonstrate making a peanut butter and jelly sandwich. David will note pseudocode instructions from the audience.

  • Computers need very specific instructions to complete tasks, and here audience volunteers will give instructions.

    1. Open the bag of bread.

    2. Remove the bread.

      • Rob throws the bag of bread away from the table.

    3. Place two slices next to each other.

    4. Take your hand and set it lightly atop the peanut butter and unscrew the lid and put it gently next to the peanut butter.

    5. Pick up knife.

      • Rob holds knife by blade.

    6. Hold knife by the handle.

    7. Put knife in peanut butter and take out as little as possible.

      • Rob cuts through the paper seal of the peanut butter.

    8. Btw, remove paper first.

    9. Using knife in peanut butter, apply peanut butter on said bread.

    10. Taste peanut butter to assess quality.

    11. Carefully pick up jelly.

      • Rob holds bottle upside-down.

    12. Remove lid from jelly and barely squeeze any.

    13. Btw, remove paper from jelly.

    14. Invert jelly bottle before jelly falls out.

    15. Replace the cap.

    16. Remove cap from jelly.

    17. Remove cap from peanut butter.

    18. Drop all the jelly on the bread.

    19. Remove excess jelly.

    20. While any sandwich remains

    21. Eat

  • This demonstration (and Rob in particular) reveals how humans take for granted that others will understand what they mean, but computers need explicit, literal instructions.

  • Ultimately, we will program in source code that is not in English but a language like C or Java or C++.

  • The following code looks scary, but will be understandable by next week.

    #include <stdio.h>
    
    int main(void)
    {
        printf("hello, world\n");
    }
  • The syntactic stuff, braces and semicolons, is not as important as the "simple ideas." In this case, we want to focus on the line that begins with printf and simply has the effect of saying hello, world.

Scratch28:06

  • To work with just the important ideas for now, we will start with a programming language called Scratch from MIT for Problem Set 0. The Scratch software can be used in the browser, or downloaded for use offline. The software allows us to write programs that use graphical puzzle pieces to instruct programs using the same concepts of variables, loops, and conditions. Its mascot, a cat, is also named Scratch.

  • The Control category contains blocks with familiar words like if, else, and repeat.

    • The [ when (green flag) clicked ] block is what starts the program.

  • The Looks category has a block named [say [] ] that has a box for us to type text into.

    • By dragging that block below the [ when (green flag) clicked ] block, the cat will say the text, in this case, hello, world, when the green flag is clicked.

  • We can call each instruction a statement. Programs are generally many algorithms that humans wrote, in essence zeroes and ones, that represent statements that together solve a problem.

    • Examples of statements are the wait block that pauses the program and the play sound block that plays sounds.

  • A boolean expression is either true or false.

    • <mouse down?>, < [x] < [y] >, <touching [mouse-pointer]> are all boolean expressions.

    • The < < > and < > > block can be used to combine boolean expressions.

  • A condition such as the [ if <> ] block will have hexagonal openings that fit boolean expression blocks, which are in the shape of a hexagon.

    • Conditions can also be nested for three possible branches.

  • Loops include the forever and repeat blocks.

  • Variables are represented by blocks such as [ set [N] to [0] ] where N and 0 can be arbitrarily defined.

  • Demonstrations of Pastry Catch with Abby and Ivy`s Hardest Game with Phillip.

  • Let’s build a sample Scratch program using all of these concepts.

    • First, add an [ if < > then ] block to the when green flag clicked block.

    • Then add [ pick random [1] to [10] ] to the left side and 8 to the right side, and [ play sound [meow] ] to the inside of the condition, resulting in an 80% chance of Scratch saying "meow."

    • Starting over, we can use a [ forever ] block and a [ wait [1] second ] block to have Scratch say "meow" every second.

  • In pet the cat, we combine a loop and a condition so that the cat will meow only if the mouse pointer is touching it or, in other words, if we are petting it. In don’t pet the cat, we add an extra condition (using the else keyword) so that the cat will meow indefinitely, but will roar if we touch it with the mouse pointer.

  • hi hi hi contains a seal barking, but will stop when the space bar is pressed. One block controls the barking of the seal and one waits for space to be pressed, but both loops run simultaneously.

  • counting sheep contains a sheep that says "baa" with some probability.

  • The seal and sheep are called sprites, each with a different costume. Each sprite can have its own set of blocks controlling its actions, and move or act simultaneously, which is what we call threading.

  • Another program written by Dan Bradley has a Scratch extension, or custom puzzle piece, that controls the lightbulb on the lectern. It sends a message across the internet to do this.

    • He has also implemented buttons that change the lightbulb to various colors, as well as controlling the entire binary bulbs fixture, through Scratch.

Announcements49:56

  • Sections and office hours will begin next week.

  • Zamyla Chan’s walkthroughs will help you begin problem sets.

  • Finally, we play What Does the Fox Say as a final example of Scratch.