A variation of the Learn to Bash workshop materials, adapted for remote teaching and zsh vs bash.
Workshop first held at the DataUmbrella meetup in July 2020.
permits.csv is a modified sample CSV file based on the Film Permits data provided by NYC OpenData
The HTML slides can be downloaded here
In case you want to compile the markdown yourself/play around with Marp:
- Install npm: https://www.npmjs.com/get-npm
- Allow global install of npm modules:
sudo mkdir /usr/local/lib/node_modules; chown -R
whoami/usr/local/lib/node_modules
- Install marp CLI:
npm install -g @marp-team/marp-cli
- This seems to be the most helpful documentation: https://marpit.marp.app/
- Compile markdowns:
marp *.md --theme theme.css
then open the HTML output in a browser window. Each change requires re-compiling and refreshing the browser. Thetheme
flag is needed to compile with the custom CSS. - You can also run these in "watch" mode which will keep a compile server running and refresh the browser window for both markdown and CSS changes (pretty cool):
marp *.md --theme theme.css --watch