Live data from Hacker News

Ask HN: What are good blogging platforms for programmers?

news.ycombinator.com

81–87 of 87 posts

Re: Ask HN: What are good blogging platforms for programmers?

#81

Honestly, I would just write my own HTML/CSS and buy hosting on a server somewhere. This is cheap, and gives you a great deal of control, while also honing your web development skills. (And doing it yourself feels good!)

I agree. The amount of flexibity is huge, especially if you deliberately want a different look on various pages.

And yeah, it feels good.

Re: Ask HN: What are good blogging platforms for programmers?

#82
If you're saying programmer I'm assuming there is already this level of experience, but I went ahead and made my own blog set up. This was mostly really to learn Rails. Even though I am mostly doing strictly Ruby stuff at the moment, I hear of or see features I want to add to the blog so little by little I pick up more rails techniques.

For just having something already set to focus on your writing, I really like what I've seen from Jekyll, I don't have a need yet but I'm definitely keeping it in mind for future projects.

Re: Ask HN: What are good blogging platforms for programmers?

#83
post #74

Earlier quoted context omitted.

TIL what TIL means. You are too lazy to type "Today I Learned" and your answer to someone asking for a blog platform is to build it themselves?

"TIL" has more memetic meaning behind it than the full phrase spelled out.

Well, my point is that I'm more saddened by the overuse of acronyms in language than by a developer who just want to find a nice blog platform without having to take a ton of extra effort to create and debug their own.

Re: Ask HN: What are good blogging platforms for programmers?

#84

Is everyone shying away from wordpress for security reasons? I like the simplicity of wordpress, but in the back of my mind I am concerned that one day I'll visit my site and it will have viagra ads all over it. It would be less of a concern if I blogged daily, but I go to it rarely enough that it could be hosting malware (and making me look like an idiot) for quite a while before I realized it.

Wordpress has some downsides: * The hosted version doesn't let you put ads in. * If you host yourself it is a lot of maintenance to keep wordpress patched, spam cleared, etc. * It is dynamic, so each page needs to be built based on a query to the mysql database. For a handful of users this is no big deal. If you hit the HN front page your site will be overloaded. On the other hand, Wordpress is good if you blog on th…

To counter your downsides:

* Wordpress now auto-updates, so you don't have to worry about patches.

* WPSuperCache is a Wordpress plugin that serves up static content. Only logged in users see a dynamic page.

Re: Ask HN: What are good blogging platforms for programmers?

#85
post #80

HTML is built for making documents and a blog seems like a perfect case when you should just open up a text editor and write some HTML. That's how I started my own blog recently. Then I switched to ghost.io. It's a nice platform, but I might go back to hand writing it. To do code snippets, try the or tags. I suppose if you want a full commenting system, then a platform makes sense. However, on low-traffic blogs I thi…

Too much work if you want anything modern.

As in don't you want some tags to organize the posts? Don't you want an index of your tags, and an index of your posts? You'd need to edit by hand 10 files just to add a new post if you wanted those necessary features and yeah they are necessary if you're not just writing a diary for yourself. If that's the case you don't need a blog at all just a folder with text files on your machine.

But I agree with you in that I like to just open up a text editor and start writing, so I use a script called "Bash Blog" which lets me do just that.

The website it produces are static html files, and it uses a shell script to reassemble itself after every new post I created so I don't need to end up editing 10 files, but I still get all the useful features I mentioned above.

http://cfenollosa.github.io/bashblog/

Re: Ask HN: What are good blogging platforms for programmers?

#86
I second what programminggeek says. What is important is you write.

That said, I use the static site generator mynt. Host the generated website on digitalocean droplet behind an nginx server.

If you want to go the static site route and want to try all the options that you like, (and lets be honest, that is a big part of the fun setting up a blog) here are some aggregated lists

http://staticsitegenerators.net/

https://www.staticgen.com/

https://wiki.python.org/moin/StaticSiteGenerator

Post reply on HN