├── README.md
├── _config.yml
├── _includes
└── navigation.html
├── _layouts
└── default.html
├── assets
└── css
│ └── style.scss
├── information.md
├── misc.md
├── process.md
└── scraping.md
/README.md:
--------------------------------------------------------------------------------
1 | # Favorite code snippets: A responsibly sourced, artisanal list from the Lonely Coder's Club
2 |
3 | The Lonely Coder's Club, a Slack community of newsroom programmers without big teams, would like to present our favorite, most-used code snippets. We've translated these snippets to most common coding languages and commented the heck out them so you can plug and play with ease!
4 |
5 | Contributions, edits and additions are encouraged.
6 |
7 | NICAR 2019 project presentation: [http://dhmontgomery.com/files/lccsnippets.html](http://dhmontgomery.com/files/lccsnippets.html)
8 |
9 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | theme: jekyll-theme-hacker
2 | title: LCC Code Snippets
3 | baseurl: /code-snippets
--------------------------------------------------------------------------------
/_includes/navigation.html:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/_layouts/default.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |