├── .gitignore ├── CNAME ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _drafts ├── add-to-models.md ├── productivity.md └── why-rethinkdb-failed.md ├── _layouts └── home.html ├── _posts ├── 2016-11-22-talking-to-users.md ├── 2016-11-25-essay-reading-list.md ├── 2016-11-27-learning-r-cheatsheet.md ├── 2016-11-29-tmux-cheatsheet.md ├── 2016-12-22-models.md ├── 2016-12-22-writing-well.md └── 2017-01-18-why-rethinkdb-failed.md ├── assets └── main.scss ├── index.md └── keybase.txt /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | *~ -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.defstartup.org -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_config.yml -------------------------------------------------------------------------------- /_drafts/add-to-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_drafts/add-to-models.md -------------------------------------------------------------------------------- /_drafts/productivity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_drafts/productivity.md -------------------------------------------------------------------------------- /_drafts/why-rethinkdb-failed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_drafts/why-rethinkdb-failed.md -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_layouts/home.html -------------------------------------------------------------------------------- /_posts/2016-11-22-talking-to-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_posts/2016-11-22-talking-to-users.md -------------------------------------------------------------------------------- /_posts/2016-11-25-essay-reading-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_posts/2016-11-25-essay-reading-list.md -------------------------------------------------------------------------------- /_posts/2016-11-27-learning-r-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_posts/2016-11-27-learning-r-cheatsheet.md -------------------------------------------------------------------------------- /_posts/2016-11-29-tmux-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_posts/2016-11-29-tmux-cheatsheet.md -------------------------------------------------------------------------------- /_posts/2016-12-22-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_posts/2016-12-22-models.md -------------------------------------------------------------------------------- /_posts/2016-12-22-writing-well.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_posts/2016-12-22-writing-well.md -------------------------------------------------------------------------------- /_posts/2017-01-18-why-rethinkdb-failed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/_posts/2017-01-18-why-rethinkdb-failed.md -------------------------------------------------------------------------------- /assets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/assets/main.scss -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/index.md -------------------------------------------------------------------------------- /keybase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeemug/defstartup/HEAD/keybase.txt --------------------------------------------------------------------------------