Why does every man and his dog want to code a blogging engine? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:35:02Z http://stackoverflow.com/feeds/question/471940 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine 43 Why does every man and his dog want to code a blogging engine? cletus 2009-01-23T05:09:54Z 2009-11-07T21:30:58Z <p>Cal Henderson (of <a href="http://en.wikipedia.org/wiki/Flickr" rel="nofollow">Flickr</a> fame) gave a keynote <a href="http://au.youtube.com/watch?v=i6Fr65PFqfk" rel="nofollow">"Why I hate Django"</a> 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?"</p> <p>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.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/471944#471944 143 Answer by Jeff Atwood for Why does every man and his dog want to code a blogging engine? Jeff Atwood 2009-01-23T05:11:56Z 2009-01-23T05:11:56Z <p>Nobody told you? Writing a blog engine is the new Hello World.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/471950#471950 1 Answer by ewakened for Why does every man and his dog want to code a blogging engine? ewakened 2009-01-23T05:13:38Z 2009-10-21T18:24:39Z <p>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:</p> <ul> <li>compiler</li> <li>language (or at least parse C)</li> <li>concurrent programming</li> <li>functional programming</li> <li>write a half-adder in assembly by hand</li> <li>etc.</li> </ul> <p>I think some people are obsessed with that kind of stuff. Maybe there are similar ones for web programmers?</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/471953#471953 9 Answer by Seymour Cakes for Why does every man and his dog want to code a blogging engine? Seymour Cakes 2009-01-23T05:15:21Z 2009-10-21T18:26:35Z <p>Well go and thank Ruby on Rails. Ever since the blog screencast came out, nobody want to do the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=E2930625-3C7A-49DC-8655-A8205813D6DB&amp;displaylang=en#QuickInfoContainer" rel="nofollow">Petshop engine</a> anymore . :-)</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/471954#471954 1 Answer by eed3si9n for Why does every man and his dog want to code a blogging engine? eed3si9n 2009-01-23T05:15:25Z 2009-01-23T05:15:25Z <p><a href="http://haacked.com/archive/2006/10/06/Rolling_Your_Own_Blog_Engine.aspx" rel="nofollow">Rolling Your Own Blog Engine</a>.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/471956#471956 26 Answer by JaredPar for Why does every man and his dog want to code a blogging engine? JaredPar 2009-01-23T05:15:50Z 2009-09-08T19:11:16Z <p>I don't know about blogging engines, but I've written other pieces of "worthless" software. Namely IM clients and compilers. </p> <p>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. </p> <p>Eventually, the same thought will occur: "You know, I could do this better..." </p> <p>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. </p> <p>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. </p> <p>Unless of course, you don't blog :)</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/471959#471959 7 Answer by toby for Why does every man and his dog want to code a blogging engine? toby 2009-01-23T05:16:13Z 2009-01-23T05:16:13Z <p>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.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/471983#471983 12 Answer by Spencer Ruport for Why does every man and his dog want to code a blogging engine? Spencer Ruport 2009-01-23T05:24:39Z 2009-01-23T05:24:39Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/471989#471989 5 Answer by Mark Harrison for Why does every man and his dog want to code a blogging engine? Mark Harrison 2009-01-23T05:29:10Z 2009-01-23T05:29:10Z <p>For the same reason we all used to write our own mail client.</p> <p>I wasn't sure of the reason then, either.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/472062#472062 5 Answer by circuit breaker for Why does every man and his dog want to code a blogging engine? circuit breaker 2009-01-23T06:23:26Z 2009-01-23T06:23:26Z <p>If you saw the security flaws most blog engines have had, you'd write your own too.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/472130#472130 63 Answer by Christian Nunciato for Why does every man and his dog want to code a blogging engine? Christian Nunciato 2009-01-23T06:58:05Z 2009-01-24T04:51:58Z <p>Honestly? I think it's probably some combination of the following:</p> <ul> <li>It's a relatively well-known, well-understood domain,</li> <li>It still hasn't been perfected (and amazingly, it hasn't),</li> <li>It can be as simple or as complex as the developer wants it to be,</li> <li>It's not too complex, though; most devs can handle the basics,</li> <li>It can incorporate just about every kind of content the Web can deliver,</li> <li>It's a great way to continue developing one's skills,</li> <li>It's much more satisfying to use something <em>you</em> built than someone else, and</li> <li>Who knows -- it might even make you rich someday.</li> </ul> <p>I'm definitely one of those developers, though. I admit it! And I'm a bad case, too, because I keep writing them <em>over</em> and <em>over</em> and <em>over</em> 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.</p> <p>I wrote <a href="http://chris.enunciato.org/entry.aspx?id=459" rel="nofollow">a bit about this</a> 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:</p> <blockquote> <p>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? </p> <p>Screw it, I thought. I'm going to do this myself. Again.</p> </blockquote> <p>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.</p> <p>To be fair, though, a <em>good</em> 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 <em>personal-expression</em> 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.</p> <p>* <a href="http://stackoverflow.com/questions/475496/what-would-you-include-in-an-image-management-sharing-system">See? Told ya</a>.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/475580#475580 3 Answer by Mark Ransom for Why does every man and his dog want to code a blogging engine? Mark Ransom 2009-01-24T05:40:07Z 2009-08-05T15:07:25Z <p>I haven't started mine yet, but I intend to soon.</p> <p>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.</p> <p><strong>Edit:</strong> 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.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/475628#475628 3 Answer by Matt Flowers for Why does every man and his dog want to code a blogging engine? Matt Flowers 2009-01-24T06:31:19Z 2009-01-24T06:31:19Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/475647#475647 7 Answer by Colin for Why does every man and his dog want to code a blogging engine? Colin 2009-01-24T06:43:08Z 2009-10-21T18:26:26Z <p>I rolled my own blogging engine once, for a few reasons:</p> <ul> <li>I wanted full control over the website design</li> <li>I didn't want to use a database (just flat files)</li> <li>I needed something very simple, easy to hack, and easy to back up</li> <li>I was the only one making posts, and I prefer to use HTML over <a href="http://en.wikipedia.org/wiki/WYSIWYG" rel="nofollow">WYSIWYG</a></li> <li>My server was very low-end, so the software had to have a low memory footprint</li> <li>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.</li> </ul> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/496815#496815 3 Answer by chuu for Why does every man and his dog want to code a blogging engine? chuu 2009-01-30T19:17:43Z 2009-10-21T18:25:00Z <p>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.</p> <p>I never intend on releasing it.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/496835#496835 6 Answer by Mark Biek for Why does every man and his dog want to code a blogging engine? Mark Biek 2009-01-30T19:22:23Z 2009-01-30T19:22:23Z <p>I wrote a blog engine last fall. It was a fun exercise, I learned a lot in the process.</p> <p>I then immediately stopped using it and switched back to Wordpress.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/1020867#1020867 7 Answer by david priest for Why does every man and his dog want to code a blogging engine? david priest 2009-06-20T03:24:18Z 2009-06-20T03:24:18Z <p>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.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/1233696#1233696 0 Answer by Darknight for Why does every man and his dog want to code a blogging engine? Darknight 2009-08-05T14:40:02Z 2009-10-21T18:25:46Z <p><em>Q .Why does every man and his dog want to code a blogging engine?</em></p> <p>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: </p> <p><strong>Every Human Programmer is Male.</strong></p> <p>Secondly not all Male Humans owns a pet dog, thus we can safely assume:</p> <pre><code>[All Male Humans] &gt; [Male Humans who program] &gt; [Male Humans who program who own a pet dog] </code></pre> <p>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.)</p> <p>Thus the set is further reduced (where dog that can code = 0) to:</p> <p>All Male Programmers.</p> <p>But we can narrow this down even further:</p> <p>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:</p> <p><strong>All Living Male Programmers That have the capability to Code a Blogging engine Excluding their pet dogs.</strong></p> <h2>Short Answer:</h2> <p>Because we are programmers, it's what we do.</p> <p>Darknight</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/1233788#1233788 1 Answer by vector for Why does every man and his dog want to code a blogging engine? vector 2009-08-05T14:52:52Z 2009-08-05T14:52:52Z <p>... eating your own dog food, (no pun intended ;-)</p> <p>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.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/1233925#1233925 0 Answer by Dave Sherohman for Why does every man and his dog want to code a blogging engine? Dave Sherohman 2009-08-05T15:14:26Z 2009-08-05T15:14:26Z <p>About a year ago, I was seriously considering writing my own blog engine. Why?</p> <p>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.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/1234066#1234066 0 Answer by nont for Why does every man and his dog want to code a blogging engine? nont 2009-08-05T15:42:19Z 2009-08-05T15:42:19Z <p>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.</p> <p>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. </p> <p>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.</p> <p>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?</p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/1355938#1355938 2 Answer by Sam Saffron for Why does every man and his dog want to code a blogging engine? Sam Saffron 2009-08-31T05:32:55Z 2009-10-21T18:25:38Z <p><strong>Dogs do not write software, they bark and eat bones.</strong> </p> <p>Why did I write my own blogging engine: </p> <ul> <li>It's a <strong>great way to learn a framework</strong>, the domain is well defined. The problem is well defined. </li> <li>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) </li> <li>I feel very comfortable rolling out changes and fixes, I know where everything is. </li> <li>I know it's fast, I know where all the bottlenecks are.</li> <li>I needed to migrate my blog anyway because I didn't want to run a Windows virtual host anymore. </li> <li>I re-use portions in other projects. </li> </ul> <p>Was it worth it? Indeed! Is it the prettiest blog around? Certainly not. </p> http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/1694494#1694494 1 Answer by Christy John for Why does every man and his dog want to code a blogging engine? Christy John 2009-11-07T21:30:58Z 2009-11-07T21:30:58Z <p>Why are there<br /> 1) so many programming languages?<br /> 2) so many web development frameworks for a single language.<br /> 3) so many books on a single topic<br /> 4) so many newspapers in a single locality<br /> 5) so many telecom service providers.<br /> and so on....</p> <p>May because of one or more of one's 1) need not being satisfied with the existing services.<br /> 2) urge for control<br /> 3) urge for education<br /> 4) aspiration for recognition<br /> 5) economic ambitions<br /></p> <p>Whatever the reason public gets to benefit. They get a new product. If they like it they can accept it or else ignore it.</p> <p>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.</p>