Skip to content

jrsacher/cs50-2019-spring

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 

Repository files navigation

CSCI E-50 Spring 2019


Section 8

INSERT INTO cs50 (sections) VALUES (‘the end’)

Slides

No sandbox, but run the following in your IDE:
wget https://cdn.cs50.net/hbs/2019/spring/classes/4/imdb.db

Attendance


Section 7

Writing HTML by hand is boring

Slides

Sandboxes:

Attendance


Section 6

for person in section:
    print(f"hello, {person}!")

Slides

Sandbox

Attendance


Section 5

...a series of tubes?

Best resource for all things HTML/CSS

Attendance


Section 4

C ya later!

Slides

Sandbox

Attendance


Section 3 part 2

Attendance


Section 3

What’s the point(er)?

int main(int argc, char *argv[])
{
    char *name = "section";
    
    if (argc == 2)
    {
        name = argv[1];
    }

    printf("Hello, %s!\n", name);
}

Slides

Sandbox

Attendance


Section 2

Arrays are awesome

int main(void)
{
    string s = "Hello, section!";
    for (int i = 0, len = strlen(s); i < len; i++)
    {
        printf("%c\n", s[i]);
    }
}

Slides

Sandbox

Attendance


Section 1

From Colorful Cats to plain old C

int main(void)
{
    printf("Hello, section!");
}

Slides for today's section

Sandbox for section 1

Attendance

Resources

Contact Josh

Learn more about Josh by googling (I'm not the crossfit guy, so pretty much anyone that looks out of shape is me)

About

Section materials for Spring 2019

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published