<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Prove that real but not virtual</title>
	<atom:link href="http://chanux.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://chanux.wordpress.com</link>
	<description>The keyhole to Chanuxs Techno+Human life.</description>
	<lastBuildDate>Sat, 04 Jul 2009 04:52:47 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
		<url>http://www.gravatar.com/blavatar/359d7e246dcd0c3577628f36fdbc86f4?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Prove that real but not virtual</title>
		<link>http://chanux.wordpress.com</link>
	</image>
			<item>
		<title>Window focus event for shell scripts.</title>
		<link>http://chanux.wordpress.com/2009/07/04/window-focus-event-for-shell-scripts/</link>
		<comments>http://chanux.wordpress.com/2009/07/04/window-focus-event-for-shell-scripts/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 03:59:10 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Hacks]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=410</guid>
		<description><![CDATA[Hacking is always fun. That&#8217;s why I always lose focus on everything one interesting hack. That&#8217;s why I spent whole last night trying to figure out how to mimic Window focus event in a shell script. Though this is completely new to me, you maybe very much comfortable with implementing it   . If [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=410&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hacking is always fun. That&#8217;s why I always lose focus on everything one interesting hack. That&#8217;s why I spent whole last night trying to figure out how to mimic Window focus event in a shell script. Though this is completely new to me, you maybe very much comfortable with implementing it <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . If so please let me know in comments.</p>
<p>Anyway here is my story.</p>
<p>I found this nice command line IM client called <a href="http://www.centerim.org/index.php/Main_Page">centerIM</a> (Thanx <a href="http://twitter.com/chathuraw">@chathuraw</a> for info). Once I got it set up I was just scanning on it&#8217;s documentation page &amp; came across this interesting part &#8220;<a href="http://www.centerim.org/index.php/Documentation#External_actions_and_auto-responses">External actions &amp; auto-responses</a>&#8220;. I wrote a script right away for GUI notifications, inspired by <a href="http://lewk.org/blog/irssi-notify">notify.pl</a> script for <a href="http://irssi.org">irssi</a>. Here is <a href="http://www.archive.org/stream/GuiNotificationsForCenterim/gui-notifiations-centerim.txt">the script</a> if you are interested.</p>
<p>Since the load of IM messages was very high at a time &amp; It was useless when the terminal window with centerIM was already focused (which means I&#8217;m chatting on centerIM) I was thinking of getting notifications only when centerIM window is not in focus. Few Google searches lead me to very limited resources &amp; I chose xwininfo &amp; xdpyinfo commands for my work.</p>
<p>Workaround: I&#8217;m using gnome for now &amp; so gnome-terminal as my terminal emulator. I had to set edit &gt; profilepreferences &gt; Title &amp; command option to keep initial title, in order to have &#8220;Terminal&#8221; as the terminal window name all the time.</p>
<p>And ran xininfo to get following output.</p>
<pre name="code" class="bash">

chanux@nim:~$ xwininfo -name Terminal

xwininfo: Window id: 0x3800003 &quot;Terminal&quot;

 Absolute upper-left X:&amp;nbsp; 0
 Absolute upper-left Y:&amp;nbsp; 52
 Relative upper-left X:&amp;nbsp; 0
 Relative upper-left Y:&amp;nbsp; 27
 Width: 1280
 Height: 691
 Depth: 24
 Visual Class: TrueColor
 Border width: 0
 Class: InputOutput
 Colormap: 0x20 (installed)
 Bit Gravity State: NorthWestGravity
 Window Gravity State: NorthWestGravity
 Backing Store State: NotUseful
 Save Under State: no
 Map State: IsViewable
 Override Redirect State: no
 Corners:&amp;nbsp; +0+52&amp;nbsp; -0+52&amp;nbsp; -0-25&amp;nbsp; +0-25
 -geometry 156x37+0+25
</pre>
<p>This can be used to get the window id of the windw which runs the script.</p>
<p>Then I can find the focused window at the moment as following.</p>
<pre name="code" class="bash">

chanux@nim:~$ xdpyinfo |grep focus
focus:&amp;nbsp; window 0x3800004, revert to Parent
</pre>
<p>I fetched the window IDs with a little bit more work.</p>
<p>Anyway the problem I had is that, I get 0&#215;3800003 (at this example) or likewise for the Terminal window id &amp; even when the Terminal id is focused I get 0&#215;3800004 as the focused window id. Yes I know with some more work I can manage to handle that &amp; come to a point that I can compare those window Ids to check for the focused window. But I reall like to know why that difference come up. Anyone have an explanantion? Or anyone like to mess with this?</p>
<p>Following is the way I fetched window ids from above outputs</p>
<pre name="code" class="bash">

chanux@nim:~$ xwininfo -name &quot;Terminal&quot; | grep xwininfo | cut -d &quot; &quot; -f 4
0x3800003
chanux@nim:~$ xdpyinfo | grep focus | cut -d &quot; &quot; -f 4 | sed s/,//
0x3800004
</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/410/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=410&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2009/07/04/window-focus-event-for-shell-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
		<item>
		<title>Join me in MJ ass kissers club.</title>
		<link>http://chanux.wordpress.com/2009/06/27/join-me-in-mj-ass-kissers-club/</link>
		<comments>http://chanux.wordpress.com/2009/06/27/join-me-in-mj-ass-kissers-club/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 09:11:42 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[free thoughts]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=386</guid>
		<description><![CDATA[OK, There&#8217;s one now. wait.. wait&#8230; it was not me. That sage girl defined the club. First of all let&#8217;s see who are already in.
The Way you make me feel &#124; How I see it
Michael Jackson and Me &#124; Landon Lanka and Drums
A Legend &#124; A heart on a sleeve
The way you make me feel [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=386&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>OK, There&#8217;s one now. wait.. wait&#8230; it was not me. That <a rel="nofollow" href="http://theniceblogs.blogspot.com">sage girl</a> <a rel="nofollow" href="http://theniceblogs.blogspot.com/2009/06/hey-me-too-silly-lankans-stop-kissing.html">defined the club</a>. First of all let&#8217;s see who are already in.</p>
<p><a href="http://harshajayman.blogspot.com/2009/06/ever-since-i-got-news-of-michael.html">The Way you make me feel</a> | How I see it<br />
<a href="http://londonlanka.blogspot.com/2009/06/michael-jackson-and-me.html">Michael Jackson and Me</a> | Landon Lanka and Drums<br />
<a href="http://scrumpulicious.blogspot.com/2009/06/legend.html">A Legend</a> | A heart on a sleeve<br />
<a href="http://delilahsays.wordpress.com/2009/06/26/the-way-you-make-me-feel">The way you make me feel</a> | delilah says<br />
<a href="http://justchillinslow.blogspot.com/2009/06/there-will-never-be-another-you-mj.html">There will never be another you, MJ</a> | Jus Chillin&#8217;<br />
<a href="http://divine3.blogspot.com/2009/06/mjs-gone.html">MJ&#8217;s gone <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </a> | A glimpse of lady devine<br />
<a href="http://chaarmax.wordpress.com/2009/06/26/whats-your-fav-mj">What&#8217;s your fav MJ?</a> | Chaar~Max 2.0<br />
<a href="http://gossiplanka.blogspot.com/2009/06/singer-michael-jackson-dies-at-50.html">Singer Michael Jackson dies at 50</a> | Gossip Lanka<br />
<a href="http://www.cityhitsonline.com/2009/06/michael-jackson-dies-at-age-50.html">&#8216;King of Pop&#8217; Michael Jackson dies at age 50</a> | City Hits<br />
<a href="http://chamindra.blogspot.com/2009/06/six-list-my-favorite-songs-of-king-of.html">The Six List &#8211; Tribute to &#8220;The King of Pop&#8230;&#8221;</a> | Untitled<br />
<a href="http://saintfallen.wordpress.com/2009/06/26/so-about-mj">So, about MJ</a> | The Abyss</p>
<p>Update: Here is a <a href="http://www.achcharu.org/tag/MJ%20death">comprehensive list</a> of blog posts on MJ&#8217;s death on achcharu.org. (thanx <a href="http://lair.fierydragon.org/">drac</a> for the link) Most of the writers should include the club. Now I really love to be in this club <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  .</p>
<p>Dropped in happily:</p>
<p><a href="http://bumbleforpm.blogspot.com/2009/06/rip-michael-jackson-i-will-never-forget.html">Doesn&#8217;t matter if you are black or white.</a> | Bumble for PM</p>
<p>So this is all I found on a kottu search (query:MJ Michael). If I&#8217;ve missed any of you please let me know. And if you think you don&#8217;t match the club since you are not upset of MJ&#8217;s death, ping me I&#8217;ll remove you from the list.</p>
<p>11 posts (edit : at the beginning it was), written by people who are shocked by the death of MJ. I just feel like that&#8217;s not enough. I too join the club.</p>
<p>Yesterday I woke up to the news &#8216;MJ died&#8217; on Fox news or something. First thing I did was switching on my laptop &amp; rushing to the interwebz. My twitter feed didn&#8217;t have much info but Twitter search kinda confirmed that I should start to feel upset. Not that I&#8217;m a big fan. But I dunno why the hell I feel so bad that MJ is not any more. I can remember I grew up listening to him. Heard those strange stories about him. My uncle had few albums of MJ which I still can remember the cover art of.</p>
<p>I was upset when people call him a child molester. But I just didn&#8217;t give a shit. Yeah that&#8217;s my kind, &#8220;Just don&#8217;t give a shit&#8221;. But I can&#8217;t stop feeling upset of MJ. Maybe that&#8217;s because he was a legend, an icon &amp; still he went away that way. Maybe I&#8217;m not upset about MJ but the universal truth, &#8220;it all comes to an end&#8221;. MJ&#8217;s death just make it a bit clear I guess. well&#8230; I dunno.</p>
<p>So I hope I&#8217;m in the club, *drumroll* &#8220;MJ ass kissers club&#8221;.</p>
<p>Damn it feels so cool here. But I wonder why the &#8220;sage girl&#8221; is upset about our feelings. We putting on feelings on our blogs which are public, which unfortunately are on kottu, which is sage girl&#8217;s personal feed reader. Indi&#8230; hey buddy please kick me off. Please do that. Sage girl is upset about what we write. And hope others in the club will also get their blogs out of kottu, just to make sage girls reading experience a bit better.</p>
<p>And by the way guys, sage girl also says like this.</p>
<p>&#8220;My blog is mine. I never invited you to read it.&#8221; (<a href="http://theniceblogs.blogspot.com/2009/06/outcast-under-dogs-and-untouchables.html">source</a>. And it&#8217;s not the<a rel="nofollow" href="http://theniceblogs.blogspot.com/2009/06/stop-reading-rehanis-blog.html"> first one</a>)</p>
<p>Now tell me why you put your blog on Kottu? isn&#8217;t it kind of an innocent invitation to other kottu readers to read this? Well.. I like when people read my posts, kottu people too. But unlike sage girl *I don&#8217;t write for Kottu*. So just think why we should get labeled as &#8216;ass kissers&#8217; for being on Kottu? (and stuffing sage girls good read heaven a hell).</p>
<p>Anyway sage girl always manages to eclipse her own thoughts by her own thoughts. Sounds freaky but that&#8217;s the way it is. Defending her own false facts with another bunch of false facts. What got pissed me off of is aiming bloggers who are free to write &amp; free to be on any social aggregator as long as they don&#8217;t harm the community or any terms set by the aggregator so badly. And this not the fucking <a rel="nofollow" href="http://theniceblogs.blogspot.com/2009/06/buddhists-can-eat-meat-muslims-reply-to.html">first time</a>.</p>
<p>I know I&#8217;m trying to put too much light on a small bug. But I don&#8217;t want to see this happened again &amp; again.</p>
<p>PS: I was trying very hard to not use any offensive words (ex: fuck, fucking, shit) coz I&#8217;m practicung to reduce the usage :-S.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/386/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=386&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2009/06/27/join-me-in-mj-ass-kissers-club/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
		<item>
		<title>Make Twitterfox use the URL shortner that You want.</title>
		<link>http://chanux.wordpress.com/2009/06/18/make-twitterfox-use-the-url-shortner-that-you-want/</link>
		<comments>http://chanux.wordpress.com/2009/06/18/make-twitterfox-use-the-url-shortner-that-you-want/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 05:56:26 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[tr.im]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[twitterfox]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=382</guid>
		<description><![CDATA[I found This nice howto via @meaningful. Looks like the howto is for older version of Twitterfox. Here goes how to do it on Twitterfox 1.8.1 (The version I use right now)
And I recommend you to update to Twitterfox 1.8.1 coz it&#8217;s really improved.
First go here:
&#60;path to your Firefox profile directory&#62;/extensions/twitternotifier@naan.net/chrome
[you'll learn howto find your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=382&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I found This<a href="http://thinlight.org/2008/07/23/use-isgd-in-twitterfox-to-shorten-url/"> nice howto</a> via <a href="http://twitter.com/meaningful/statuses/2218044712">@meaningful</a>. Looks like the howto is for older version of <a href="https://addons.mozilla.org/en-US/firefox/addon/5081">Twitterfox</a>. Here goes how to do it on Twitterfox 1.8.1 (The version I use right now)</p>
<p>And I recommend you to update to Twitterfox 1.8.1 coz it&#8217;s really improved.</p>
<p>First go here:</p>
<p><strong>&lt;path to your Firefox profile directory&gt;/extensions/twitternotifier@naan.net/chrome</strong></p>
<p><em>[you'll learn<a href="http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox"> howto find your Firefox profile directory</a> (AKA folder) here. There are too many operating systems. I can't cover them all <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />   ]<br />
</em><br />
There is a file called<strong> TwitterFox.jar</strong></p>
<p>Open it &amp; go in to directory called <strong>content</strong>. There you&#8217;ll find the file called twitterfox.js, you better open it with a text editor.</p>
<p>In the top region of the file you&#8217;ll find <strong>TINYURL_CREATE_API</strong> variable. it is set to use tinyurl api by default. I edited it to use my favorite URL shortnet tr.im by editing it to look like this.</p>
<p>var TINYURL_CREATE_API = &#8220;http://tr.im/api/trim_simple?url=&#8221;;</p>
<p>You can repalce http://tr.im/api/trim_simple?url= with the API of your favorite URL shortner.</p>
<p>You need to restart Firefox for the changes to be effective.</p>
<p>Hope it works <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  . Anything not clear? Just ask in comments.</p>
<p>PS: You may not like to <a href="http://chanux.wordpress.com/2009/01/14/just-trim-it/">try this</a> but I don&#8217;t give a shit <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  .</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/382/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=382&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2009/06/18/make-twitterfox-use-the-url-shortner-that-you-want/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
		<item>
		<title>What I learned from past 12+ hours of compiling tamasha?</title>
		<link>http://chanux.wordpress.com/2009/06/11/lessons-compiling/</link>
		<comments>http://chanux.wordpress.com/2009/06/11/lessons-compiling/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 07:32:41 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[computing+Life]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=376</guid>
		<description><![CDATA[I was compiling Qt from source. And had loads of issues. This is what I learned after all.
1. Errors are chances to learn.
2. Never copy paste command / code blindly from somewhere on the Internet.
Even if it&#8217;s very trustworthy source. Copy paste process might produce errors to ruin your day  . Check the code [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=376&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was compiling Qt from source. And had loads of issues. This is what I learned after all.</p>
<p>1. Errors are chances to learn.</p>
<p>2. Never copy paste command / code blindly from somewhere on the Internet.</p>
<p style="padding-left:30px;">Even if it&#8217;s very trustworthy source. Copy paste process might produce errors to ruin your day <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Check the code for yourself. Especially beware of commands/codes looking &#8216;obvious&#8217;.</p>
<p>3. When you ask for help give the helper everything.</p>
<p style="padding-left:30px;">Not what YOU THINK is useful.<br />
When you get troubles your sanity shakes a bit <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>4. It&#8217;s always helpful.. well.. to sleep.</p>
<p style="padding-left:30px;"><a href="http://news.bbc.co.uk/2/hi/health/8090730.stm">http://news.bbc.co.uk/2/hi/health/8090730.stm</a> . They are right. Believe me.</p>
<p>5. Sometimes it makes sense to &#8220;start it all over again&#8221;.</p>
<p style="padding-left:30px;">Hunting errors one buy one might probably be a Goose chase.</p>
<p>6. It&#8217;s always good to have nice &amp; helpful friends &amp; community around <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<p>7. You should never trust a machine.</p>
<p>8. You better have good Internet.</p>
<p style="padding-left:30px;">I&#8217;m not talking about <a href="http://www.dialog.lk/personal/broadband/hspa/">these guys.</a> <a href="http://twitter.com/chanux/status/2112826451">?</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/376/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=376&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2009/06/11/lessons-compiling/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy Birthday SinhalenFOSS!</title>
		<link>http://chanux.wordpress.com/2009/04/10/happy-birthday-sinhalenfoss/</link>
		<comments>http://chanux.wordpress.com/2009/04/10/happy-birthday-sinhalenfoss/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 05:10:10 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[chanux]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[sinhalen foss]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=368</guid>
		<description><![CDATA[SinhalenFOSS, Sri Lankas very first tech related podcast, the podcast that I proudly feature in, turned one year yesterday(9th April 2009). We didn&#8217;t have big plans for the day but it was truly a big milestone for me. I&#8217;m sure the story is same for the other two co-hosts Bud (geekaholic) &#38; Seejay.
We had the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=368&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://sinhalenfoss.org">SinhalenFOSS</a>, Sri Lankas very first tech related podcast, the podcast that <a href="http://chanux.wordpress.com/2008/04/10/launched-finally/">I proudly feature in</a>, turned one year yesterday(9th April 2009). We didn&#8217;t have big plans for the day but it was truly a big milestone for me. I&#8217;m sure the story is same for the other two co-hosts <a href="http://geekaholic.org">Bud</a> (geekaholic) &amp; <a href="http://seejay.net">Seejay</a>.</p>
<p>We had the episode 21 recorded on last sunday (5th April 2009) but due to my busy schedule I couldn&#8217;t finish editing &amp; upload it. Finally there was a hope for uploading it on SinhalenFOSS birthday. But I&#8217;m really sorry that I couldn&#8217;t make it on time since my father was sick &amp; I had to go to the doc with him. Added to that, I couldn&#8217;t stay up all night &amp; finish it off since I was tired of fairly a long journy. Actually I tried to stay awake but failed. However my computer stood awake when I find it on my bed in mid night (Poor thing!).</p>
<p>Anyway I&#8217;ll try to finish things up &amp; put the final product in our loving listeners hands As Soon As Possible!. The bits are running in to interwebz right now <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<p>It was a pleasant year passed giving me lots of experience, introducing lots of nice people to me, taking my life to another level &amp; best of all, making me very happy for being a part of. It&#8217;s all thanks to you dear SinhalenFOSS, I really love you. Wishing you a very happy birthday!</p>
<p>Update: SinhalenFOSS <a href="http://www.sinhalenfoss.org/2009/04/one-year-for-sinhalenfoss/">episode 21</a> is on interwebz now <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/368/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=368&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2009/04/10/happy-birthday-sinhalenfoss/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
		<item>
		<title>Static DNS with wvdial.</title>
		<link>http://chanux.wordpress.com/2009/03/23/static-dns-with-wvdial/</link>
		<comments>http://chanux.wordpress.com/2009/03/23/static-dns-with-wvdial/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 17:33:21 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[dnsmasq]]></category>
		<category><![CDATA[OpenDNS]]></category>
		<category><![CDATA[wvdial]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=365</guid>
		<description><![CDATA[It&#8217;s over. The fight against the dynamic DNS is over for me now. It took me so long to figure this simple thing out. But I don&#8217;t worry, even the big bro Goog couldn&#8217;t come up with a satisfying straight answer for my problem. So I myself searched under the mattress &#38; found the pea [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=365&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s over. The fight against the dynamic DNS is over for me now. It took me so long to figure this simple thing out. But I don&#8217;t worry, even the big bro Goog couldn&#8217;t come up with a satisfying straight answer for my problem. So I myself searched under the mattress &amp; found the <a href="http://www.andersen.sdu.dk/vaerk/hersholt/ThePrincessOnThePea_e.html">pea</a> which took my good night sleep (I&#8217;m neither a princess nor prince <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).</p>
<p>Sometimes back I had to come up with a pretty <a href="http://chanux.wordpress.com/2008/12/21/making-future-a-bit-less-shitty">shitty solution</a> for a shitty problem. No I didn&#8217;t won&#8217;t to show how bad my thinking or coding is. But wanted to show how shitty is the service of <a href="http://www.dialog.lk/en/mobile/mobilebb/index.html">my ISP</a>. But however the right way to fix all those are here with me. And I&#8217;m gonna share it with you.</p>
<p>If you use wvdial to dial up (Ok, now only seven people at most will continue reading this) for your internet connection, and you hate the DNS servers come your way automagically, here&#8217;s what to do.</p>
<p>Open <strong>/etc/ppp/peers/wvdial</strong> with your favorite text editor &amp; comment the line <strong>usepeerdns</strong>. I mean make it look like <em>#usepeerdns</em>. Now wvdial won&#8217;t ask pppd to fetch those crappy DNS addresses again.</p>
<p>So go and edit your <strong>/etc/resolv.conf</strong> file and add you favorite DNS servers there. Mine looks like following.</p>
<p>nameserver 127.0.0.1<br />
nameserver 208.67.222.222<br />
nameserver 208.67.220.220</p>
<p>Wonder why I use 127.0.0.1 there? That&#8217;s because I&#8217;m a happy user of dnsmasq (I recommend you to use it). I used <a href="http://ubuntu.wordpress.com/2006/08/02/local-dns-cache-for-faster-browsing/">this simple HOWTO</a> to install it on Ubuntu. There should be other guides &amp; HOWTOs which might match you (In case that one doesn&#8217;t fit). Just ask big bro Goog.</p>
<p>And other nameservers are of the nice free DNS service <a href="http://opendns.com/">OpenDNS</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/365/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=365&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2009/03/23/static-dns-with-wvdial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
		<item>
		<title>Send tinyarro.ws on ubiquity.</title>
		<link>http://chanux.wordpress.com/2009/02/28/send-tinyarrows-on-ubiquity/</link>
		<comments>http://chanux.wordpress.com/2009/02/28/send-tinyarrows-on-ubiquity/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 15:18:20 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=358</guid>
		<description><![CDATA[It&#8217;s today I found this new URL shortening service tinyarro.ws. It gives you http://➡.ws/blah as the shortened url(yeah.. blah is a random string or you can choose what you like).
I really liked the idea &#38; thought of altering my previously created trim ubiquity command and make a ubiquity command for tinyarro.ws. You can get ubiquity [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=358&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s today I found this new URL shortening service <a href="http://tinyarro.ws">tinyarro.ws</a>. It gives you http://➡.ws/blah as the shortened url(yeah.. blah is a random string or you can choose what you like).</p>
<p>I really liked the idea &amp; thought of altering my previously created <a href="http://chanux.wordpress.com/2009/01/14/just-trim-it/">trim</a> ubiquity command and make a ubiquity command for tinyarro.ws. You can <a href="https://addons.mozilla.org/en-US/firefox/addon/9527">get ubiquity here</a> . If you don&#8217;t not know what is ubiquity you can <a href="https://wiki.mozilla.org/Labs/Ubiquity/Ubiquity_0.1_User_Tutorial">learn more here</a>.</p>
<p style="text-align:center;"><strong> &gt; <a href="http://flauntee.com/chanux/tinyarrows.html">Install arrow &#8211; Ubiquity command</a></strong> &lt;</p>
<p style="text-align:center;">(If you have ubiquity installed you get a dialog to install the command on top of the page)</p>
<p>OK fellas keep sending tiny arrows <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  .</p>
<p>BTW: Tinyarrow for this blog post is http://➡.ws/⇷</p>
<p><span style="color:#ff0000;">Update</span>: tinyarro.ws URLs might not work properly everywhere. Just keep an I on the discussion going on <a href="http://news.ycombinator.com/item?id=498051">here</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/358/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/358/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/358/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/358/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/358/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=358&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2009/02/28/send-tinyarrows-on-ubiquity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
		<item>
		<title>How not to miss another reply?</title>
		<link>http://chanux.wordpress.com/2009/02/19/how-not-to-miss-another-reply/</link>
		<comments>http://chanux.wordpress.com/2009/02/19/how-not-to-miss-another-reply/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 14:49:04 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[kwik]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=351</guid>
		<description><![CDATA[Replies are very important in communication. Specially where there isn&#8217;t a direct real time connectivity between people who communicate, replies are vital. In modern days comment replies on your blog, Twitter replies &#38; all kinds of replies you get on your online activities are so important, even though web2.0 seem to be fading. Today you&#8217;ll [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=351&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Replies are very important in communication. Specially where there isn&#8217;t a direct real time connectivity between people who communicate, replies are vital. In modern days comment replies on your blog, Twitter replies &amp; all kinds of replies you get on your online activities are so important, even though web2.0 seem to be fading. Today you&#8217;ll learn how not to miss replies On comments(on blogs), social news sites &amp; Twitter.</p>
<p>First Let&#8217;s see &#8216;How not to miss another reply on Twitter&#8217;. Yes Twitter is still the big thing (at least for me <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  ) .</p>
<p>Twitter only shows up messages from people you follow on your time line. Same thing happens to @replies addressed to you by people you don&#8217;t follow. But @replies are so important. You better be aware of @replies come your way, to have a healthy Twitter life. After all &#8220;being in conversation&#8221; is the most important thing in Twitter. So here&#8217;s how not to miss that @reply.</p>
<p><strong>Method 1: Get Twitter @replies as an RSS feed.</strong><br />
1. Go to Twitter serach page.<br />
2. Search for your Twitter id with @ sign. ex: <a href="http://search.twitter.com/search?q=%40chanux">@chanux</a> . If you wanna track multiple IDs do it like this &#8216;@myID OR @myFriend&#8217; ex: <a href="http://search.twitter.com/search?q=%40chanux+OR+%40sinhalenfoss">@chanux OR @sinhalenFOSS</a>. Of course there&#8217;s Twitter <a href="http://search.twitter.com/advanced">advanced search</a> for you to tweak your query to match your needs.<br />
3. Once you get the search results page Find the RSS for the query on top right hand side of search page.</p>
<p><a href="http://chanux.files.wordpress.com/2009/02/twitterrss.png"><img class="aligncenter size-medium wp-image-352" title="twitterrss" src="http://chanux.files.wordpress.com/2009/02/twitterrss.png?w=300&#038;h=44" alt="twitterrss" width="300" height="44" /></a><br />
4. Subscribe to the feed with your favorite <a href="http://chanux.wordpress.com/2008/12/03/the-rss-reader-that-fits-me/">RSS reader</a> or Get updates right in your mail inbox with <a href="http://www.rssfwd.com/">RSSFWD</a>.</p>
<p><strong>Method 2: Get Twitter @replies on Gtalk(jabber)</strong><br />
1. Invite twitterspy@jabber.org to chat.<br />
2. Twitter spy will Auto reply you &amp; then you can setup Twitter tracks. send following commands to twitterspy on IM.<br />
on &#8211; Activates notifications.<br />
track &#8211; track key words (ex: track @myID).<br />
tracks &#8211; list the key words you track now.<br />
untrack &#8211; Discard tracks (ex: untrack @myID)</p>
<p><a href="http://www.techlifeweb.com/2008/07/07/how-to-set-up-twitterspy-in-google-talk/">Here is an intuitive howto</a> for setting up TwitterSpy.</p>
<p>Now Let&#8217;s see How not to miss another reply on your comments on blogs/social news sites.</p>
<p>For this there is that great service called Backtype. You just sign Up, (maybe) complete four initial steps &amp; steup alerts on your own key words.</p>
<p>1. Signup &amp; Login to <a href="http://www.backtype.com/">Bactype.com</a>.<br />
2. Go to Alerts page &amp; put your key words in (ex: @yourID ) &amp; Choose the Alert type. And create Alert.</p>
<div id="attachment_353" class="wp-caption aligncenter" style="width: 241px"><a href="http://chanux.files.wordpress.com/2009/02/backtype.png"><img class="size-full wp-image-353" title="backtype" src="http://chanux.files.wordpress.com/2009/02/backtype.png?w=231&#038;h=222" alt="Backtype" width="231" height="222" /></a><p class="wp-caption-text">Backtype</p></div>
<p>3. Keep commenting <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>There are more you can do with your comments in Backtype. You just discover the great service by yourself.</p>
<p>And never miss another reply <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/351/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=351&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2009/02/19/how-not-to-miss-another-reply/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>

		<media:content url="http://chanux.files.wordpress.com/2009/02/twitterrss.png?w=300" medium="image">
			<media:title type="html">twitterrss</media:title>
		</media:content>

		<media:content url="http://chanux.files.wordpress.com/2009/02/backtype.png" medium="image">
			<media:title type="html">backtype</media:title>
		</media:content>
	</item>
		<item>
		<title>Dimi I miss you.</title>
		<link>http://chanux.wordpress.com/2009/02/14/dimi-i-miss-you/</link>
		<comments>http://chanux.wordpress.com/2009/02/14/dimi-i-miss-you/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 04:01:58 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[chanux]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=346</guid>
		<description><![CDATA[Yeah I miss Dimi a lot. *Specially* on this *special* day. I want you. But I can&#8217;t find you in this internet jungle. But somehow I want you man. Oh shit I said that. That, Dimi is a guy. Which makes you guys think I&#8217;m in love with a guy. And that means I&#8217;m gay. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=346&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yeah I miss Dimi a lot. *Specially* on this *special* day. I want you. But I can&#8217;t find you in this internet jungle. But somehow I want you man. Oh shit I said that. That, Dimi is a guy. Which makes you guys think I&#8217;m in love with a guy. And that means I&#8217;m gay. Oh shit.</p>
<p>OK. Dudes I&#8217;m not gay.  And I believe <a href="http://www.facebook.com/group.php?gid=2204750744">Gay marriages killed Dinosaurs</a> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> . But man&#8230; I miss dimi. Specially on this day &#8220;The f*cking valentines day&#8221;. Now you wonder who the hell is Dimi right?. If you were on kottu &amp; had a bad &amp; nasty reading taste like mine you should&#8217;ve found him. Dimi was Dragon of &#8220;<span style="text-decoration:line-through;"><a href="http://dragonsofeden.blogspot.com/">Dragons of eden</a></span>&#8220;.</p>
<p>Why I remind him on v&#8217;tines day even when it makes me sound so gay?.  It&#8217;s because of the <a href="http://chanux.wordpress.com/2008/02/15/the-post-valentine-day-post/">post valentines day pos</a>t. A blogpost I wrote like &#8220;in reply to&#8221; a post from Dimi, which was about love, V&#8217;tines day &amp; all that crap. I&#8217;ve linked to two post on his blog on my post. My post is having extra hits these days &amp; so I see it on my stats page. And also people are talking a lot about it lately. That&#8217;s what makes me really miss Dimi &amp; his blog. Without his posts mine don&#8217;t sound so cool:( .</p>
<p>Hey Dimi, you bustard, just come out from where you are hiding or stop f*cking around those planes (you were doing some avition related stuff?) &amp; write some bad posts for us to read. You scumbag we (or at least I) wanna read some dirty posts from you. If you are reading this comment here or find my contact page on this blog.</p>
<p>If you know any clue about dimi-the-dirt please let me know. We seriously need to get him back in blogging SOMEHOW.</p>
<p>Update: <span style="text-decoration:line-through;">Bugger is on Booz-feck</span> &#8211; Oops I can&#8217;t reveal that. But he is out there.</p>
<p>PS: And where&#8217;s just mal?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/346/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=346&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2009/02/14/dimi-i-miss-you/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
		<item>
		<title>Are Geeks really multitasking?</title>
		<link>http://chanux.wordpress.com/2009/02/05/are-geeks-really-multitasking/</link>
		<comments>http://chanux.wordpress.com/2009/02/05/are-geeks-really-multitasking/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 14:16:54 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[chanux]]></category>
		<category><![CDATA[computing+Life]]></category>
		<category><![CDATA[free thoughts]]></category>
		<category><![CDATA[A.D.D]]></category>
		<category><![CDATA[geeks]]></category>
		<category><![CDATA[men]]></category>
		<category><![CDATA[nerds]]></category>
		<category><![CDATA[women]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=342</guid>
		<description><![CDATA[I&#8217;ve read this fine article by rands, about the Attention Deficiency Disorder which nerds normally known to have. And it sounds like &#8220;Geeks are multitasking&#8221;. But I have another explanation for that. I&#8217;ll use the word Geek instead of nerd since it&#8217;s better known at the time.
I think I have most of those qualities which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=342&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve read <a href="http://http://www.randsinrepose.com/archives/2003/07/10/nadd.html">this fine article</a> by <a href="http://twitter.com/rands">rands</a>, about the Attention Deficiency Disorder which nerds normally known to have. And it sounds like &#8220;Geeks are multitasking&#8221;. But I have another explanation for that. I&#8217;ll use the word Geek instead of nerd since it&#8217;s better known at the time.</p>
<p>I think I have most of those qualities which are known to be in Geeks. I never called myself a Geek until another geek called me so. I used the word tech-freak instead. But there are many people calling me a geek &amp; I have no problem with that. So the so called explanation is based on what I think/know of myself. I know it cannot be hundred percent true or hundred percent false.</p>
<p>When I&#8217;m at home &amp; at the computer, if mom comes with a hot tea &amp; a good topic, normally in few minutes she gets angry with me &amp; start complaining that I don&#8217;t LISTEN. When I&#8217;m on the phone, if I look into the computer screen, money spent for making the call is gonna be a big waste. What actually happened to that multitasking feature? Gone with the wind?</p>
<p>Most the time when I take input from my computer screen all the other inputs are getting closed. Or at least loosing priority. But why, I am supposed to have multitasking built-in.</p>
<p>Maybe I don&#8217;t have multitasking. But still there are 10-15 Firefox tabs open, few terminal windows/tabs open, email client, may be the text editor with few more tabs, IM client &amp; irssi too. And also some music playing in the backround streaming through the net or in Amarok. I think I&#8217;m Alt-Tab-ing through them so many times. Hmmm&#8230; complicating huh?</p>
<p>OK, here&#8217;s what I think of &#8220;what&#8217;s going on?&#8221;. Let&#8217;s face it, I don&#8217;t do multitasking. Yes they say that normally <a href="http://www.npr.org/templates/story/story.php?storyId=95784052">men can&#8217;t</a> do multitasking , But <a href="http://blog.wired.com/gadgets/2007/11/survey-women-be.html">women can</a> . I don&#8217;t know whether they are right or wrong. But I&#8217;m sure I&#8217;m not multitasking. It&#8217;s just dividing time. My brain divides &amp; allocate times for each task. Listening to music at a given chunk of time &amp; quickly jumping in to some coding at next chunk &amp; then something else. (The task list has a priority &amp; the way priority is given is another story &amp; a half). Sounds like <a href="http://en.wikipedia.org/wiki/Time_division_multiple_access">TDMA</a> isn&#8217;t it? Time Divisional Multiple Access if you haven&#8217;t heard of it. For this to be done, ones short term memory and organizing of stuff inside brain should be very good. I&#8217;ve personally experienced good short term memory &amp; relatively poor long term memory in my brain wiring.</p>
<p>This is what I have to say. I&#8217;m really sorry if you don&#8217;t understand what I&#8217;m trying to say. I just wanted to put these thoughts out and free up my brain. BTW did my post get any good position in your priority list? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/342/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=342&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2009/02/05/are-geeks-really-multitasking/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
	</channel>
</rss>