This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form method="post" action=""> | |
<fieldset> | |
<legend>Applications</legend> | |
{% for field in form %} | |
<div class="clearfix"> | |
{{ field.label }} | |
<div class="input"> | |
{{ field }} | |
{% if field.errors %} | |
<ul class="errors"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p> | |
Derek Thurn has written probably the best comparison of Vim and Emacs ever written. In particular, he's confirmed that I'm not the only person in the known universe who uses vi for quick sysadmin editing tasks and emacs for larger scale coding efforts. And he's managed to do this in <a href="http://www.thurn.ca/why_i_switched_from_vim_to_emacs">the most fence-straddling way possible</a>.</p> | |
<p> | |
I'd also add that Gabriel Lanaro's <a href="http://gabrielelanaro.github.com/emacs-for-python/">emacs for python starter kit</a> tipped the scales in favor of emacs for me having come from vim. | |
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A <a href="http://research.microsoft.com/en-us/um/people/simonpj/papers/history-of-haskell/history.pdf">history of Haskell [PDF]</a> from Microsoft Research. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
An interview with <a href="http://www.infoq.com/interviews/paul-hudak-haskell-Qcon-SF-08">Yale's Paul Hudak</a> on Haskell. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>Why this has to be so difficult I'm not sure, but <a href="http://idgettr.com/">this tool</a> to go from your userid to that hideous thing that the flickr API's require works.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p> | |
If you run into the dreaded "heroku no app specified" problem, <a href="http://www.digitalsanctum.com/2010/05/05/heroku-no-app-specified/">here's the solution</a>. | |
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p><iframe width="940" height="705" src="http://www.youtube.com/embed/M5THXa_H_N8" frameborder="0" allowfullscreen></iframe></p> | |
<p><iframe width="940" height="705" src="http://www.youtube.com/embed/uSAzbSQqals" frameborder="0" allowfullscreen></iframe></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p><iframe width="940" height="705" src="http://www.youtube.com/embed/qG5AZIRMvRo" frameborder="0" allowfullscreen></iframe></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>If I ever wind up with a giant pile of money, <a href="http://watsonarchitect.com/">this guy is going to be my architect</a>.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>I'm not sure if anyone's been crazy enough to try this yet, but I've had this vision for a while. I had three main goals: get the data out of a relational database, put it in the cloud, and make it look pretty.</p> | |
<p><b>I satisfied the first goal using github's gist API as a data store for all of my blog posts.</b> I use the description as the title, the filename to anchor the URL semantically, the created_at date for the date/time of the posting, and the body for the post itself. I'm only supporting single filename gists right now, and I use the starred/unstarred functionality to mean published and draft, respectively. The beauty of this design is that it allows me to avoid having to implement all of the CMS functions directly, i.e authentication, creating, updating, deleting posts, etc. In exchange, I use github's gist interface for creation, updating, deleting, promoting from draft to published, and in turn, I get versioning and forking of posts for free, which is inline with both my share and share-al |