I posted recently about the sudden move over to Octopress. The slightly frustrating thing about using Octopress is the ruby angle, at least in the sense that it took a while to get a workable install going. This is probably mostly my fault, somewhat Apple’s fault, and maybe a little bit about ruby. Some of it was also Jekyl though, and the workflow in Jekly / Octo is also a little awkward.
The most irritating bit is this:
1
| |
I’m whining, sure, but this is just more punctuation than I really need. So because I’m a hacker first, I decided to fix this. What did I do? I didn’t go off to learn rake, fork Octopress and make a pull request - it’s even more stupid than that. I learned ( bits of ) coffeescript so I could hack on a Cakefile to wrap the Rakefile. I know, idiotic, but fun nonetheless:
1 2 3 4 5 6 7 8 9 10 11 12 | |
The key bits are:
- the wrapper task removes the punctuation
- as an added bonus, the callback opens the new markdown file in my editor!
This was also the first non-demo / hello-world-ish code I’ve written in Coffeescript, and it’s not bad! There are things that definitely feel a bit awkward ( chaining methods, how callbacks work, etc ) but I think that is mostly just JS muscle memory I need to get over.
Another inspiration for trying on Coffeescript for size was this recent post by Rob Conery called ’Try it quiet’, and the accompanying video on Vimeo:
All of the Mocha tests are written in Coffeescript, and the cleaner syntax really clarifies the tests and expectations. It’s worth watching and even hacking along to if you’re unfamiliar with the bits of node he’s showing off. I was particularly charmed with how he runs mocha -w in a terminal and, as he implements things, more and more tests pass. Of course, you can’t beat Daft Punk live for a soundtrack either! :D