Live data from Hacker News

Octopress - A blogging framework for hackers

octopress.org

11–20 of 58 posts

Re: Octopress - A blogging framework for hackers

#11
I'm not quite sure what this offers over jekyll apart from a few more tags and a slightly more opinionated deployment strategy.

I was half expecting a combination of the wordpress admin panel + jekyll backend (kind of like gollum except for blogs). Now that would have been imPRESSive.

Re: Octopress - A blogging framework for hackers

#12
post #7
post #2

So what makes it for hackers? The Github backend? Including a plugin for code by default? http://redraftable.com is a blog engine for hackers, other than the author won't release sources while the project is still immature.

Probably that it takes six pages of instructions to get it up and running.

Exactly why I prefer static pure HTML pages whenever it has a tiny chance of being good enough. That is for hackers in my book.

Re: Octopress - A blogging framework for hackers

#15
post #5
post #2

So what makes it for hackers? The Github backend? Including a plugin for code by default? http://redraftable.com is a blog engine for hackers, other than the author won't release sources while the project is still immature.

The idea is that you can write your blog posts in your favorite coding editor instead of some web form. Some people find that easier - I certainly feel more at home in my editor.

Hell, if you were a real hacker, you would ssh to your server with vim or emacs, write the post in markdown or somesuch, and have your the blosxom-inspired clone you wrote yourself serve up the HTML.

The real reason it's "for hackers" is for marketing. That and improving its chances for a front-page mention here.

Re: Octopress - A blogging framework for hackers

#16

Octopress is based on Jekyll, however, it is not exactly clear to me what it adds to Jekyll. Is it the extra plugins? Is it Rake-driven management? Reading through the documentation quickly, it seems to add a lot of complexity compared to plain Jekyll. A comparison with Jekyll sans Octopress would be appreciated!

Jeykll is a static generator which has simple support for blogging. If you get started with Jeykll, you still have to write all your own HTML, CSS, etc. Getting a Jekyll blog from just a generator to the point where it's something you'd be proud to post takes a good chunk of time and many developers don't want to deal with designing their blog.

Octopress is HTML, Sass, Javascript and a set of Rake tasks and plugins for Jekyll. It's a framework for the Jekyll blog generator. It has a 320 and up, responsive layout. Some plugins that make blogging easier.

Octopress isn't really any more complex than if someone set up a Jekyll blog for you and handed you the keys, but of course it's going to look complex when compared to a generator.

Re: Octopress - A blogging framework for hackers

#17
post #2

So what makes it for hackers? The Github backend? Including a plugin for code by default? http://redraftable.com is a blog engine for hackers, other than the author won't release sources while the project is still immature.

I didn't knew about redradtable, it looks interesting, thanks for the link.

[Disclaimer: self advertisement follow ;-)]

I think that my own blogware fugitive[1] is by far more hacker-friendly than octopress. It only depends on git and it integrates completely in the normal git workflow by using hooks to generate static html from files. Also, the article files just contain their title (the first line of the file) and then the article itself. All the meta data are those from git: creation and modification dates, authors...

[1] http://news.ycombinator.com/item?id=2799246

Re: Octopress - A blogging framework for hackers

#19

Octopress is based on Jekyll, however, it is not exactly clear to me what it adds to Jekyll. Is it the extra plugins? Is it Rake-driven management? Reading through the documentation quickly, it seems to add a lot of complexity compared to plain Jekyll. A comparison with Jekyll sans Octopress would be appreciated!

From whatI can tell from the git repository (https://github.com/imathis/octopress/), Octopress adds two major things to Jekyll: a bunch of automation (via the Rakefile) and a default theme.

Reading through the Rakefile, the automation actually looks pretty useful. For example, you can a new post with rake new_post["title here"] and Octopress will generate a properly named file for you with the correct yaml front matter.

I didn't look at what the default theme actually looks like, but looking through the code it appears to be useful in quickly getting a blog up. For example, it has a partial for integrating disqus comments out of the box.

Re: Octopress - A blogging framework for hackers

#20
post #2

So what makes it for hackers? The Github backend? Including a plugin for code by default? http://redraftable.com is a blog engine for hackers, other than the author won't release sources while the project is still immature.

Octopress is a framework for Jekyll, which — like most static site generators — was built for hackers. Octopress is a well designed starting point for Jekyll blogging.
Post reply on HN