Moving to Jekyll
I’ve been wanting to write more blog posts on the subject of software
development and code in general, and tumblr just
isn’t cutting it for me, mainly because it’s so ridiculously hard to format and
syntax-highlight code
in the post.
I’ve been intrigued by static site generators, and I finally settled on Jekyll, hosted on GitHub Pages. Jekyll allows me to have manual control over layout and style, and allows me to write posts in glorious Markdown instead of HTML-in-a-rich-editor.
Plus, code:
@interface Hello: NSObject
- (void)hello;
@end
@implementation Hello
- (void)hello {
NSLog(@"Hello, world!");
}
@end
Anyway, it’s also nice to get back into hacking HTML and CSS. I hope I learn a thing or two along the way.
You can still get to my old blog hosted on tumblr here. The old posts have been automatically imported into this blog (with mixed results).