├── .gitignore ├── CNAME ├── README.textile ├── _config.yml ├── _layouts ├── default.html └── post.html ├── _posts ├── 2008-10-18-how-i-turned-down-300k.textile ├── 2008-10-27-looking-back-on-selling-gravatar-to-automattic.textile ├── 2008-11-03-how-to-meet-your-next-cofounder.textile ├── 2008-11-17-blogging-like-a-hacker.textile ├── 2009-05-19-the-git-parable.textile ├── 2010-05-11-tomdoc-reasonable-ruby-documentation.textile ├── 2010-08-23-readme-driven-development.md ├── 2010-10-18-optimize-for-happiness.md ├── 2011-03-29-ten-lessons-from-githubs-first-year.textile ├── 2011-05-03-rejected-bio-from-the-setup.md └── 2011-11-22-open-source-everything.md ├── atom.xml ├── css ├── screen.css └── syntax.css ├── images └── rss.png ├── index.html └── random └── canvas_rotated_textfill.html /.gitignore: -------------------------------------------------------------------------------- 1 | _drafts/ 2 | _site/ 3 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | tom.preston-werner.com 2 | -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/README.textile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | markdown: rdiscount 2 | pygments: true 3 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/2008-10-18-how-i-turned-down-300k.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2008-10-18-how-i-turned-down-300k.textile -------------------------------------------------------------------------------- /_posts/2008-10-27-looking-back-on-selling-gravatar-to-automattic.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2008-10-27-looking-back-on-selling-gravatar-to-automattic.textile -------------------------------------------------------------------------------- /_posts/2008-11-03-how-to-meet-your-next-cofounder.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2008-11-03-how-to-meet-your-next-cofounder.textile -------------------------------------------------------------------------------- /_posts/2008-11-17-blogging-like-a-hacker.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2008-11-17-blogging-like-a-hacker.textile -------------------------------------------------------------------------------- /_posts/2009-05-19-the-git-parable.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2009-05-19-the-git-parable.textile -------------------------------------------------------------------------------- /_posts/2010-05-11-tomdoc-reasonable-ruby-documentation.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2010-05-11-tomdoc-reasonable-ruby-documentation.textile -------------------------------------------------------------------------------- /_posts/2010-08-23-readme-driven-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2010-08-23-readme-driven-development.md -------------------------------------------------------------------------------- /_posts/2010-10-18-optimize-for-happiness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2010-10-18-optimize-for-happiness.md -------------------------------------------------------------------------------- /_posts/2011-03-29-ten-lessons-from-githubs-first-year.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2011-03-29-ten-lessons-from-githubs-first-year.textile -------------------------------------------------------------------------------- /_posts/2011-05-03-rejected-bio-from-the-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2011-05-03-rejected-bio-from-the-setup.md -------------------------------------------------------------------------------- /_posts/2011-11-22-open-source-everything.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/_posts/2011-11-22-open-source-everything.md -------------------------------------------------------------------------------- /atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/atom.xml -------------------------------------------------------------------------------- /css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/css/screen.css -------------------------------------------------------------------------------- /css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/css/syntax.css -------------------------------------------------------------------------------- /images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/images/rss.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/index.html -------------------------------------------------------------------------------- /random/canvas_rotated_textfill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/tpw/HEAD/random/canvas_rotated_textfill.html --------------------------------------------------------------------------------