<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Prove that real but not virtual &#187; Hacks</title>
	<atom:link href="http://chanux.wordpress.com/category/hacks/feed/" rel="self" type="application/rss+xml" />
	<link>http://chanux.wordpress.com</link>
	<description>Things a random guy manages to write.</description>
	<lastBuildDate>Fri, 18 Dec 2009 15:12:00 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='chanux.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<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 &#187; Hacks</title>
		<link>http://chanux.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://chanux.wordpress.com/osd.xml" title="Prove that real but not virtual" />
		<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 so [...]<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 :) . 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 class="brush: 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 class="brush: 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 class="brush: 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>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 :P  ]<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 ;) . 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 :P .</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>Drop-manage yourself, the wiki way.</title>
		<link>http://chanux.wordpress.com/2008/12/18/gtdtiddlywiki-dropbox/</link>
		<comments>http://chanux.wordpress.com/2008/12/18/gtdtiddlywiki-dropbox/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 11:09:56 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[computing+Life]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=293</guid>
		<description><![CDATA[I am really good at procrastinating, I forget little things so easily, I have N.A.D.D and I work on specific projects. So in order to make my life a liiitle bit hassle free, I was looking for a ToDo manager tool. First I found Tiddlybackpack which had a dead simple interface but unfortunatley didn&#8217;t work [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=293&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I am really good at procrastinating, I forget little things so easily, I have <a href="http://www.randsinrepose.com/archives/2003/07/10/nadd.html">N.A.D.D</a> and I work on specific <a href="http://www.randsinrepose.com/archives/2007/11/11/the_nerd_handbook.html">projects</a>. So in order to make my life a liiitle bit hassle free, I was looking for a ToDo manager tool. First I found <a href="http://www.tiddlybackpack.com/">Tiddlybackpack</a> which had a dead simple interface but unfortunatley didn&#8217;t work with Firefox on Gnu/Linux. Then I found <a href="http://monkeygtd.tiddlyspot.com/">MonkeyGTD</a> which looked too complex for my needs &amp; then I checked <a href="http://www.giffmex.org/tiddlydu2.html">tiddlydu2</a>. However what I use now is <a href="http://www.checkettsweb.com/tw/gtd_tiddlywiki.htm">GTDTiddlyWiki</a> which is even simpler. It&#8217;s not as simple as tiddlybackpack but it&#8217;s a decent GTD tool which would fit anyones needs. May be you have already realized that these tools are based on <a href="http://www.tiddlywiki.org/wiki/Main_Page">tiddlywiki</a>.</p>
<p>Yes you have to learn a bit before you start to actually use any Tiddly based GTD/ToDo tool. I found a good guide <a href="http://lifehacker.com/software/getting-things-done/get-organized-with-gtdtiddlywiki-210354.php">here</a>.</p>
<p>You only have to download one single .html file to start working with any of those tiddly GTD tools. Once you save the .html file to somewhere on your computer just open it &amp; start managing your todos. You can put it on a flash drive &amp; take it anywhere with you. Or you can put it in your email account as an attachment. You can put it on your web server too. But hey&#8230; what I do is way cooler 8)  . I &#8216;drop it like it&#8217;s hot&#8217; :D .</p>
<p>I use this cool tool <a href="http://getdrobox.com">Dropbox</a> to sync my GTD/ToDo list. I put all my GTD/Todo stuff in to one directory called GTD and just created a symlink from Dropbox directory to GTD. tada. that&#8217;s all. [for now I have all the GTD tools I mentioned before]. Heres how to create the symlink.</p>
<p>$ ln -s -T /path/to/GTD/directory ~/Dropbox/GTD  [Read man page of ln or check <a href="http://wiki.getdropbox.com/TipsAndTricks/SyncOtherFolders">here</a>.]</p>
<p>(You can still put GTD tools in Dropbox directory itself. But you know I&#8217;m mad :) )</p>
<p>Now I can use my todo list when I&#8217;m offline, Dropbox will sync it for me with the dropbox on web when I&#8217;m online. So that I can use my todo manager from anywhere through Dropbox web interface. (for that you have to untick &#8220;Hide editing features when viewed over HTTP&#8221; option in advanced options).</p>
<p>Though I haven&#8217;t actually tried yet, Dropbox can sync through multiple computers too :) and it means you can have your todo list on Your Desktop computer, laptop or office computer, so easily sinced . And also I can share my files with friends trogh Dropbox, todo list can be shared too ;) .</p>
<p>Hope you make your life more manged with thses tools. Here goes the &#8216;cherry on top&#8217;, &#8220;Make your GTDTiddlyWiki your hompage&#8221;.</p>
<p>PS: If you wonder what GTD stands for, it&#8217;s Get Things Done :) .</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/293/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=293&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2008/12/18/gtdtiddlywiki-dropbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
		<item>
		<title>Use Portable Firefox profile from GNU/Linux.</title>
		<link>http://chanux.wordpress.com/2008/02/09/use-portable-firefox-profile-from-gnulinux/</link>
		<comments>http://chanux.wordpress.com/2008/02/09/use-portable-firefox-profile-from-gnulinux/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 08:53:02 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Portable Firefox]]></category>
		<category><![CDATA[Profiles]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/?p=164</guid>
		<description><![CDATA[
New update available HERE

This was a big headache for me. Portable Firefox is a great piece of work but I couldn&#8217;t experience it&#8217;s ease with my OS love GNU/Linux (there is Gnu/Linux installed in our campus). So the bad old hacker in me wanted some way to make it happen. Even after few Googlings, didn&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=164&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><blockquote>
<p style="padding-left:30px;"><strong><span style="color:#ff0000;">New update available <a href="http://chanux.wordpress.com/2008/05/22/portable-fx-gnu-linux-2/">HERE</a></span></strong></p>
</blockquote>
<p>This was a big headache for me. Portable Firefox is a great piece of work but I couldn&#8217;t experience it&#8217;s ease with my OS love GNU/Linux (there is Gnu/Linux installed in our campus). So the bad old hacker in me wanted some way to make it happen. Even after few Googlings, didn&#8217;t find a How-to to do this. So I thought of hacking it for myself. This is what I got ultimately. Once thinngs are ready it takes maximum 4 easy steps(2 steps are optional). So let&#8217;s fire it up.</p>
<p>Hope You got <a href="http://portableapps.com/apps/internet/firefox_portable">Portable Firefox</a> on your USB stick.</p>
<p>What you have to do is adding few lines in to profiles.ini file. To make it bit easy for you I have created fxp.txt file for you.<br />
Download &amp; edit <a href="http://www.box.net/shared/10opvvns4c">fxp.txt</a> :</p>
<p><strong>[Profile1]<br />
Name=portable<br />
IsRelative=0<br />
Path=/media/disk/FirefoxPortable/App/DefaultData/profile</strong></p>
<p><span style="color:#ff0000;">Critical update:</span> You better use</p>
<p><strong>Path=/media/disk/FirefoxPotable/Data/profile </strong>to get the same profile on Window$ and GNU/Linux.</p>
<p><strong>Name=</strong><br />
You can use any string made of letters &amp; numbers for this. Make sure the name you use is unique for your profile.ini file.<br />
<strong>IsRelative=0</strong><br />
This is nothing you have to deal with.<br />
<strong>Path=</strong><br />
This is the exact path to portable Firefox profile folder [what you see on the address bar when you browse in to profile folder].</p>
<p>And remember to change [Profile1] to the appropriate profile number according to the profile.ini file if necessary. The very first line of fxp.txt is empty. Please remain it unchanged to keep profiles.ini tidy &amp; headacheless.</p>
<p>Now open a terminal &amp; put<br />
<strong>cat &gt;&gt; /path/to/profiles.ini /path/to/fxp.txt</strong></p>
<p>ex: cat &gt;&gt; /home/chanux/.mozilla/firefox/profiles.ini /media/flashdrive/fxp.txt</p>
<p>this will append the content of fxp.txt in to profiles.ini. Ofcourse you can do this with GUI lameware with more pain in back. if you like loads of clicks &amp; copy &amp; pastes go that way.</p>
<p>You&#8217;ll find profile.ini at<br />
<strong>~/.mozilla/firefox</strong></p>
<p>well it&#8217;s the home folder :<br />
ex: /home/chanux/.mozilla/firefox/profile.ini</p>
<p>once you update the profile.ini file you are ready to feel the home on the road.</p>
<p>Type <strong>firefox -ProfileManager</strong> in to the terminal or &#8220;run command&#8221; box. If you prefer terminal, you have to keep it open as long as you want to use firefox. Once you get profile manager box, choose your portable profile &amp; rejoice.</p>
<p><strong><em>The four steps in brief:</em> </strong></p>
<p><strong>Check profiles.ini<br />
Edit profiles.ini if needed.<br />
Append fxp.txt to profiles.ini<br />
Start firefox through profile manager.</strong></p>
<p>Update: Make sure Firefox is closed when you try firefox -ProfileManager. I did dumbness &amp; <a href="http://twitter.com/chanux">Twittered</a> too. <a href="http://twitter.com/seejay">Seejay</a> reminded me to close Fx :D</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/chanux.wordpress.com/164/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/chanux.wordpress.com/164/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=164&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2008/02/09/use-portable-firefox-profile-from-gnulinux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>
	</item>
		<item>
		<title>Add Twitter &amp; Facebook status updates to your WordPress(.com) blog.</title>
		<link>http://chanux.wordpress.com/2007/11/30/add-twitter-facebook-status-updates-to-your-wordpresscom-blog/</link>
		<comments>http://chanux.wordpress.com/2007/11/30/add-twitter-facebook-status-updates-to-your-wordpresscom-blog/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 01:33:40 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[integrate]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/2007/11/30/add-twitter-facebook-status-updates-to-your-wordpresscom-blog/</guid>
		<description><![CDATA[
Update(07.04.09):WordPress now has a Twitter widget.
Updated this post with new images &#38; steps [17 Dec 2008].

We do love WordPress(WP) so much even though we lack Javascript support. If you ever wanted to add your Twitter updates on your wordpress.com blog, here&#8217;s a simple way to just get the thing done.
First, Go to your Twitter page [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=153&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Ftech_deals%2FAdd_Twitter_Facebook_status_updates_to_your_WordPress_com_blog' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<blockquote><p>Update(07.04.09):WordPress now has a <a href="http://en.blog.wordpress.com/2009/03/26/twitter-widget/">Twitter widget</a>.</p>
<p style="text-align:center;"><span style="color:#800000;"><strong>Updated this post with new images &amp; steps [17 Dec 2008].<br />
</strong></span></p></blockquote>
<p>We do love WordPress(WP) so much even though we lack Javascript support. If you ever wanted to add your Twitter updates on your wordpress.com blog, here&#8217;s a simple way to just get the thing done.</p>
<h4><strong>First, Go to your Twitter page &amp; retrieve your Twitter RSS address &amp; copy-paste it on &#8230;err..a text file ;) .</strong></h4>
<p>In Your Twitter Home page at the bottom left corner there&#8217;s a button named RSS.  <img src="http://i233.photobucket.com/albums/ee5/rochellemax/1twitter-RSS.jpg" border="2" alt="Twitter-RSS" /></p>
<p>[If You use Firefox just right click on the RSS button &amp; choose 'copy Link location'.]</p>
<p>I normally Burn my feeds with <a href="http://feedburner.com">feedburner</a>. But I had problems burning Twitter feed. There is a <a href="http://feedvalidator.org/check.cgi?url=http%3A%2F%2Ftwitter.com%2Fstatuses%2Fuser_timeline%2F783214.rss">validation problem</a> in Twitter RSS. In this case you can use plain Twitter RSS address.</p>
<p>You can have a wide variety of feeds with <a href="http://friendfeed.com">Friendfeed.com</a>. You can get twitter feed through friendfeed. And also mixup other social networks into one feed easily with Friendfeed. To get a Twitter feed through Friendfeed just replace &#8216;<span style="color:#ff0000;">chanux</span>&#8216; with your Friendfeed name in following URL. Make sure you&#8217;ve added Twitter on friendfeed.</p>
<p>http://friendfeed.com/<span style="color:#ff0000;">chanux</span>?service=twitter&amp;format=atom [you can burn this feed]</p>
<h4><strong>Then find your Facebook &#8216;My Status&#8217; RSS feed &amp; copy it down too.</strong></h4>
<ul>
<li>Make sure you are logged in to Facebook &amp; <a href="http://www.facebook.com/minifeed.php?filter=11">follow this link</a> to your Facebook Minifeed page.</li>
</ul>
<ul>
<li>And look for following feed link on minifeed page &amp; save the link address.</li>
</ul>
<p><img src="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/minifeed.png" border="0" alt="goto_widgets" /></p>
<p>You can get your Facebook Status FEED address there. Your Feed address would look similar to this. http://www.facebook.com/feeds/status.php?id=#########&amp; viewer=#########&amp;key=##########&amp;format=rss20</p>
<h4><strong>Now the WordPress stuff.</strong></h4>
<ul>
<li>Now go to widgets page in your wordpress admin pages.</li>
</ul>
<p><img src="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/gotowidgets.png" border="0" alt="goto_widgets" /></p>
<ul>
<li>Add an RSS widget.</li>
</ul>
<p><img src="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/add.png" border="0" alt="add_rss_widget" width="275" height="189" /></p>
<ul>
<li>Choose to edit the widget.</li>
</ul>
<p><img src="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/edit.png" border="0" alt="add_widget" width="300" height="253" /></p>
<ul>
<li>Paste the RSS address &amp; choose a title for the widget. Select number of items to display from drop down box (5 is decent).  click done.</li>
</ul>
<p><img src="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/widget.png" border="0" alt="edit_rss_widget" width="450" height="332" /></p>
<ul>
<li>Do not forget to Save changes :)</li>
</ul>
<p><img src="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/savechanges.png" border="0" alt="save_changes" /></p>
<p>You can add Twitter and/or Facebook feed address in your sidebar like this.</p>
<p>Hope This tutorial is helpful. If you like, consider following <a href="http://twitter.com/chanux">me on Twitter</a> :) .  All Images are uploaded on <a href="http://www.photobucket.com">PhotBucket</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/chanux.wordpress.com/153/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/chanux.wordpress.com/153/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=153&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2007/11/30/add-twitter-facebook-status-updates-to-your-wordpresscom-blog/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>

		<media:content url="http://i233.photobucket.com/albums/ee5/rochellemax/1twitter-RSS.jpg" medium="image">
			<media:title type="html">Twitter-RSS</media:title>
		</media:content>

		<media:content url="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/minifeed.png" medium="image">
			<media:title type="html">goto_widgets</media:title>
		</media:content>

		<media:content url="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/gotowidgets.png" medium="image">
			<media:title type="html">goto_widgets</media:title>
		</media:content>

		<media:content url="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/add.png" medium="image">
			<media:title type="html">add_rss_widget</media:title>
		</media:content>

		<media:content url="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/edit.png" medium="image">
			<media:title type="html">add_widget</media:title>
		</media:content>

		<media:content url="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/widget.png" medium="image">
			<media:title type="html">edit_rss_widget</media:title>
		</media:content>

		<media:content url="http://i228.photobucket.com/albums/ee156/chanux/fb_n_twitter_on_wp/savechanges.png" medium="image">
			<media:title type="html">save_changes</media:title>
		</media:content>
	</item>
		<item>
		<title>Smileys, Smileys, Emoticons</title>
		<link>http://chanux.wordpress.com/2007/09/01/pidgin-smileys/</link>
		<comments>http://chanux.wordpress.com/2007/09/01/pidgin-smileys/#comments</comments>
		<pubDate>Sat, 01 Sep 2007 17:11:09 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[emoticons]]></category>
		<category><![CDATA[IM]]></category>
		<category><![CDATA[messenger]]></category>
		<category><![CDATA[Pidgin]]></category>
		<category><![CDATA[smileys]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/2007/09/01/pidgin-smileys/</guid>
		<description><![CDATA[Have you ever been wondering how to get more smileys/emoticons to express yourself in IM sessions? I don&#8217;t know about you but  me. Once I fell in love with Pidgin, a cute FOSS solution for instant messaging, I realized that the answer is just beyond a little hack. So I worked it out.
I mixed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=132&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Have you ever been wondering how to get more smileys/emoticons to express yourself in IM sessions? I don&#8217;t know about you but  me. Once I fell in love with<a href="http://www.pidgin.im"> Pidgin</a>, a cute FOSS solution for instant messaging, I realized that the answer is just beyond a little hack. So I worked it out.</p>
<p>I mixed up all emoticons available in Pidgin &amp; created a smiley theme named &#8220;Soup&#8221;. Then gave it to my mad friends who I waste time on IM with. Now we all having the fun &amp; complications of a-hell-lot-of smileys :). I&#8217;m sure we&#8217;ll go back to the default theme soon but I thought sharing would help 3 more phreaks out there.</p>
<p><strong>So here&#8217;s how to get it done.</strong><br />
1. Download soup.zip file <a href="http://www.box.net/shared/6zm72yjj5n">HERE</a> &amp; extract it.<br />
2. copy it in to Pidgin Smileys directory</p>
<p>Windows    &gt; C:\Program Files\Pidgin\pixmaps\pidgin\emotes<br />
GNU/Linux  &gt; /home/chanux/.purple/smileys (replace chanux with your user name)<br />
or &gt; /usr/share/pixmaps/pidgin/emotes</p>
<p>3. Select the theme &#8220;Soup&#8221; from Tools&gt;Preferences&gt;Smiley themes on Pidgin.</p>
<p>The theme is made to work with Yahoo protocol. If you are using AIM,MSN,QQ or ICQ&#8230;..<br />
1.Open the file &#8216;theme&#8217; located in extracted &#8217;soup&#8217; folder with your favorite text editor.<br />
2.Find [Yahoo] &amp; replace it with the name of your IM protocol.<br />
ex- [AIM] , [MSN] , [QQ] , [ICQ]</p>
<p>If you feel you are missing Good old yahoo default smileys Get Y!old theme <a href="http://www.box.net/shared/ixu5uc9djv">HERE.</a></p>
<p>Update : New version of Y!old, which works well with new versions of Pidgin is, Y!Emos is <a href="http://www.box.net/shared/zpmmsa6063">HERE</a>.</p>
<p>PS- After all these things the smiley window takes 2-3 seconds to open.<br />
I think you can understand that your friends must have SOUP installed &amp; selected to have the fun.</p>
<address>Disclaimer- Dumb me &amp; all my dumb friends did this &amp; it works just fine. If you are dumber enough to get problems with this just don&#8217;t try this or any kind of hacks. Any kind of a damage you do to your system trying this hack happens only because you are an extreme fool. SO don&#8217;t blame me. Go infront of a mirror instead. :twisted:</address>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/chanux.wordpress.com/132/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/chanux.wordpress.com/132/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=132&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2007/09/01/pidgin-smileys/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>Firefox: Almost full screen</title>
		<link>http://chanux.wordpress.com/2007/01/16/firefox-almost-full-screen/</link>
		<comments>http://chanux.wordpress.com/2007/01/16/firefox-almost-full-screen/#comments</comments>
		<pubDate>Tue, 16 Jan 2007 17:49:45 +0000</pubDate>
		<dc:creator>chanux</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Hacks]]></category>

		<guid isPermaLink="false">http://chanux.wordpress.com/2007/01/16/firefox-almost-full-screen/</guid>
		<description><![CDATA[Here I am, again with a nice Firefox tweak.
Before you start to try this tut out&#8230; 

you must know how to

Install Firefox extensions
play with userChrome.css

If You dunno how to do these stuff first try my earlier Firefox tut &#62; HERE &#60;

you must have these stuff


&#8220;Personal menu&#8221; Firefox extension (Or &#8220;Tiny Menu&#8221; With &#8220;Menu edit&#8221;)  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=80&subd=chanux&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here I am, again with a nice Firefox tweak.</p>
<p><strong>Before you start to try this tut out&#8230; </strong><br />
<em><br />
you must know how to</em></p>
<ul>
<li>Install Firefox extensions</li>
<li>play with userChrome.css</li>
</ul>
<p>If You dunno how to do these stuff first try my earlier Firefox tut &gt; <a href="http://chanux.wordpress.com/2006/11/14/powerup-firy/">HERE </a>&lt;<br />
<em><br />
you must have these stuff<br />
</em></p>
<ul>
<li>&#8220;<a href="https://addons.mozilla.org/firefox/3895/">Personal menu</a>&#8221; Firefox extension (Or &#8220;Tiny Menu&#8221; With &#8220;Menu edit&#8221;)              [<a href="http://chanux.wordpress.com/2007/01/12/firefox-extensions-worth-a-look/">Learn more of these,here</a>]</li>
<li>&#8220;<a href="https://addons.mozilla.org/firefox/2552/">Toggle search</a>&#8221; extension (If you like)</li>
<li>&#8220;<a href="https://addons.mozilla.org/firefox/313/">Stop or Reload</a>&#8221; Extension (If you like)</li>
<li>These lines in your userChrome.css file</li>
</ul>
<blockquote><p>/* Remove Home button */<br />
#home-button { display: none; }</p>
<p>/*Remove magnifying glass button from search box*/<br />
.search-go-button-stack { display: none !important; }</p>
<p>/* Eliminate the throbber and its annoying movement: */<br />
#throbber-box { display: none !important; }</p>
<p>/* Remove Go button of searchbar */<br />
#go-button-stack, .search-go-button-stack { display: none !important; }</p></blockquote>
<ul>
<li>A working brain inside your head.                                                            (I don&#8217;t have any links to download this :lol: )</li>
</ul>
<p>OK, Now you are ready to &#8216;Firefox: Almost full screen&#8217;.</p>
<p>1. First Copy the lines I&#8217;ve given in to your userChrome.css file, Install the extensions I&#8217;ve mentioned &amp; restart Firefox to see what you have you done. If you don&#8217;t see any change just try another restart. (If that also doesn&#8217;t help, just<br />
forget this tut ;) )</p>
<p>2. Right-Click on &#8216;Menus Toolbar&#8217; or &#8216;Navigation&#8217; Toolbar &amp; choose customize.Now you can drag &amp; drop items in those toolbars. Now you can drag in-out icons between toolbars &amp; &#8216;customize toolbars&#8217; window &amp; arrange icons as you wish. Find Personal menu Icon inside &#8216;customize toolbars&#8217; window &amp; drag &amp; drop it on Navigation toolbar.Now Restart &#8216;fox again.</p>
<p>3. Now tweak &#8220;Personal Menu&#8221; extension.</p>
<blockquote><p>You can add Only the menu&#8217;s you like;in to your personal menu. If you are not sure what you really need, just add all default stuff in to your personal menu.<br />
[Tools &gt; Addons &gt; Extensions &gt; Personal Menu &gt; Options &gt; Edit menu/Others.]Now you can find all Menus in handy personal menu button.</p></blockquote>
<p>4. Right-Click on Menus toolbar &amp; uncheck Menus toolbar option.</p>
<p align="center">      <font color="#ff0000">[!!! Check &amp; recheck for Personal Menu button on Navigation toolbar &amp; make  -sure that all Menus you need are inside it, before you do this.]</font></p>
<p align="left"> 5. Here&#8217;s the last step. Press F11 on Function keys &amp; see what happens. If you do &#8216;Firefox: Almost full screen&#8217; You are done.</p>
<p align="left">&nbsp;</p>
<p align="left"><a href="http://www.freeimagehosting.net/uploads/87234b37a2.jpg">Here&#8217;s My Firefox Window After this!</a></p>
<p align="left">Important!<br />
There&#8217;s a little risk doing this, if you are a complete new user for Firefox or new to these little Hacking tricks. So It&#8217;s better to use a different Firefox Profile to try Hacks on. <a href="http://kb.mozillazine.org/Profile_Manager">Here&#8217;s How to deal with Firefox Profiles</a>.<br />
[Creating a shortcut to Profile manager worked well for me]</p>
<p>This tut is for windoze users. Mac &amp; Linux users have the Idea now; so you can find how to do this on your platform, I dunno how to do this on other plats.<br />
[ I still can't configure my modem in Linux &amp; have no enough time to play with. So still no surfing with Linux ] Forgive me for the ignorance, my Linux/Mac friends :)  You can link your Mac/Linux tut here.just comment or mail me on chanux at gmail dot com</p>
<p>Feel Free comment you Ideas,Problems.</p>
<p><a href="http://www.digg.com"><br />
<img src="http://digg.com/img/badges/180x35-digg-button.png" alt="Digg!" height="35" width="180" /><br />
</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/chanux.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/chanux.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanux.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanux.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanux.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanux.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanux.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanux.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanux.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanux.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanux.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanux.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanux.wordpress.com&blog=345680&post=80&subd=chanux&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chanux.wordpress.com/2007/01/16/firefox-almost-full-screen/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">chanux</media:title>
		</media:content>

		<media:content url="http://digg.com/img/badges/180x35-digg-button.png" medium="image">
			<media:title type="html">Digg!</media:title>
		</media:content>
	</item>
	</channel>
</rss>