Approximate overview
Events
Other good things
thingy.html link is broken. Can you fix it?
Yes. Give me a few minutes.
Are readings supposed to be due at 8pm?
Yes. If it’s been 10:30, it’s a mistake.
Other links are broken, too.
Damn.
How I expected you to write rebelsky-chirps.
(define rebelsky-chirps
(map chirp-contents
(filter (o (section equal? "rebelsky" <>)
chirp-author)
chirp-list)))
How some of you wrote rebelsky-chirps.
(define rebelsky-chirp?
(lambda (chirp)
(equal? "rebelsky" (chirp-author chirp))))
(define rebelsky-chirps
(map chirp-contents (filter rebelsky-chirp? chirps)))
How others of you wrote rebelsky-chirps.
(let ([rebelsky-chirp?
(lambda (chirp)
(equal? "rebelsky" (chirp-author chirp)))])
(define rebelsky-chirps
(map chirp-contents (filter rebelsky-chirp? chirps))))
Alternately,
(define rebelsky-chirps
(map chirp-contents
(filter (lambda (chirp)
(equal? "rebelsky" (chirp-author chirp)))
chirp-list)))
How I expected you to write count-of-harris-chirps
(define count-of-harris-chirps
(tally (o (section equal? "harris" <>) chirp-author)
chirp-list))
If I can get the appropriate infrastructure in place, your next mini project will be processing chirps (Tweets).
It’s easy to get things wrong
Our css file does not include css. (That was a fun one.)
The link to the style sheet is wrong if you download the files in the wrong way.
“I have three versions of the file and grabbed the wrong one.”
Whatever you did is fine.
Paste the URL for your site in the Gradescope link