Present 3 Briefs each one a single page. (pdf / print / or web).
These briefs should present three different potential final project topics.
Your ideas do not need to be complete, But the briefs should convey your nascent ideas well. We are still in an expansive phase, so present unorthodox ideas. Challenge us.
While you are working, think about these questions:
You needn't have good answers to all the above questions, but give them some thought. You may address these questions in the brief itself,
These are old unix commands. They exist in many places:
curl
to pull down text, eg: curl https://www.gutenberg.org/files/1342/1342-0.txt > ./pride-and-prejudice.txt
wc
to count lines, words, and bytes. eg: wc pride-and-prejudice.txt
split
to split up text. eg: split -l 500 ./pride-and-prejudice.txt pride-
cat
to print text from file. eg: cat pride-and-prejudice.txt
head
and tail
to look at the first and last lines. eg: head pride-and-prejudice.txt | pbcopy
grep
to filter or count words matching a pattern. eg: grep -i -rohe prejudice ./pride-and-prejudice.txt | wc -w
stats.py
stats2.py