vote up 43 vote down star
24

Cal Henderson (of Flickr fame) gave a keynote "Why I hate Django" at DjangoCon 2008, which is well worth a watch for many reasons. In one bit he asked how many of the audience were working on blogging engines. So many people put their hands up in fact that of those that didn't he asked "Why aren't you?"

Anecdote aside, I see so many questions and answers here that relate to building blogging engines I just have to ask, since I don't get it: why are so many people writing what surely must've been written countless times already? If you are writing one such engine, why are you? Because I seriously don't get it.

flag

Thanks for posting a link to that video... quite entertaining! – Bob Somers Jan 23 at 8:16
28  
I can't speak for my dog. – Nosredna Jun 20 at 3:43
1  
Like your dog isn't a closet Ruby fan...dog? You aren't fooling anyone. :) – cletus Aug 5 at 15:43
1  
Any serious programmer who is worth anything writes his blog on his own blog engine. How else would he know what he's talking about. (warning: sarcasm) – Alex Aug 9 at 21:36
No kidding Bob - it's hilariously unpretentious. Haven't watched more than a few minutes, but recommend it. – Glytzhkof Sep 9 at 2:05

22 Answers

vote up 137 vote down check

Nobody told you? Writing a blog engine is the new Hello World.

link|flag
4  
oh no... please no. – ewakened Jan 23 at 5:14
5  
I've heard it's a form of procrastination in and of itself. – eed3si9n Jan 23 at 5:17
13  
actually this is true, most frameworks like codeigniter and cakephp actually have tutorials that show how to build a blogging engine using their framework just like for the programming language there are tutorials on how to do a hello world program – Click Upvote Jan 23 at 6:28
4  
@Click - Same with Ruby on Rails. The tutorial on the website is making a blog. – Ryan Thames Jan 29 at 19:14
23  
Of course, in Jon Skeet's new language the entire program for a blogging engine is "b". – Tom Hawtin - tackline Jul 20 at 0:23
show 4 more comments
vote up 1 vote down

I think for some people it's like a rite of passage. One of my professors told me once that you can't call yourself a programmer until you can preform certain things. Let me see if I can remember:

  • compiler
  • language (or at least parse C)
  • concurrent programming
  • functional programming
  • write a half-adder in assembly by hand
  • etc.

I think some people are obsessed with that kind of stuff. Maybe there are similar ones for web programmers?

link|flag
Writing your first set of database wrappers (i.e. roll-your-own ORM) is a rite of passage for Perl coders. Might be for PHP too, if there were enough proficient PHP coders. – chaos Jan 23 at 5:29
Never heard that. However, I have heard that you don't have a dissertation unless you have one formula and one proof. :) – BobbyShaftoe Jan 23 at 5:50
@chaos: Hehe, I've rolled my own database wrapper! – X-Istence May 16 at 2:44
But, but... I wrote my ORM before getting hooked on Perl! – Dave Sherohman Aug 5 at 15:05
vote up 9 vote down

Well go and thank Ruby on Rails. Ever since the blog screencast came out, nobody want to do the Petshop engine anymore . :-)

link|flag
Petshop engine AFAIK only popular in the Java land. – jpartogi Jul 22 at 8:54
vote up 1 vote down

Rolling Your Own Blog Engine.

link|flag
vote up 26 vote down

I don't know about blogging engines, but I've written other pieces of "worthless" software. Namely IM clients and compilers.

Why did I build those? Partly because I'm addicted to programing. Mainly though because when I find a technology that I use constantly, I quickly become obsessed with it and start to get seriously annoyed by its flaws.

Eventually, the same thought will occur: "You know, I could do this better..."

Normally, especially with compilers, I realize that no, one person alone probably can't build an overall better product. But there are one or two great features that I could build on top of an otherwise mediocre product. And programming is fun, so why not build a product you can use for your daily tasks.

I very much liken it to guys I grew up with who were really into cars. They constantly worked on and rebuilt portions of their cars. You could easily argue "why bother, everyone is building a car". But for them it was fun to drive around a piece of equipment they worked on. Programming a blog engine isn't much different.

Unless of course, you don't blog :)

link|flag
Well, you can leard a lot from IM clients and compilers. I'm not sure that blog engines, which are little more than YACA (Yet Another CRUD Application) are that instructive. There are probably better YACA instructional apps than blog engines as well. – BobbyShaftoe Jan 23 at 5:53
oh good to see like minded people ... – Manoj Doubts Jan 23 at 9:38
vote up 7 vote down

I did it because there wasn't anything out there that I liked and meet all my needs. I am picky I guess. Since I wrote my own blog/wiki, I can tailor it exactly to my needs - have all the features I want, and none of the features I don't.

link|flag
vote up 12 vote down

One thing I find frustrating about the developer profession is how seldom I can say "Look what I built!" to the common person and they can grasp the concept and say "Wow that's pretty cool!" I can write a multi-threaded socket server class which I can use in almost any project but no one, other than a fellow developer, and perhaps only network developers will find it all that interesting.

Blogs, chat clients, chat bots etc all seem to be the kind of programming projects developers write to show off to their non-technical friends.

link|flag
4  
true (asghhfh jeff if you see this remove the 10 char limit in comments adhfjghkhgfklejlkw) – Click Upvote Jan 23 at 6:29
I completely agree with that. We tend to develop some thing which can be shown to others to get applause. – Manoj Doubts Jan 23 at 9:40
hmm, not really, it's a way to get ones hands down and dirty with web development. you can't just into a big project, you have to start small and steadily climb the ladder. – hasen j Jan 24 at 6:29
2  
@Click Update: There's a better way to show your approval which doesn't take up the precious space of a whole comment - Vote UP! (I just had to say this.. ;) – Miky D Apr 23 at 16:32
i wrote a multi-threaded multi-socket server for a U of T programming assignment – ReachConnection Sep 16 at 16:34
vote up 5 vote down

For the same reason we all used to write our own mail client.

I wasn't sure of the reason then, either.

link|flag
interesting, there was such a time? I don't even have a client, I just use web based email ever since I can remember. – hasen j Jan 24 at 6:30
1  
I used to just telnet to port 110 to read my mail. Can't do it anymore because doing TLS manually is far too difficult. :) – Zan Lynx Aug 5 at 14:55
I tried that in vb.net, gave up after three days. – Cyclone Sep 20 at 18:49
vote up 5 vote down

If you saw the security flaws most blog engines have had, you'd write your own too.

link|flag
1  
Upvoted for truth, but then again, just because noone knows about them, doesn't mean they aren't there in your own work (but then again, maybe they aren't!) – Matthew Scharley Sep 6 at 3:53
vote up 64 vote down

Honestly? I think it's probably some combination of the following:

  • It's a relatively well-known, well-understood domain,
  • It still hasn't been perfected (and amazingly, it hasn't),
  • It can be as simple or as complex as the developer wants it to be,
  • It's not too complex, though; most devs can handle the basics,
  • It can incorporate just about every kind of content the Web can deliver,
  • It's a great way to continue developing one's skills,
  • It's much more satisfying to use something you built than someone else, and
  • Who knows -- it might even make you rich someday.

I'm definitely one of those developers, though. I admit it! And I'm a bad case, too, because I keep writing them over and over and over again, probably because I'd rather be coding than blogging. But the biggest reason, for me, is that the services out there really do suck (IMO), and it's hard to sit back and just accept that without imagining ways it could be done better. That's usually how it gets started.

I wrote a bit about this last year actually, after quitting TypePad (it just wouldn't do what I wanted -- i.e., 2, above) and rewriting the site I'm actually, right now, in the process of rewriting yet again, for probably the fifth or sixth time over the past seven or eight years, doubtlessly for the last time:

I could never shake the nagging irritation I felt when I couldn't get TypePad to do something I wanted, however trivial. Why, again, couldn't I search my own freaking blog? To find an old entry, I had use either the next/previous links (lame), category links (assuming I'd bothered to categorize the entry I was looking for) or even worse, the proverbial "archive" links, organized descendingly as they are by date, hoping I might get lucky and choose the right month-year combo during which I'd happened to submit the entry in question. And why couldn't I just create a new, non-blog-oriented page containing some other kind of managed content, like my reading list, or a collection of movie reviews? Sure, I could succumb to the rigid structure of the TypePad system and simply "tag" all movie reviews as "movie-review" and dump them into the blog alongside everything else -- but why should I have to do that? I was an engineer, for God's sake -- I'd done this before. A blog was just CRUD -- a web app in its simplest form. Why hadn't anyone gotten one right, after nearly a decade of requirements gathering?

Screw it, I thought. I'm going to do this myself. Again.

Everyone's reasons are different, but most folks probably do it because they can. Spolsky said something about this a while back, in a podcast I think, or an interview -- something about how the first thing every Web developer wants to do is build an image-upload service.* Why? It's what they know. And it's something they'd use themselves, if it were done the way they believe it should be done.

To be fair, though, a good commercial blogging service? That's a hard problem. If it weren't, it really would've been done by now, and it hasn't. Not perfectly. Anyone can build a CRUD app for himself, select *, sort by date, done deal. Building a good, full-featured personal-expression engine, though, intended to serve hundreds of thousands or millions of users? Done right, that's a much more complicated undertaking than one might think.

* See? Told ya.

link|flag
vote up 3 vote down

I haven't started mine yet, but I intend to soon.

Why? I've done a few static HTML pages, but nothing that can be called web programming. I need a harmless project to get my feet wet. I would have done it sooner, but it's only recently that I realized I have enough blog topics to make a good start.

Edit: I've given this a little more thought since the question first appeared. What is the reason for starting a blog? It's a form of self expression. What's the most natural form of self expression for a programmer? Why, a program, of course! The blog and the blogging software go together like peanut butter and jelly.

link|flag
vote up 3 vote down

I started writing one once because I wanted my blog to be ALL mine, all the way to the core. I'm willing to bet that there are a lot of others who feel the same way. Personally, after a while I wised up and realized that I would be better off putting my efforts toward my other projects.

I'm also willing to bet that so many people are working on blogging systems because it's so popular. So perhaps a lot of people are setting out to make the next WordPress.

link|flag
To the core...? Ya mean, including frameworks, web server, even OS...? ;-) – AviD Jun 26 at 15:14
@AviD: LFS + LightHTTPd + django + own blog. Damn AviD, I've got little time as it is! Why are you giving me more ideas for projects!? Note to self: make smallest enviroment needed to run django apps. – voyager Aug 5 at 15:55
To be honest, I made my own HTTP server. Even touched on reimplementing PHP a little before leaving well enough alone. Oh well. – Matthew Scharley Sep 6 at 3:54
vote up 7 vote down

I rolled my own blogging engine once, for a few reasons:

  • I wanted full control over the website design
  • I didn't want to use a database (just flat files)
  • I needed something very simple, easy to hack, and easy to back up
  • I was the only one making posts, and I prefer to use HTML over WYSIWYG
  • My server was very low-end, so the software had to have a low memory footprint
  • This kind of blogging engine is so easy to code, it was actually faster to implement it myself than get somebody else working to my specifications.
link|flag
vote up 3 vote down

I am building mine to learn Django, with all these frameworks and whatnot, and considering I've used a lot of scripting languages for web development, it really is the new Hello World.

I never intend on releasing it.

link|flag
vote up 6 vote down

I wrote a blog engine last fall. It was a fun exercise, I learned a lot in the process.

I then immediately stopped using it and switched back to Wordpress.

link|flag
vote up 7 vote down

Because it's about the easiest thing to create that has practical value, and can form the basis for one's design approach, conventions, structures, and etceteras. It becomes part of one's toolkit. Same thing carpenters do: build themselves a toolchest.

link|flag
I agree. It's sort of trying out the capability of the framework which will benefit us too. So blog engine is the way to go. – jpartogi Jul 22 at 8:55
vote up 0 vote down

Q .Why does every man and his dog want to code a blogging engine?

Well firstly it's not every man (where every man = all human males on Earth), because in order to code a blogging engine they would have to be able to code first, hence we can reduce the set down to:

Every Human Programmer is Male.

Secondly not all Male Humans owns a pet dog, thus we can safely assume:

[All Male Humans] > [Male Humans who program] > [Male Humans who program who own a pet dog]

But it has never been demonstracted that a dog can program (Dolphins have rudementary logic solving abilites but dogs generally have a far lower IQ then Dolphins.)

Thus the set is further reduced (where dog that can code = 0) to:

All Male Programmers.

But we can narrow this down even further:

Not all Male programmers are alive, so only living ones should be included. But not all living programmers will have the ability to code a blogging engine so it becomes:

All Living Male Programmers That have the capability to Code a Blogging engine Excluding their pet dogs.

Short Answer:

Because we are programmers, it's what we do.

Darknight

link|flag
vote up 1 vote down

... eating your own dog food, (no pun intended ;-)

If you think of a blog as a mini content management system, it makes sense. It's almost a boilerplate code that can be build out as needed.

link|flag
vote up 0 vote down

About a year ago, I was seriously considering writing my own blog engine. Why?

I do freelance software development and so I've gotten a bit into the general freelancing world. Pretty much all the blogs on freelancing focus on either web design or writing. After giving it a bit of thought as to why this might be, it became apparent that, for writers and web designers, the blog itself is a demonstration of their skills - either the writing in the posts or the design of the site.

Once I reached that point, it was obvious to me that, if I wanted to use a blog as a way to draw in business, it would be most effective if I wrote the blog engine myself, as it would then serve as a similar demonstration of my skills.

I never actually did much towards writing it, though, partly because I started messing around with WordPress and Drupal (which taught me that I generally don't have enough to say to keep a blog going) and partly because a client came along and set me off down another well-trodden path: Writing a site which is, at its heart, a Twitter front-end.

link|flag
vote up 0 vote down

Short answer: users are creatures of habit, and don't like new systems if they feel the old one worked fine. When a user base becomes accustomed to a particular customized system, its very hard to transition to an "off the shelf" system. Every difference will feel like a bug.

My group of friends has a community blog that a couple of us started. It began life years ago as a couple Perl scripts, then was re-written with PHP. I wanted to rewrite it using spring MVC, but I found that the Pebble blogging system looked pretty solid. So, I asked myself the same question you did: why should I write a new blogging system when there are plenty of good ones already. I optimistically wrote a data migration tool to move all the old blog data into Pebble format, and deployed the new system. Everyone hated it and stopped posting.

I don't think Pebble is a bad blogging engine - to the contrary. I think any system that didn't work exactly like the old one would have received the same reception. I currently have plans to write a new blog engine that will work exactly like the old one. That way I can add new features to a solid code base, and avoid pissing off my users.

For frameworks, I'm currently considering Spring MVC, which I have good experience with, and Scala+Lift, which looks pretty cool. After all, I should get something out of this too, right?

link|flag
vote up 2 vote down

Dogs do not write software, they bark and eat bones.

Why did I write my own blogging engine:

  • It's a great way to learn a framework, the domain is well defined. The problem is well defined.
  • I got tired of the way blogging engines messed up my posts and embedded ugly formatting (my blog entries are stored in textile in my database now)
  • I feel very comfortable rolling out changes and fixes, I know where everything is.
  • I know it's fast, I know where all the bottlenecks are.
  • I needed to migrate my blog anyway because I didn't want to run a Windows virtual host anymore.
  • I re-use portions in other projects.

Was it worth it? Indeed! Is it the prettiest blog around? Certainly not.

link|flag
vote up 1 vote down

Why are there
1) so many programming languages?
2) so many web development frameworks for a single language.
3) so many books on a single topic
4) so many newspapers in a single locality
5) so many telecom service providers.
and so on....

May because of one or more of one's 1) need not being satisfied with the existing services.
2) urge for control
3) urge for education
4) aspiration for recognition
5) economic ambitions

Whatever the reason public gets to benefit. They get a new product. If they like it they can accept it or else ignore it.

I am also trying to code one in Perl. Not because we already doesn't have any. We got blosxom, MT, bricolage etc. But my aims are control, education and the a little bit of selfish need of recognition.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.