<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>muhuk.com &#187; blogs</title>
	<atom:link href="http://www.muhuk.com/tag/blogs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.muhuk.com</link>
	<description>know thyself</description>
	<lastBuildDate>Wed, 07 Jul 2010 10:26:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>My Idea Of The Django Blogging App™</title>
		<link>http://www.muhuk.com/2010/04/my-idea-of-the-django-blogging-app%e2%84%a2/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-idea-of-the-django-blogging-app%25e2%2584%25a2</link>
		<comments>http://www.muhuk.com/2010/04/my-idea-of-the-django-blogging-app%e2%84%a2/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 09:36:48 +0000</pubDate>
		<dc:creator>Atamert Ölçgen</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[reusable]]></category>

		<guid isPermaLink="false">http://www.muhuk.com/?p=370</guid>
		<description><![CDATA[I am not going to talk about yet another Django-based blogging engine in this post. There are a number of blogging apps which try to be like turn-key solutions, like a WordPress blog. I have skimmed through the code of many such apps, but haven&#8217;t used one yet. Some of them are really high quality [...]]]></description>
			<content:encoded><![CDATA[<p>I am not going to talk about yet another Django-based blogging engine in this post. There are a number of blogging apps which try to be like turn-key solutions, like a WordPress blog. I have skimmed through the code of many such apps, but haven&#8217;t used one yet. Some of them are really high quality apps. What I have in mind is somewhat different though. I would like an app that would allow me to build a blog that satisfies my projects specific requirements.</p>

<p>Let me reiterate the last sentence. Having a Django-based blog just because Django is fashinable is a little dumb in my opinion. If Django-based X blogging engine suits you better than anything else, use it. Why not? But my personal choice of blogging engine is WordPress<sup>1</sup>. The value of a Django blogging app, for me, is in <em>adding</em> a blog to a Django project. And different projects might have different requirements. So my idea of a Django blogging app is one that is highly configurable and highly extendable.</p>

<p>On the other hand I don&#8217;t need the convenience of clicking a checkbox on a polished UI. I can write a function. Or I don&#8217;t necessarily need it to, say, provide a navigation menu. There are apps that do that. Even if there wasn&#8217;t it shouldn&#8217;t be the blog app&#8217;s job. So I am not looking for an instant-blog. I have a Django app in my mind, nothing more.</p>

<h3>What Should Be Left Out</h3>

<p>Basically any feature that can be provided by another <a href="http://www.muhuk.com/tag/reusable/">reusable app</a> should be left out. Why should we re-implement something that is already done&#8230; and reviewed by others&#8230; and tested. Of course this doesn&#8217;t necessarily mean providing no convenience functions.</p>

<ul>
<li>No admin. Because we already have <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/">one</a>.</li>
<li>No theming. For the love of Flying Spaghetti Monster, you don&#8217;t need any <em>theming</em> other than what <code>django.template</code> offers. Pre-built themes are for turn-key solutions.</li>
<li>No comments or contact forms. (See <a href="http://docs.djangoproject.com/en/dev/ref/contrib/comments/"><code>django.contrib.comments</code></a> and <a href="http://bitbucket.org/ubernostrum/django-contact-form/"><code>django-contact-form</code></a>)</li>
<li>No <em>official</em> markup format (or formats). This can be handled in the templates without difficulty. But, maybe, pluggable content filters is a good idea. I haven&#8217;t made up my mind on this one entirely. It won&#8217;t use any markup format by default, that is for sure.</li>
</ul>

<h3>What Should Be Included</h3>

<p>Remember, every project has a different set of needed features for its blog. Some need catagories, some need tags and some others need both. But it would end up as a disaster if we implemented each one of those features into <a href="http://www.muhuk.com/2010/01/developing-reusable-django-apps/">a single app</a>. Instead I think it should consist of many small apps that work together. But I wouldn&#8217;t want to end up having huge spaghetti of apps that all depend on one another, like <a href="http://pinaxproject.com/">Pinax</a> does. A minimal amount of core apps<sup>2</sup> and then everything else should be optional. By optional I mean you don&#8217;t have to install packages you won&#8217;t need.</p>

<p>I think the components (apps) should be activated via adding to <code>INSTALLED_APPS</code> and configured with settings. I can&#8217;t think of any parameter that needs to be changed dynamically, so why not use the established way of doing configuration in Django.</p>

<p>Two must have features for such a blogging app are previews and scheduled publishing. It is possible that you sometimes write a post quickly and publish it immediately. But I suppose nobody will say they don&#8217;t care about these two features.</p>

<p>Built-in feeds and sitemaps are also nice to have.</p>

<p>Multiple instances of this blogging app running on the same project? À la <code>admin</code>. I can&#8217;t make my mind on this one. Sure it would be a nice feature. But it could complicate the code. Peehaps too much for a not so common case.</p>

<p>What do you think about the general idea? Are there any other <em>must-have</em> features? Would you be willing to learn a new app when you are already comfortable with another blogging app?</p>

<hr />

<p><strong>1:</strong> Even though it&#8217;s written in the abomination called PHP. But since there are plugins for everything I don&#8217;t have to touch the code.</p>

<p><strong>2:</strong> One sounds like a good number, if possible.</p>


<p>Related posts:<ol><li><a href='http://www.muhuk.com/2009/03/django-where-should-my-app-live/' rel='bookmark' title='Permanent Link: Django: Where Should My App Live'>Django: Where Should My App Live</a></li>
<li><a href='http://www.muhuk.com/2010/01/developing-reusable-django-apps-app-settings/' rel='bookmark' title='Permanent Link: Developing Reusable Django Apps: App Settings'>Developing Reusable Django Apps: App Settings</a></li>
<li><a href='http://www.muhuk.com/2010/01/developing-reusable-django-apps/' rel='bookmark' title='Permanent Link: Developing Reusable Django Apps'>Developing Reusable Django Apps</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.muhuk.com/2010/04/my-idea-of-the-django-blogging-app%e2%84%a2/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>What Youth Needs Is Vision</title>
		<link>http://www.muhuk.com/2009/04/what-youth-needs-is-vision/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=what-youth-needs-is-vision</link>
		<comments>http://www.muhuk.com/2009/04/what-youth-needs-is-vision/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 19:08:42 +0000</pubDate>
		<dc:creator>Atamert Ölçgen</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[competence]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[morality]]></category>
		<category><![CDATA[turkish]]></category>

		<guid isPermaLink="false">http://www.muhuk.com/?p=157</guid>
		<description><![CDATA[I received the following e-mail today: gençlerin türkçe bilgiye ihtiyacı var. türkçe yazsanıza! Translation: Young people need Turkish articles. Why don&#8217;t you write in Turkish! Let&#8217;s ask this as a question, or a more relevant question of why I am writing my blog in English, at the end of this post. People Who Just Can&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I received the following e-mail today:</p>

<blockquote>
  <p>gençlerin türkçe bilgiye ihtiyacı var. türkçe yazsanıza!</p>
</blockquote>

<p><small>Translation: Young people need Turkish articles. Why don&#8217;t you write in Turkish!</small></p>

<p>Let&#8217;s ask this as a question, or a more relevant question of <strong>why I am writing my blog in English</strong>, at the end of this post.</p>

<h3>People Who Just Can&#8217;t Admit They&#8217;re Wrong</h3>

<p>I am always shopping for new blogs for my RSS reader. Especially blogs written in Turkish. Not only because of Turkish is my mother tongue. But mainly because there are so few, you have to keep searching all the time. So far I&#8217;ve followed many blogs only to find out they&#8217;re by far and large <em>not for me</em>. Except for <a href="http://ileriseviye.org/blog">FZ Blogs</a> of course, <a href="http://www.fazlamesai.net/?a=user_info&amp;username=FZ">FZ</a> rocks.</p>

<p>Then I&#8217;ve found this other blog, with FZ&#8217;s suggestion. It is in Turkish, <em>check</em>! tech/internet/programming related, <em>check</em>! Then I subscribed it happily. <a href="http://www.aklahizmet.com/2009/03/31/google-ventures/">An article</a> published today led to that e-mail in the beginning. It looked like an innocent article about <a href="http://www.google.com/ventures/">Google Ventures</a> until the final part.</p>

<blockquote>
  <p>Bir takım ahmakların dayattıkları genel fikir, halihazırda yurtdışında mevcut bir sistemi ne kadar çabuk kopyalayarak bir “.com” şirketi açarsanız o kadar başarılı olabileceğiniz yönünde. Bu senaryoda ileri teknoloji kullanımı, yaratıcılık, tasarım, özgünlük gibi unsurlar geri plana atılmış durumda.</p>
</blockquote>

<p><small>Translation: Some fools are spreading the idea that the quicker you can duplicate an existing dotcom business the more successful you become. Advanced technologies, creativity, design and originality are neglected in this scenario.</small></p>

<blockquote>
  <p>Belli başlı, az sayıda ve sistemin çarpıklığından palazlanmış büyük oyuncu, etraflarına bazı çığırtkan ve spekülatif insanları toplayarak, kendi aralarında bir birlik oluşturmuşlar ve kendi aralarındaki rekabete rağmen, dışardan oyuna katılmak isteyenlere karşı düşmanca ve dışlayıcı bir tavır içindeler.  Aslında bu primitif bir oyun,  sektör var, oyuncular ve oyuncu olmayanlar var, oyuncular oyuna yeni oyuncu girmesini engellemek için işbirliği yaparken kendi aralarında da rekabet ediyorlar. Durum kabaca bundan ibaret.</p>
</blockquote>

<p><small>Translation: Some big players, who had grown rich out of deformities of the system, gathering speculators and barkers around, formed an alliance, despite competition amongst themselves, to cast newcomers out. This is actually a simple game, there is the industry, players and non players, players are competing with each other while they cooperate to obstruct new players. This is roughly the situation</small></p>

<p>Naturally I <a href="http://www.aklahizmet.com/2009/03/31/google-ventures/comment-page-1/#comment-8">asked</a> if they could back that claim up. Are big players really trying to crush new startups? How exactly are they doing that?</p>

<p>I got no response to that comment, no big surprise. Instead I received the e-mail I mentioned in the beginning. Why? Because we love throwing mud at successful and not-so-successful<sup>1</sup>. Of course there&#8217;s no such secret allience between big players of Internet industry in Türkiye. At the very most they are (naturaly) protecting their investment. This is neither illegal nor immoral. If you actually have anything to support you claim <a href="http://www.aklahizmet.com/danismanlik/">Mr Consultant</a> I&#8217;d be happy to read. Otherwise you should just admit you were wrong and fix that post.</p>

<h3>Guilty Conscience</h3>

<p>Just trying to move the conversation into private, shows that you have nothing meaningful to say about the evil secret cult of Internet companies. That&#8217;s not even an e-mail you have sent me. It is more like an IM message pasted in an e-mail composer.</p>

<blockquote>
  <p>gençlerin türkçe bilgiye ihtiyacı var. türkçe yazsanıza!</p>
</blockquote>

<p>Why don&#8217;t we pay the minimum attention to aviod being a situation where we end up being wrong. And more importantly why do we still insist even after we realize we are wrong. Say, if you give crack/warez links in your blog and then claim the software/media in question is public domain. And then when presentented with link to its official site where it is being sold (ie. not abandonware) you are supposed to try to make fun of people who did the warning? This is why I don&#8217;t, I can&#8217;t follow any Turkish bloggers.</p>

<p>Justification of stealing is bad for the person and bad for the community. Same is true with needless feces throwing and flaming corporate hatred.</p>

<p>Mr Consultant, I liked your blog. I want to follow it, I want to refer it to my friends, I want to learn something from it. So, please put some effort in when writing. I also like your web application <a href="http://www.yazboz.com/">yazboz.com</a> a lot. It may be another duplicate of a well known <a href="http://www.wordassociation.org/">class</a> <a href="http://www.humanbraincloud.com/">of</a> <a href="http://sparro.ws/">applications</a> you were bashing in your post<sup>2</sup>. But I like it. And I hope it becomes a big success.</p>

<h3>Why Am I Torturing You With My Broken English?</h3>

<p>The young needs Turkish information sources, eh? No! The young need to drag his sorry ass and learn English first. And then he should go read something of substance. And then if he has some time to kill he can read my blog. I am not an expert or guru or anything like that. I don&#8217;t have a mission or inclination to educate <strong>the young</strong>.</p>

<p>Trying to translate all the knowledge (written in English) on the Internet is absurdly, disproportionally more work than individually learning English, that it is plain stupid to even think about suggesting it.</p>

<p>I am writing in English for the following reasons:</p>

<ul>
<li>It is a nice filter. If you are too lazy to learn enough English, I have nothing to say to you<sup>3</sup>.</li>
<li>Internet language is English<sup>4</sup>, insist on ignoring this fact and you will stay under-developed. On the contrary the more nationalistic you behave the more marginalized you get. If you are truly for technological advancement you can do nothing but to be pragmatic. Also I love and respect my languge. That is why I don&#8217;t butcher it trying to write technical stuff half English half Turkish.</li>
<li>In support of the first point; writing in English allows me to connect to a larger and better equipped community. So yes, instead of script kiddes who&#8217;ll never get past LAMP, I prefer a pythonista visiting my blog to at least get an idea of what kind of person I am.</li>
</ul>

<p>If, for some odd reason, a young person were to listen to my advice, I&#8217;d like to repeat; learn decent English. Especially if you are a programmer. Get a book, a real book not one of those educational materials, and read it. It&#8217;s simple as that. Or all you&#8217;ll will <del>be</del> <em>have to read is</em> Mr. Consultant&#8217;s blog.</p>

<p><strong>EDIT:</strong><br />Author of mentioned post removed the second quote, about Internet investors, along with my comment there.</p>

<hr />

<p><strong>1</strong>: &#8230;and we love pissing contests. Just reply a question with another question, try to find the weak spot. <code>look, I can piss further!</code></p>

<p><strong>2</strong>: See the first quote.</p>

<p><strong>3</strong>: This is of course in context of this Blog; mainly programming and programmers.</p>

<p><strong>4</strong>: <a href="http://arclanguage.org/item?id=391">Arc supports only ASCII</a></p>


<p>Related posts:<ol><li><a href='http://www.muhuk.com/2009/04/freedays09-recap/' rel='bookmark' title='Permanent Link: Freedays&#8217;09 Recap'>Freedays&#8217;09 Recap</a></li>
<li><a href='http://www.muhuk.com/2009/05/sad-state-of-web-development-industry-in-turkiye/' rel='bookmark' title='Permanent Link: Sad State of Web Development Industry in Türkiye'>Sad State of Web Development Industry in Türkiye</a></li>
<li><a href='http://www.muhuk.com/2010/02/discrimination/' rel='bookmark' title='Permanent Link: Discrimination'>Discrimination</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.muhuk.com/2009/04/what-youth-needs-is-vision/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Techno Tuesday</title>
		<link>http://www.muhuk.com/2009/01/techno-tuesday/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=techno-tuesday</link>
		<comments>http://www.muhuk.com/2009/01/techno-tuesday/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 19:56:42 +0000</pubDate>
		<dc:creator>Atamert Ölçgen</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[comic]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[share]]></category>

		<guid isPermaLink="false">http://www.muhuk.com/?p=89</guid>
		<description><![CDATA[I love Andy&#8216;s humor with a distinct sadness in it. Related posts:Nominate Qooxdoo for SourceForge Community Choice Awards Psychic IRC Support In 10 Easy Steps Piracy Tax]]></description>
			<content:encoded><![CDATA[<p>I love <a href="http://www.technotuesday.com/?page_id=2">Andy</a>&#8216;s humor with a distinct sadness in it.</p>

<p><a alt=="Bluetooth Explained" href="http://www.technotuesday.com/"><img alt="" src="http://www.technotuesday.com/wp-content/uploads/2008/12/14_3_06.jpg" title="Bluetooth Explained" class="aligncenter" width="420" height="278" /></a></p>

<p><a alt="Virtually Connected" href="http://www.technotuesday.com/"><img alt="" src="http://www.technotuesday.com/wp-content/uploads/2009/01/virtually_connected.gif" title="Virtually Connected" class="aligncenter" width="420" height="278" /></a></p>

<p><a href="http://www.technotuesday.com/"><img alt="Life" src="http://www.technotuesday.com/wp-content/uploads/2008/11/life.jpg" title="Life" width="420" height="278" /></a></p>


<p>Related posts:<ol><li><a href='http://www.muhuk.com/2009/05/nominate-qooxdoo-for-sourceforge-community-choice-awards/' rel='bookmark' title='Permanent Link: Nominate Qooxdoo for SourceForge Community Choice Awards'>Nominate Qooxdoo for SourceForge Community Choice Awards</a></li>
<li><a href='http://www.muhuk.com/2009/06/psychic-irc-support-in-10-easy-steps/' rel='bookmark' title='Permanent Link: Psychic IRC Support In 10 Easy Steps'>Psychic IRC Support In 10 Easy Steps</a></li>
<li><a href='http://www.muhuk.com/2009/09/piracy-tax/' rel='bookmark' title='Permanent Link: Piracy Tax'>Piracy Tax</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.muhuk.com/2009/01/techno-tuesday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Little Distractions</title>
		<link>http://www.muhuk.com/2008/10/my-little-distractions/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-little-distractions</link>
		<comments>http://www.muhuk.com/2008/10/my-little-distractions/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 10:42:47 +0000</pubDate>
		<dc:creator>Atamert Ölçgen</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[plurk]]></category>
		<category><![CDATA[social network]]></category>

		<guid isPermaLink="false">http://www.muhuk.com/?p=36</guid>
		<description><![CDATA[I am not one of hyper-connected people who uses ten different micro-blogging services and maintains their profile in six different social networks and, just for the old times sake, frequents in certain forums. No, I&#8217;d rather just finish my work and then if I have time I can read a blog post or two (play). [...]]]></description>
			<content:encoded><![CDATA[<p>I am not one of hyper-connected people who uses ten different micro-blogging services and maintains their profile in six different social networks and, just for the old times sake, frequents in certain forums. No, I&#8217;d rather just finish my <em>work</em> and then if I have time I can read a blog post or two (<em>play</em>). But most of the time I have my IRC client (#fazlamesai @ irc.freenode.net) and Plurk open. For short distractions. I don&#8217;t have a very long attention span, and I need short distractions frequently or else I get a headache.</p>

<p>I think <a href="http://en.wikipedia.org/wiki/Web_feed">RSS</a> is one of the most helpful tools of web. It is easy, efficient and non-distractive. If you choose who you follow well, you would have an endless flow of useful information. I think everyone should use RSS. If you are not already following any feeds, you can <a href="http://paulstamatiou.com/2005/11/13/how-to-getting-started-with-rss">start</a> with <a href="http://www.fazlamesai.net/backend.php">Fazlamesai</a> (in Turkish) or <a href="http://rss.slashdot.org/Slashdot/slashdot">Slashdot</a>.</p>

<p>First thing IRC reminds me is thousands of people sitting in front of computers asking each other <a href="http://en.wiktionary.org/wiki/asl">ASL</a>? or doing some other useless small talk. Let me add almost none of those people in this picture knows for sure whether the others are actually who they say they are. And a significant number of them just fake their identity (such as a thirty nine year old guy impersonating a eighteen year old girl). Not a healthy environment. But if you can turn your head from all the fun these chat rooms offer you can find chat rooms, for example, where open source people gather and help each other. Just find and enter your favourite software&#8217;s chat room, #python, #firefox, #debian&#8230;</p>

<p>I started using Plurk, first becase I was curious about <a href="http://amix.dk/">amix</a>&#8216;s startup. Then I decided to stay a little longer to further analyze how they have integrated game elements in their application. Then I kept on Plurking to get to know the people (<em>early adapters</em>) and to witness the evolution of a social network. I still use Plurk almost everyday, because it gives you the feeling that it is working<sup>1</sup>.</p>

<p><a href="http://plurk.com/redeemByURL?from_uid=8533&amp;check=-1681422170&amp;s=1">Plurk</a> is a so-called <a href="http://amix.dk/blog/viewEntry/19323"><strong>persistent chat</strong></a> application. You can think of it as a cross-breed between instant messaging and e-mail. It is possible to carry on real-time conversations, but when you come back later you can still find (and participate) older discussions. I think you can do this with other micro-blogging applications (such as <a href="http://twitter.com/">Twitter</a>), at least with their desktop clients. With Plurk this is possible in the browser.</p>

<p>It is not just AJAX that makes Plurk an attractive service. It has an elegant and feature rich interface. Posts are laid out (horizontally) on a timeline that you can scroll with your mouse. When you click on one of the posts it expands itself down to show you the comments and other details. No page loads. You can also fully customize the interface, change the appereance, hide some elements, add new ones&#8230; If you check out Plurk, you will see it is designed to be fun.</p>

<p>I think introducing this <em>fun</em> element is very important. We don&#8217;t do micro-blogging because we need to, it doesn&#8217;t solve any of our everyday problems. We do it because we want to socialize and have fun. Fun is normally a product of social interaction. But if you can make the interaction itself fun as well, that is so much better. Plurk has badges and a karma system. Basically you earn karma if you plurk frequently and in quality. The more karma you earn the more you quirks you get, such as adding a profile title or unlocking smileys. Now, this may sound silly to you. Why should we care? Well, you might not care, but in general people do care. Playing is the first complex skill we have learned, so we have a natural tendency to <code>play</code> even in adulthood.</p>

<p>There is one last thing I would like to mention. I think this is important too, for a successfull web service. Plurk changes, (naturally) it changes in place, and it changes to conform your usage. One example for that is when I noticed the &#8220;US Elections 2008&#8243; tab. It just appeared next to &#8220;All Plurks&#8221;, &#8220;My Plurks&#8221;, &#8220;Private&#8221; tabs one day. That&#8217;s a nice thing. But, wait there&#8217;s more. The next day an X appeared on the right of that tab. Not being an U.S.A citizen I clicked it and the tab disappeared. Which is also nice. But, wait there&#8217;s even more. The next day the elections tab didn&#8217;t show up again. Nothing, fancy. Just as one would have expected. But very important. Does many of your everyday services pay special attention to details like this. Users do, at least in a sub-conscious level. It is like having a new piece of clothing and feeling that you have been happily wearing it for years. It just fits.</p>

<p>So, what was I saying? Little distractions. But you need to manage them. You want a short cool off period, not losing focus all together. Plurk is a nice nice service. IRC still has something to offer. RSS is the king for me. But I still have work to do now. Introducing distractions without proper discipline quickly turn into inefficiency.</p>

<hr />

<p><strong>1</strong>: This deserves a post of its own.</p>


<p>Related posts:<ol><li><a href='http://www.muhuk.com/2009/04/what-youth-needs-is-vision/' rel='bookmark' title='Permanent Link: What Youth Needs Is Vision'>What Youth Needs Is Vision</a></li>
<li><a href='http://www.muhuk.com/2009/04/getting-the-most-out-of-your-facebook-account/' rel='bookmark' title='Permanent Link: Getting The Most Out Of Your Facebook Account'>Getting The Most Out Of Your Facebook Account</a></li>
<li><a href='http://www.muhuk.com/2009/06/psychic-irc-support-in-10-easy-steps/' rel='bookmark' title='Permanent Link: Psychic IRC Support In 10 Easy Steps'>Psychic IRC Support In 10 Easy Steps</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.muhuk.com/2008/10/my-little-distractions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
