<?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>Abhinay's Blog</title>
	<atom:link href="http://abhinay.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://abhinay.wordpress.com</link>
	<description>All About GNU/Linux</description>
	<lastBuildDate>Sun, 12 Apr 2009 13:00:54 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='abhinay.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/b5c1e91bc8e14e5bbf8635f5ee6bf323?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Abhinay's Blog</title>
		<link>http://abhinay.wordpress.com</link>
	</image>
			<item>
		<title>Repair / Fix Mac HFS+ partition using Ubuntu CD</title>
		<link>http://abhinay.wordpress.com/2009/04/12/repair-fix-mac-hfs-partition-using-ubuntu-cd/</link>
		<comments>http://abhinay.wordpress.com/2009/04/12/repair-fix-mac-hfs-partition-using-ubuntu-cd/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 12:41:20 +0000</pubDate>
		<dc:creator>Abhinay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[HFS+]]></category>
		<category><![CDATA[hfsplus]]></category>
		<category><![CDATA[hfsprogs]]></category>
		<category><![CDATA[journaling]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Live CD]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Repair]]></category>
		<category><![CDATA[rescue]]></category>
		<category><![CDATA[Startup Disk Full]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Ubuntu CD]]></category>

		<guid isPermaLink="false">http://abhinay.wordpress.com/?p=100</guid>
		<description><![CDATA[This post will tell you how to repair / fix Mac HFS+ partition using Ubuntu CD (Live CD or Install CD).
What do you need to do this?
Ubuntu CD (I used Ubuntu 8.10 Desktop Edition Install/Live CD)
Mac
Internet Connection (Wired)
Few days back I had installed Debian 5.0 lenny on my MacBook. Because, I don&#8217;t have much hard [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=100&subd=abhinay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This post will tell you how to repair / fix Mac HFS+ partition using Ubuntu CD (Live CD or Install CD).</p>
<p><strong>What do you need to do this?</strong><br />
Ubuntu CD (I used Ubuntu 8.10 Desktop Edition Install/Live CD)<br />
Mac<br />
Internet Connection (Wired)</p>
<p><em>Few days back I had installed Debian 5.0 lenny on my MacBook. Because, I don&#8217;t have much hard disk capacity (only 80 GB), I had to delete the Linux partition (waiting for Ubuntu 9.04).  I used BootCamp Utility (in Mac) to delete the Linux partition. It wipes off all the linux data &amp; restores Mac partition (ex: I had 60GB Mac + 20GB Linux, After restore 80GB* Mac).<br />
I was happy that it was restored. But, the partition had errors after restores. I was not able to copy/store the any data if it exceeds 60GB on Mac, it says the Mac startup disk is full. Then I realized that the Mac file system (i.e., HFS+) had errors. Yes, the Ubuntu CD is there to rescue me. Enough story&#8230; follow this to proceed&#8230;<br />
</em></p>
<p><strong>1. Disable journaling on Mac parition before booting into Ubuntu CD</strong><br />
Use this command on your Mac terminal</p>
<blockquote>
<ul>
<li>sudo diskutil disableJournal /dev/disk0s2</li>
</ul>
</blockquote>
<p>where disk0s2 is your Mac partition (use &#8216;df&#8217; command to find out the root disk name, it should be mounted on &#8216;/&#8217;)</p>
<p><strong>2. Boot from Ubuntu CD</strong><br />
Insert the Ubuntu CD, press &#8216;C&#8217; on startup to boot from CD.</p>
<p><strong>3. Connect to Internet &amp; Install HFSprogs</strong><br />
After Boot connect to Internet, Yeah! I know the wireless won&#8217;t work now. I suggest you to connect from Wired.<br />
I assume that you are connected to Internet now.<br />
Then enable Universe packages using &#8216;Software Sources&#8217;.<br />
Then, Install hfsprogs package</p>
<blockquote><ul>
<li>
sudo apt-get install hfsprogs</li>
<ul></blockquote>
<p>This will enable you to check &amp; repair the HFS+ paritions.</p>
<p><strong>4. Check &amp; Repair</strong></p>
<p>You need to do fsck check on your Mac partition. Use fdisk command to find the Mac device.</p>
<blockquote><p>
abhinay@ubuntu:~$ fdisk -l<br />
WARNING: GPT (GUID Partition Table) detected on &#8216;/dev/sda&#8217;! The util fdisk doesn&#8217;t support GPT. Use GNU Parted.</p>
<p>Disk /dev/sda: 80.0 GB, 80026361856 bytes<br />
255 heads, 63 sectors/track, 9729 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
Disk identifier: 0&#215;00000000<br />
Device Boot      Start         End      Blocks   Id  System<br />
/dev/sda1               1        9730    78150743+  ee  GPT
</p></blockquote>
<p>using fdisk didn&#8217;t show the Main Partition of mac, It shows only one partition. The above partition sda1 is the EFI partition (boot partition).<br />
That means, /dev/sda2 is your Mac partition.</p>
<p>Perform fsck on sda2</p>
<blockquote><p>abhinay@ubuntu:~$ sudo fsck.hfsplus /dev/sda2<br />
** /dev/sda2<br />
** Checking HFS Plus volume.<br />
** Checking Extents Overflow file.<br />
** Checking Catalog file.<br />
** Checking multi-linked files.<br />
** Checking Catalog hierarchy.<br />
** Checking Extended Attributes file.<br />
** Checking volume bitmap.<br />
Volume Bit Map needs minor repair<br />
** Checking volume information.<br />
** Repairing volume.<br />
** Rechecking volume.<br />
** Checking HFS Plus volume.<br />
** Checking Extents Overflow file.<br />
** Checking Catalog file.<br />
** Checking multi-linked files.<br />
** Checking Catalog hierarchy.<br />
** Checking Extended Attributes file.<br />
** Checking volume bitmap.<br />
** Checking volume information.<br />
** The volume Macintosh HD was repaired successfully.</p></blockquote>
<p>Hurray! It is repaired now&#8230;!</p>
<p>One more last thing you &#8216;ll have to do.</p>
<p><strong>5. Enable the journaling on Mac Partition</strong><br />
use this command on Mac to enable the journal back.</p>
<blockquote><p>sudo diskutil enableJournal /dev/disk0s2</p></blockquote>
<p>You are done! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>**This worked for me!</p>
<p>Comment me if you have any troubles or suggestions. Thanks for reading my blog!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhinay.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhinay.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhinay.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhinay.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhinay.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhinay.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhinay.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhinay.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhinay.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhinay.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=100&subd=abhinay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://abhinay.wordpress.com/2009/04/12/repair-fix-mac-hfs-partition-using-ubuntu-cd/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b0b23dd6628665cfc9f40b5804b7608?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Abhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Scrolling in Gmail is slow?</title>
		<link>http://abhinay.wordpress.com/2009/02/06/scrolling-in-gmail-is-slow/</link>
		<comments>http://abhinay.wordpress.com/2009/02/06/scrolling-in-gmail-is-slow/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 18:17:03 +0000</pubDate>
		<dc:creator>Abhinay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://abhinay.wordpress.com/?p=59</guid>
		<description><![CDATA[I felt choppy when i scroll up-down in Gmail. There are two workarounds for this issue.
First thing, change your theme from Clearlooks. But, I really like clearlooks theme.
The Other one is, play with xorg.conf
Edit /etc/X11/xorg.conf
Find this Section:
Section "Device"
Identifier	"Configured Video Device"
EndSection
Add some properties &#38; change it to:
Section "Device"
Identifier	"Configured Video Device"
Driver		"intel"
Option		"AccelMethod"		"exa"
Option		"ExaNoComposite"	"true"
Option		"MigrationHeuristic"	"greedy"
EndSection
This workaround worked with Intel Graphics Card [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=59&subd=abhinay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I felt choppy when i scroll up-down in Gmail. There are two workarounds for this issue.<br />
First thing, change your theme from Clearlooks. But, I really like clearlooks theme.<br />
The Other one is, play with xorg.conf<br />
Edit /etc/X11/xorg.conf<br />
Find this Section:</p>
<pre>Section "Device"
Identifier	"Configured Video Device"
EndSection</pre>
<p>Add some properties &amp; change it to:</p>
<pre>Section "Device"
Identifier	"Configured Video Device"
Driver		"intel"
Option		"AccelMethod"		"exa"
Option		"ExaNoComposite"	"true"
Option		"MigrationHeuristic"	"greedy"
EndSection</pre>
<p>This workaround worked with Intel Graphics Card Users. For non Intel Graphics Card Users trying the above is experimental.</p>
<p>Do Logout &amp; Login. This should solve the choppy scrolling issue in Gmail.</p>
<p>=<a href="http://ubuntuforums.org/showthread.php?t=708928">http://ubuntuforums.org</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhinay.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhinay.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhinay.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhinay.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhinay.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhinay.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhinay.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhinay.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhinay.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhinay.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=59&subd=abhinay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://abhinay.wordpress.com/2009/02/06/scrolling-in-gmail-is-slow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b0b23dd6628665cfc9f40b5804b7608?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Abhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Convention on &#8220;Freedom &amp; Software&#8221; &#8211; September 21st, 2008</title>
		<link>http://abhinay.wordpress.com/2008/09/15/convention-on-freedoma-software-september-21st-2008/</link>
		<comments>http://abhinay.wordpress.com/2008/09/15/convention-on-freedoma-software-september-21st-2008/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 14:49:08 +0000</pubDate>
		<dc:creator>Abhinay</dc:creator>
				<category><![CDATA[convention]]></category>
		<category><![CDATA[21st]]></category>
		<category><![CDATA[chennai]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[invite]]></category>
		<category><![CDATA[register]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[speakers]]></category>

		<guid isPermaLink="false">http://abhinay.wordpress.com/?p=55</guid>
		<description><![CDATA[Dear All,
We are cordially inviting you to attend the convention on “Freedom &#38; Software”. The convention will be attended by IT Professionals, Academicians, Researchers, Entrepreneurs and Engineering Students.
Venue:
Russian Cultural Center
27, Kasthuri Ranga Road
Landmark: Near Cathedral Road
Chennai 600018
Time: 21st of September at 1600 hours
Register yourself at http://freedomandsoftware.info
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=55&subd=abhinay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Dear All,</p>
<p>We are cordially inviting you to attend the convention on <strong>“Freedom &amp; Software”</strong>. The convention will be attended by IT Professionals, Academicians, Researchers, Entrepreneurs and Engineering Students.</p>
<p>Venue:<br />
Russian Cultural Center<br />
27, Kasthuri Ranga Road<br />
Landmark: Near Cathedral Road<br />
Chennai 600018</p>
<p>Time: 21st of September at 1600 hours</p>
<p>Register yourself at <a href="http://freedomandsoftware.info/" target="_blank">http://freedomandsoftware.info</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/abhinay.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/abhinay.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhinay.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhinay.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhinay.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhinay.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhinay.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhinay.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhinay.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhinay.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhinay.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhinay.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=55&subd=abhinay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://abhinay.wordpress.com/2008/09/15/convention-on-freedoma-software-september-21st-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b0b23dd6628665cfc9f40b5804b7608?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Abhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Deja Vu Sans Condensed is working in Firefox</title>
		<link>http://abhinay.wordpress.com/2008/08/11/deja-vu-sans-condensed-is-working-in-firefox/</link>
		<comments>http://abhinay.wordpress.com/2008/08/11/deja-vu-sans-condensed-is-working-in-firefox/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 21:06:09 +0000</pubDate>
		<dc:creator>Abhinay</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[dejavu]]></category>
		<category><![CDATA[fixed]]></category>
		<category><![CDATA[font]]></category>

		<guid isPermaLink="false">http://abhinay.wordpress.com/?p=48</guid>
		<description><![CDATA[
It was too annoying that i was not getting Deja Vu Sans Condensed font for firefox itself, whereas this font is working with other applications in Gnome. I was getting Sans font instead in Firefox. After gooooogling (too long) i got a workaround for this.
Just add this lines to userChrome.css (create a new file if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=48&subd=abhinay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="code">
<p class="code">It was too annoying that i was not getting Deja Vu Sans Condensed font for firefox itself, whereas this font is working with other applications in Gnome. I was getting Sans font instead in Firefox. After gooooogling (too long) i got a workaround for this.</p>
<p class="code">Just add this lines to userChrome.css (create a new file if it is not there), create this file in ~/.mozilla/firefox/(profile)/chrome folder.</p>
<p class="code">* {</p>
<p class="code">font-family: &#8220;Deja Vu Sans Condensed&#8221;;</p>
<p class="code">}</p>
<p class="code">
<p class="code">Before:</p>
<div id="attachment_51" class="wp-caption alignnone" style="width: 310px"><a href="http://abhinay.files.wordpress.com/2008/08/firefox-sans.png"><img class="size-medium wp-image-51" src="http://abhinay.files.wordpress.com/2008/08/firefox-sans.png?w=300&#038;h=214" alt="firefox sans screenshot" width="300" height="214" /></a><p class="wp-caption-text">Firefox with Sans Font - Looks Ugly</p></div>
<p class="code">
<p class="code">After:</p>
<div id="attachment_49" class="wp-caption alignnone" style="width: 309px"><a href="http://abhinay.files.wordpress.com/2008/08/firefox-deja.png"><img class="size-medium wp-image-49" src="http://abhinay.files.wordpress.com/2008/08/firefox-deja.png?w=299&#038;h=245" alt="firefox deja vu font bug fixed" width="299" height="245" /></a><p class="wp-caption-text">Firefox with Deja Vu Font Working - Looks Good</p></div>
<p>I love this font <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>For storyline please read this : <a href="http://www.jasonlefkowitz.net/blog1archive/2007/02/howto_pretty_up.html" target="_blank">http://www.jasonlefkowitz.net/blog1archive/2007/02/howto_pretty_up.html</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/abhinay.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/abhinay.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhinay.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhinay.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhinay.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhinay.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhinay.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhinay.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhinay.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhinay.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhinay.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhinay.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=48&subd=abhinay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://abhinay.wordpress.com/2008/08/11/deja-vu-sans-condensed-is-working-in-firefox/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b0b23dd6628665cfc9f40b5804b7608?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Abhi</media:title>
		</media:content>

		<media:content url="http://abhinay.files.wordpress.com/2008/08/firefox-sans.png?w=300" medium="image">
			<media:title type="html">firefox sans screenshot</media:title>
		</media:content>

		<media:content url="http://abhinay.files.wordpress.com/2008/08/firefox-deja.png?w=299" medium="image">
			<media:title type="html">firefox deja vu font bug fixed</media:title>
		</media:content>
	</item>
		<item>
		<title>GNOME with openbox window manager</title>
		<link>http://abhinay.wordpress.com/2008/08/10/gnome-with-openbox-window-manager/</link>
		<comments>http://abhinay.wordpress.com/2008/08/10/gnome-with-openbox-window-manager/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 13:23:03 +0000</pubDate>
		<dc:creator>Abhinay</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[openbox]]></category>
		<category><![CDATA[window]]></category>
		<category><![CDATA[wm]]></category>

		<guid isPermaLink="false">http://abhinay.wordpress.com/?p=40</guid>
		<description><![CDATA[Openbox is lightweight window manager. I installed it on my gentoo, i really liked it. Openbox starts in blink of an eye my gentoo.Openbox just takes seconds to install in any distro. It comes around 500 Kb download size. I have been using GNOME environment in Ubuntu. I feel like GNOME is too slow in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=40&subd=abhinay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Openbox is lightweight window manager. I installed it on my gentoo, i really liked it. Openbox starts in blink of an eye my gentoo.Openbox just takes seconds to install in any distro. It comes around 500 Kb download size. I have been using GNOME environment in Ubuntu. I feel like GNOME is too slow in my system. I installed openbox and used with gnome session. It is really faster than complete GNOME session. You can change the session from the GDM option menu. Select, Openbox with GNOME session. You&#8217;ll get gnome panel, nautilus and other gnome apps with faster openbox window manager without losing the most of the gnome look &amp; features.  Openbox rocks !!!</p>
<p>I did,<br />
<code>sudo aptitude install openbox</code></p>
<p>and here is the screenshot for you <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div id="attachment_43" class="wp-caption alignnone" style="width: 520px"><a href="http://abhinay.files.wordpress.com/2008/08/openbox-rox.png"><img class="size-full wp-image-43" src="http://abhinay.files.wordpress.com/2008/08/openbox-rox.png?w=510&#038;h=318" alt="Openbox in Gnome Screenshot - Openbox Rox" width="510" height="318" /></a><p class="wp-caption-text">Openbox in Gnome Screenshot - Openbox Rox | Running Urxvt, Scrot, Gnome-panel, Conky, Nautilus, Xcompmgr and some applets</p></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/abhinay.wordpress.com/40/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/abhinay.wordpress.com/40/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhinay.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhinay.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhinay.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhinay.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhinay.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhinay.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhinay.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhinay.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhinay.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhinay.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=40&subd=abhinay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://abhinay.wordpress.com/2008/08/10/gnome-with-openbox-window-manager/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b0b23dd6628665cfc9f40b5804b7608?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Abhi</media:title>
		</media:content>

		<media:content url="http://abhinay.files.wordpress.com/2008/08/openbox-rox.png" medium="image">
			<media:title type="html">Openbox in Gnome Screenshot - Openbox Rox</media:title>
		</media:content>
	</item>
		<item>
		<title>you can install gentoo when ubuntu/linux running</title>
		<link>http://abhinay.wordpress.com/2008/07/17/install-gentoo-when-other-linux-running/</link>
		<comments>http://abhinay.wordpress.com/2008/07/17/install-gentoo-when-other-linux-running/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 18:14:26 +0000</pubDate>
		<dc:creator>Abhinay</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[emerge]]></category>
		<category><![CDATA[gentoo macbook install ubuntu linux]]></category>
		<category><![CDATA[portage]]></category>

		<guid isPermaLink="false">http://abhinay.wordpress.com/?p=37</guid>
		<description><![CDATA[I&#8217;m gonna walkthrough the process of installing gentoo on other destro.
It requires, patients, little bit knowledge about Linux.
Prepare a partition for Gentoo
Make a separate partition for gentoo, you can do partition with gnu parted.
$ sudo parted
Lets say you have following partition table before you install gentoo,
(parted) p
Disk /dev/sda: 80.0GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Number  Start   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=37&subd=abhinay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m gonna walkthrough the process of installing gentoo on other destro.</p>
<p>It requires, patients, little bit knowledge about Linux.</p>
<p><strong>Prepare a partition for Gentoo</strong></p>
<p>Make a separate partition for gentoo, you can do partition with gnu parted.</p>
<p>$ sudo parted</p>
<p>Lets say you have following partition table before you install gentoo,</p>
<p>(parted) p</p>
<p>Disk /dev/sda: 80.0GB<br />
Sector size (logical/physical): 512B/512B<br />
Partition Table: gpt</p>
<p>Number  Start   End     Size    File system  Name                  Flags<br />
1      20.5kB  210MB   210MB   fat32        EFI system partition  boot<br />
2      2048MB  57.0GB  55.0GB  hfs+         Customer<br />
3      67.4GB  67.9GB  500MB   linux-swap<br />
4      67.9GB  80.0GB  12.1GB  ext3</p>
<p>use <em>print free </em>to print free space also,</p>
<p>(parted) print free</p>
<p>Disk /dev/sda: 80.0GB<br />
Sector size (logical/physical): 512B/512B<br />
Partition Table: gpt</p>
<p>Number  Start   End     Size    File system  Name                  Flags<br />
17.4kB  20.5kB  3.07kB  Free Space<br />
1      20.5kB  210MB   210MB   fat32        EFI system partition  boot<br />
210MB   2048MB  1838MB  Free Space<br />
2      2048MB  57.0GB  55.0GB  hfs+         Customer<br />
57.0GB  67.4GB  10.4GB  Free Space<br />
3      67.4GB  67.9GB  500MB   linux-swap<br />
4      67.9GB  80.0GB  12.1GB  ext3<br />
80.0GB  80.0GB  950kB   Free Space</p>
<p>In the my partition table you can observe that i have 10.4GB Free Space starting from 57.0GB to 67.GB.<br />
(parted) mkpart gentoo 57.0GB 67.4GB</p>
<p>Where, gentoo is just a parition name, followed by start location and end location of the new partition.</p>
<p>Now, again have a look at new parition table here,</p>
<p>(parted) p</p>
<p>Disk /dev/sda: 80.0GB<br />
Sector size (logical/physical): 512B/512B<br />
Partition Table: gpt</p>
<p>Number  Start   End     Size    File system  Name                  Flags<br />
1      20.5kB  210MB   210MB   fat32        EFI system partition  boot<br />
2      2048MB  57.0GB  55.0GB  hfs+         Customer<br />
5      57.0GB  67.4GB  10.4GB               gentoo<br />
3      67.4GB  67.9GB  500MB   linux-swap<br />
4      67.9GB  80.0GB  12.1GB  ext3</p>
<p>heh, gentoo parition is set.</p>
<p>Now <strong>make a file system</strong> (ext3),</p>
<p>$ sudo mke2fs -j /dev/sda5<br />
mke2fs 1.40.8 (13-Mar-2008)<br />
Filesystem label=<br />
OS type: Linux<br />
Block size=4096 (log=2)<br />
Fragment size=4096 (log=2)<br />
636480 inodes, 2536261 blocks<br />
126813 blocks (5.00%) reserved for the super user<br />
First data block=0<br />
Maximum filesystem blocks=2600468480<br />
78 block groups<br />
32768 blocks per group, 32768 fragments per group<br />
8160 inodes per group<br />
Superblock backups stored on blocks:<br />
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632</p>
<p>Writing inode tables: done<br />
Creating journal (32768 blocks): done<br />
Writing superblocks and filesystem accounting information: done</p>
<p>This filesystem will be automatically checked every 35 mounts or<br />
180 days, whichever comes first.  Use tune2fs -c or -i to override.</p>
<p>Lets, check with parted if the file system is successfully created.</p>
<p>$ sudo parted<br />
GNU Parted 1.7.1<br />
Using /dev/sda<br />
Welcome to GNU Parted! Type &#8216;help&#8217; to view a list of commands.<br />
(parted) p</p>
<p>Disk /dev/sda: 80.0GB<br />
Sector size (logical/physical): 512B/512B<br />
Partition Table: gpt</p>
<p>Number  Start   End     Size    File system  Name                  Flags<br />
1      20.5kB  210MB   210MB   fat32        EFI system partition  boot<br />
2      2048MB  57.0GB  55.0GB  hfs+         Customer<br />
5      57.0GB  67.4GB  10.4GB  ext3         gentoo<br />
3      67.4GB  67.9GB  500MB   linux-swap<br />
4      67.9GB  80.0GB  12.1GB  ext3</p>
<p>All set go, my gentoo parition is ready. By the way, you can use Ubuntu&#8217;s Swap parition for the same.</p>
<p>Mount the new gentoo parition,</p>
<p>$ sudo mkdir /mnt/gentoo</p>
<p>$ sudo mount /dev/sda5 /mnt/gentoo</p>
<p><strong>Get Gentoo Stage3 tarball : Using a Stage from the Internet</strong></p>
<p>$ cd /mnt/gentoo</p>
<pre><span class="code-input">You can get Stage3 tarball from here

http://www.gentoo.org/main/en/mirrors.xml</span>

Select nearest server from you. I feel Netherlands is nearest to India. So, i got from here http://mirror.muntinternet.net/pub/gentoo/releases/x86/2008.0_beta2/stages/ (i strongly recommend you not to use this link, get the latest release Stage3 tarball)
Directory structure for Stage3 tarball : releases &gt; x86 &gt; latest_version (Ex: 2008.0_beta2) &gt; stages &gt; Download file which has this format - stage3-x86-GENTOO_VERSION.tar.bz2 (Ex: <strong>stage3-x86-2008.0_beta2.tar.bz2</strong>)</pre>
<p>Here is the Direct link : http://mirror.muntinternet.net/pub/gentoo/releases/x86/2008.0_beta2/stages/stage3-x86-2008.0_beta2.tar.bz2 ( as i said it is always recommended you not to use this link, get the latest version of stage3 tarball ).</p>
<p>Make sure, you download stage3 tarball to /mnt/gentoo directory. Then extract tarball,</p>
<p># tar xvjpf stage3-*.tar.bz2</p>
<p>It&#8217;ll take a few seconds to extract. Read the tar manual page for tar options, Make sure you don&#8217;t miss any options from above.</p>
<p>Gentoo Portage</p>
<p>Also download gentoo portage snapshot from the mirrors,You can find it in the snapshot folder (http://mirror.muntinternet.net/pub/gentoo/snapshots/)</p>
<p>Download <strong>portage-latest.tar.bz2</strong> file to /mnt/gentoo.</p>
<p>Extract the Portage to /mnt/gentoo/usr ,</p>
<pre><span class="code-input">tar xvjf /mnt/gentoo/portage-latest.tar.bz2 -C /mnt/gentoo/usr</span>

<strong>make.conf
</strong>
Set CFLAGS, CXXFLAGS

CFLAGS="-O2 -march=nocona -pipe"
CXXFLAGS="${CFLAGS}"<strong>

</strong>also add these lines to make.conf<strong>
</strong>MAKEOPTS="-j3"

VIDEO_CARDS="i810 vesa"

INPUT_DEVICES="keyboard mouse synaptics evdev"

<strong>Chrooting</strong>

Before Chrooting into gentoo,
Copy DNS info
# cp -L /etc/resolv.conf /mnt/gentoo/etc/

Mount proc
# mount -t proc none /mnt/gentoo/proc

Mount All Devices to gentoo
# mount -o bind /dev /mnt/gentoo/dev

Also, add these lines to make.conf file

GENTOO_MIRRORS="http://gentoo.cites.uiuc.edu/pub/gentoo/ \
                http://gentoo.osuosl.org/ \
                http://gentoo.chem.wisc.edu/gentoo/"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"

Now enter into the new (Gentoo) Environment.

# <span class="code-input">chroot /mnt/gentoo /bin/bash</span>
# <span class="code-input">env-update</span>
&gt;&gt; Regenerating /etc/ld.so.cache...
# <span class="code-input">source /etc/profile</span>
# <span class="code-input">export PS1="(chroot) $PS1"

Update the portage tree...
# emerge --sync
</span>
emerge gentoo-source

Apply mactel patches to the kernel, if you are using MacBook.

And the rest of the things are similar.

Resources:
gentoo-wiki.org
gentoo handbook
forums.gentoo.org
http://google.com/searchq?=gentoo+macbook</pre>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/abhinay.wordpress.com/37/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/abhinay.wordpress.com/37/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhinay.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhinay.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhinay.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhinay.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhinay.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhinay.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhinay.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhinay.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhinay.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhinay.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=37&subd=abhinay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://abhinay.wordpress.com/2008/07/17/install-gentoo-when-other-linux-running/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b0b23dd6628665cfc9f40b5804b7608?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Abhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Raaga.com in Linux</title>
		<link>http://abhinay.wordpress.com/2008/05/27/raagacom-in-linux/</link>
		<comments>http://abhinay.wordpress.com/2008/05/27/raagacom-in-linux/#comments</comments>
		<pubDate>Tue, 27 May 2008 14:07:04 +0000</pubDate>
		<dc:creator>Abhinay</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[raaga]]></category>
		<category><![CDATA[songs]]></category>

		<guid isPermaLink="false">http://abhinay.wordpress.com/?p=31</guid>
		<description><![CDATA[Hey folks, i have a good news for music lovers. I have just got a workaround to play songs from Raaga.com in Linux.
I tried with Ubuntu Hardy Heron 8.04 &#38; Firefox 3.0 b 5. I followed this article http://www.zyxware.com/articles/2008/04/27/setting-up-raaga-com-to-work-on-ubuntu-8-04-hardy-heron . Credit goes to that article.
I guess, /usr/lib/totem/gstreamer/libtotem-complex-plugin.so plugin caused a problem for raaga player. After [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=31&subd=abhinay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hey folks, i have a good news for music lovers. I have just got a workaround to play songs from <a href="http://raaga.com">Raaga.com</a> in Linux.</p>
<p>I tried with Ubuntu Hardy Heron 8.04 &amp; Firefox 3.0 b 5. I followed this article <a href="http://www.zyxware.com/articles/2008/04/27/setting-up-raaga-com-to-work-on-ubuntu-8-04-hardy-heron" target="_blank">http://www.zyxware.com/articles/2008/04/27/setting-up-raaga-com-to-work-on-ubuntu-8-04-hardy-heron</a> . Credit goes to that article.</p>
<p>I guess, /usr/lib/totem/gstreamer/libtotem-complex-plugin.so plugin caused a problem for raaga player. After removing this plugin, it was working.</p>
<p style="padding-left:30px;">This plugin, (remove this plug-in)</p>
<pre style="padding-left:30px;">Helix DNA Plugin: RealPlayer G2 Plug-In Compatible (compatible; Totem)

    File name: libtotem-complex-plugin.so
    The Totem 2.22.1 plugin handles video and audio streams.

MIME Type 	Description 	Suffixes 	Enabled
audio/x-pn-realaudio-plugin 	RealAudio document 	rpm 	Yes</pre>
<p>Here is how,</p>
<p><strong>Download the latest Realplayer</strong> from here <a href="http://forms.helixcommunity.org/helix/builds/?category=realplay-current">http://forms.helixcommunity.org/helix/builds/?category=realplay-current</a> And save it to desktop,</p>
<p><span class="caption">Select Platform: linux-2.2-libc6-gcc32-i586 &gt; RealPlayer (bin)</span></p>
<p>(Or you can also download from here &#8211; http://www.real.com/linux)</p>
<p><em><span style="color:#c0c0c0;">[ I suggest you to uninstall realplayer from your Linux if it is already installed, sudo apt-get purge realplayer ]</span></em></p>
<p><span class="caption"><strong>Install the RealPlayer,</strong><br />
</span></p>
<ul>
<li>cd Desktop/</li>
<li>chmod +x realplay-10.1.0.4350-linux-2.2-libc6-gcc32-i586.bin</li>
</ul>
<p>Here, change the<em> realplay-10.1.0.4350-linux-2.2-libc6-gcc32-i586.bin</em> with the filename that you have downloaded.</p>
<ul>
<li>sudo ./realplay-10.1.0.4350-linux-2.2-libc6-gcc32-i586.bin</li>
</ul>
<p><strong>Set Plugins,</strong></p>
<ul>
<li>cd /usr/lib/firefox-addons/plugins</li>
<li> sudo ln -s /opt/real/RealPlayer/mozilla/nphelix.xpt nphelix.xpt</li>
<li> sudo ln -s /opt/real/RealPlayer/mozilla/nphelix.so nphelix.so</li>
<li> sudo rm /usr/lib/totem/gstreamer/libtotem-complex-plugin.so</li>
</ul>
<p><strong>Restart Firefox,</strong></p>
<p>Now enjoy the music. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://raaga.com/channels/telugu/top10.asp" target="_blank">http://raaga.com/channels/telugu/top10.asp</a></p>
<p>If you still have any problems please let me know, i &#8216;ll try to help you out.</p>
<p><strong>Playing Raaga.com,</strong></p>
<p><a href="http://abhinay.files.wordpress.com/2008/05/raaga.png"><img class="aligncenter size-full wp-image-32" src="http://abhinay.files.wordpress.com/2008/05/raaga.png?w=600&#038;h=375" alt="raaga ubuntu linux " width="600" height="375" /></a></p>
<p>This is my <strong>about:plugins</strong> page on Firefox.</p>
<pre>Installed plugins
Find more information about browser plugins at mozilla.org.
Help for installing plugins is available from plugindoc.mozdev.org.
Helix DNA Plugin: RealPlayer G2 Plug-In Compatible

    File name: nphelix.so
    Helix DNA Plugin: RealPlayer G2 Plug-In Compatible version 0.4.0.4005 built with gcc 3.4.3 on Feb 25 2008

MIME Type     Description     Suffixes     Enabled
audio/x-pn-realaudio-plugin     RealPlayer Plugin Metafile     rpm     Yes
Shockwave Flash

    File name: libflashplayer.so
    Shockwave Flash 9.0 r124

MIME Type     Description     Suffixes     Enabled
application/x-shockwave-flash     Shockwave Flash     swf     Yes
application/futuresplash     FutureSplash Player     spl     Yes
Default Plugin

    File name: libnullplugin.so
    The default plugin handles plugin data for mimetypes and extensions that are not specified and facilitates downloading of new plugins.

MIME Type     Description     Suffixes     Enabled
*     All types     .*     No
Demo Print Plugin for unix/linux

    File name: libunixprintplugin.so
    The demo print plugin for unix.

MIME Type     Description     Suffixes     Enabled
application/x-print-unix-nsplugin     Demo Print Plugin for Unix/Linux     .pnt     Yes
iTunes Application Detector

    File name: librhythmbox-itms-detection-plugin.so
    This plug-in detects the presence of iTunes when opening iTunes Store URLs in a web page with Firefox.

MIME Type     Description     Suffixes     Enabled
application/itunes-plugin             Yes
Totem Web Browser Plugin 2.22.1

    File name: libtotem-basic-plugin.so
    The Totem 2.22.1 plugin handles video and audio streams.

MIME Type     Description     Suffixes     Enabled
application/x-ogg     -     ogg     Yes
application/ogg     Ogg multimedia     ogg     Yes
audio/ogg     Ogg Audio     oga     Yes
audio/x-ogg     Ogg Audio     ogg     Yes
video/ogg     Ogg Video     ogv     Yes
video/x-ogg     Ogg Video     ogg     Yes
application/annodex     -     anx     Yes
audio/annodex     -     axa     Yes
video/annodex     -     axv     Yes
video/mpeg     MPEG video     mpg, mpeg, mpe     Yes
audio/wav     WAV audio     wav     Yes
audio/x-wav     WAV audio     wav     Yes
audio/mpeg     MP3 audio     mp3     Yes
application/x-nsv-vp3-mp3     NullSoft video     nsv     Yes
video/flv     Flash video     flv     Yes
VLC Multimedia Plugin (compatible Totem 2.22.1)

    File name: libtotem-cone-plugin.so
    The Totem 2.22.1 plugin handles video and audio streams.

MIME Type     Description     Suffixes     Enabled
application/x-vlc-plugin     unknown         Yes
application/vlc     unknown         Yes
video/x-google-vlc-plugin     unknown         Yes
Windows Media Player Plug-in 10 (compatible; Totem)

    File name: libtotem-gmp-plugin.so
    The Totem 2.22.1 plugin handles video and audio streams.

MIME Type     Description     Suffixes     Enabled
application/x-mplayer2     AVI video     avi, wma, wmv     Yes
video/x-ms-asf-plugin     ASF video     asf, wmv     Yes
video/x-msvideo     AVI video     asf, wmv     Yes
video/x-ms-asf     ASF video     asf     Yes
video/x-ms-wmv     Windows Media video     wmv     Yes
video/x-wmv     Windows Media video     wmv     Yes
video/x-ms-wvx     Microsoft ASX playlist     wmv     Yes
video/x-ms-wm     ASF video     wmv     Yes
application/x-ms-wms     Windows Media video     wms     Yes
application/asx     Microsoft ASX playlist     asx     Yes
audio/x-ms-wma     Windows Media audio     wma     Yes
DivX® Web Player

    File name: libtotem-mully-plugin.so
    DivX Web Player version 1.4.0.233

MIME Type     Description     Suffixes     Enabled
video/divx     AVI video     divx     Yes
QuickTime Plug-in 7.2.0

    File name: libtotem-narrowspace-plugin.so
    The Totem 2.22.1 plugin handles video and audio streams.

MIME Type     Description     Suffixes     Enabled
video/quicktime     QuickTime video     mov     Yes
video/mp4     MPEG-4 video     mp4     Yes
image/x-macpaint     MacPaint Bitmap image     pntg     Yes
image/x-quicktime     QuickTime image     pict, pict1, pict2     Yes
video/x-m4v     MPEG-4 video     m4v     Yes
GCJ Web Browser Plugin (using IcedTea) 1.0

    File name: gcjwebplugin.so
    The GCJ Web Browser Plugin (using IcedTea) executes Java applets.

MIME Type     Description     Suffixes     Enabled
application/x-java-vm     IcedTea     class,jar     Yes
application/x-java-applet     IcedTea     class,jar     Yes
application/x-java-applet;version=1.1     IcedTea     class,jar     Yes
application/x-java-applet;version=1.1.1     IcedTea     class,jar     Yes
application/x-java-applet;version=1.1.2     IcedTea     class,jar     Yes
application/x-java-applet;version=1.1.3     IcedTea     class,jar     Yes
application/x-java-applet;version=1.2     IcedTea     class,jar     Yes
application/x-java-applet;version=1.2.1     IcedTea     class,jar     Yes
application/x-java-applet;version=1.2.2     IcedTea     class,jar     Yes
application/x-java-applet;version=1.3     IcedTea     class,jar     Yes
application/x-java-applet;version=1.3.1     IcedTea     class,jar     Yes
application/x-java-applet;version=1.4     IcedTea     class,jar     Yes
application/x-java-applet;version=1.4.1     IcedTea     class,jar     Yes
application/x-java-applet;version=1.4.2     IcedTea     class,jar     Yes
application/x-java-applet;version=1.5     IcedTea     class,jar     Yes
application/x-java-applet;version=1.6     IcedTea     class,jar     Yes
application/x-java-applet;jpi-version=1.6.0_00     IcedTea     class,jar     Yes
application/x-java-bean     IcedTea     class,jar     Yes
application/x-java-bean;version=1.1     IcedTea     class,jar     Yes
application/x-java-bean;version=1.1.1     IcedTea     class,jar     Yes
application/x-java-bean;version=1.1.2     IcedTea     class,jar     Yes
application/x-java-bean;version=1.1.3     IcedTea     class,jar     Yes
application/x-java-bean;version=1.2     IcedTea     class,jar     Yes
application/x-java-bean;version=1.2.1     IcedTea     class,jar     Yes
application/x-java-bean;version=1.2.2     IcedTea     class,jar     Yes
application/x-java-bean;version=1.3     IcedTea     class,jar     Yes
application/x-java-bean;version=1.3.1     IcedTea     class,jar     Yes
application/x-java-bean;version=1.4     IcedTea     class,jar     Yes
application/x-java-bean;version=1.4.1     IcedTea     class,jar     Yes
application/x-java-bean;version=1.4.2     IcedTea     class,jar     Yes
application/x-java-bean;version=1.5     IcedTea     class,jar     Yes
application/x-java-bean;version=1.6     IcedTea     class,jar     Yes
application/x-java-bean;jpi-version=1.6.0_00     IcedTea     class,jar     Yes
Helix DNA Plugin: RealPlayer G2 Plug-In Compatible

    File name: nphelix.so
    Helix DNA Plugin: RealPlayer G2 Plug-In Compatible version 0.4.0.633 built with gcc 4.2.3 on Apr 1 2008

MIME Type     Description     Suffixes     Enabled
audio/x-pn-realaudio-plugin     RealPlayer Plugin Metafile     rpm     Yes</pre>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/abhinay.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/abhinay.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhinay.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhinay.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhinay.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhinay.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhinay.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhinay.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhinay.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhinay.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhinay.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhinay.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=31&subd=abhinay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://abhinay.wordpress.com/2008/05/27/raagacom-in-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b0b23dd6628665cfc9f40b5804b7608?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Abhi</media:title>
		</media:content>

		<media:content url="http://abhinay.files.wordpress.com/2008/05/raaga.png" medium="image">
			<media:title type="html">raaga ubuntu linux </media:title>
		</media:content>
	</item>
		<item>
		<title>How to Ubuntu Hardy Heron on MacBook</title>
		<link>http://abhinay.wordpress.com/2008/05/24/how-to-ubuntu-hardy-heron-on-macbook/</link>
		<comments>http://abhinay.wordpress.com/2008/05/24/how-to-ubuntu-hardy-heron-on-macbook/#comments</comments>
		<pubDate>Sat, 24 May 2008 07:01:22 +0000</pubDate>
		<dc:creator>Abhinay</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://abhinay.wordpress.com/?p=29</guid>
		<description><![CDATA[I bought my dream laptop on Feb &#8216;08, i was really satisfied with the MacBook. This is my first blog after on MacBook. The MacBook came with the Mac OS X leopard. leopard was pretty awesome. That was my first play on Mac world. But, Really, i felt restricted with what mac gave me, though [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=29&subd=abhinay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I bought my dream laptop on Feb &#8216;08, i was really satisfied with the MacBook. This is my first blog after on MacBook. The MacBook came with the Mac OS X leopard. leopard was pretty awesome. That was my first play on Mac world. But, Really, i felt restricted with what mac gave me, though it gives almost what you need. Then, I installed Ubuntu on my MacBook. Now, I am feeling Free <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  on Ubuntu. I can do whatever i want.</p>
<p style="text-align:center;"><a href="http://abhinay.files.wordpress.com/2008/05/ub2.jpeg"><img class="alignnone size-full wp-image-30 aligncenter" src="http://abhinay.files.wordpress.com/2008/05/ub2.jpeg?w=600&#038;h=375" alt="Ubuntu Hardy Desktop Screenshot" width="600" height="375" /></a></p>
<p>You can flawlessly install Ubuntu on your MacBook. Let&#8217;s take a look what you need to do to install Ubuntu on MacBook.</p>
<p><span style="text-decoration:underline;"><strong>My MacBook Version :</strong></span></p>
<p>Check with your MacBook Configuration before proceeding.</p>
<p>My MacBook is Santa Rosa v3.1 (Intel Version) release with the below configuration,</p>
<p>Intel Core 2 Duo 2GHz | 1 GB RAM | 80 GB HDD | 13.1&#8242; inch screen | White Color</p>
<p>Hardware Details,</p>
<pre>$ lspci
00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 03)
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)
00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)
00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 03)
00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 03)
00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 03)
00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 03)
00:1c.4 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 5 (rev 03)
00:1c.5 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 6 (rev 03)
00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 03)
00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 03)
00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 03)
00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3)
00:1f.0 ISA bridge: Intel Corporation 82801HEM (ICH8M) LPC Interface Controller (rev 03)
00:1f.1 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) IDE Controller (rev 03)
00:1f.2 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) SATA IDE Controller (rev 03)
00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 03)
02:00.0 Network controller: Broadcom Corporation BCM4328 802.11a/b/g/n (rev 03)
03:00.0 Ethernet controller: Marvell Technology Group Ltd. Marvell Yukon 88E8058 PCI-E Gigabit Ethernet Controller (rev 13)
04:03.0 FireWire (IEEE 1394): Agere Systems FW323 (rev 61)</pre>
<p><span style="text-decoration:underline;"><strong>1. Make a room for Ubuntu :</strong></span></p>
<p>Assuming you have only Mac Leopard Installed on your MacBook.</p>
<p>We need to resize the Mac OS X ( HFS+ File System ) single partition &amp; create a free space to install Ubuntu.</p>
<p>We can do this using Ubuntu Live/Installer CD. Before resizing the Mac partition, you need to disable the journaling the Mac partition. You can do this using diskutil utility in Mac OS X, Boot into Mac and Enter the following command in terminal to do this.</p>
<pre>sudo /usr/sbin/diskutil disableJournal /</pre>
<p>You can enable journaling after installing ubuntu, replace disableJournal with enableJournal.</p>
<p>you need to Boot from the Ubuntu Hardy Heron Live/Installer CD, select start live cd option to start live session. Wait, until you see the desktop.</p>
<p>Open Gparted ( System &gt; Administration &gt; GNOME Partition ), Right click the Mac OS X partition then select resize option.</p>
<p>I thougt, 10 GB is enough for Ubuntu. You can use the remaining Mac OS X parition in Ubuntu with Read/Write Mode.</p>
<p>After you resized the partition (decrease 10 GB size atleast), Create Swap parition &amp; Logical Ext3 Partition in Free Space.</p>
<p>Resizing the partition takes 30 to 40 min depending on the disk usage. So, Please be patient until it gets resized.</p>
<p>You can start the Ubuntu Installation right away, Double click on the Install icon from the Ubuntu Desktop.</p>
<p>Follow the wizard, When you come across Installation procedure go for Manual Installation. DO NOT select Automatic Installation, automatic installation deletes all paritions on your disk to install the Ubuntu.</p>
<p>Then select the Ext3 Partition as the root partition, then proceed to the next step. Leave everything as default. Also, let it install Grub.</p>
<p>Ok now, you have done Installing Ubuntu. Now let it restart the Machine. Proceed to the next step.</p>
<p><span style="text-decoration:underline;"><strong>2. Starting Ubuntu :</strong></span></p>
<p>I assume that everything went well while installing ubuntu. Press &amp; Hold Alt/Option Key while starting the MacBook then select the parition named Windows to boot into Ubuntu Linux. It is recommened to install refit in your Mac. You can download the Mac Disk Image from here http://refit.sourceforge.net/#download . Install it in Mac OS X. Then restart the Machine. You&#8217;ll get the Options two select from Linux and Mac OS.</p>
<p>Select Linux to boot in to Ubuntu Linux. So, you have got a Ubuntu Desktop on your Machine. Wait, but lot of things doesn&#8217;t work automatically by default. Such as, No Sound, Apple Hot Keys doesn&#8217;t work, trackpad doesn&#8217;t work properly (including right-click), No Wireless, No Webcam support, No Bluetooth support. Apart from this, you need to install multimedia packages to support all audio/video formats.</p>
<p><span style="text-decoration:underline;"><strong>3. Configure Ubuntu :</strong></span></p>
<p>Most of the things work by Following this wiki :</p>
<p><a href="https://help.ubuntu.com/community/MacBook_Santa_Rosa" target="_blank">https://help.ubuntu.com/community/MacBook_Santa_Rosa</a></p>
<p>Lot of things, i didn&#8217;t cover up yet here. Reason, no time, lack of interest or i am lazy. I &#8216;ll update this post whenever i feel back.</p>
<p>later&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/abhinay.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/abhinay.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhinay.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhinay.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhinay.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhinay.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhinay.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhinay.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhinay.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhinay.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhinay.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhinay.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=29&subd=abhinay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://abhinay.wordpress.com/2008/05/24/how-to-ubuntu-hardy-heron-on-macbook/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b0b23dd6628665cfc9f40b5804b7608?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Abhi</media:title>
		</media:content>

		<media:content url="http://abhinay.files.wordpress.com/2008/05/ub2.jpeg" medium="image">
			<media:title type="html">Ubuntu Hardy Desktop Screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>UB0TU &#8211; A Simple &amp; Intelligent IRC Bot in Python</title>
		<link>http://abhinay.wordpress.com/2007/11/11/ub0tu-a-simple-intelligent-irc-bot-in-python/</link>
		<comments>http://abhinay.wordpress.com/2007/11/11/ub0tu-a-simple-intelligent-irc-bot-in-python/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 08:48:16 +0000</pubDate>
		<dc:creator>Abhinay</dc:creator>
				<category><![CDATA[bot]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://abhinay.wordpress.com/2007/11/11/ub0tu-a-simple-intelligent-irc-bot-in-python/</guid>
		<description><![CDATA[Hi to everybody, wishing you Prosperous &#38; Happy Deepavali to you &#38; to your family. I am releasing my UB0TU &#8211; a python IRC bot (pronounced as ubotu) on this Deepavali. Releasing under the Terms &#38; Conditions of GNU General Public License Version 3.
Here is the code. You can download the UB0TU source code from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=27&subd=abhinay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi to everybody, wishing you <strong>Prosperous &amp;</strong> <strong>Happy Deepavali</strong> to you &amp; to your family. I am releasing my UB0TU &#8211; a python IRC bot (pronounced as ubotu) on this Deepavali. Releasing under the Terms &amp; Conditions of GNU General Public License Version 3.</p>
<p>Here is the code. You can download the UB0TU source code from here &#8211; <a href="http://abhinay.nipl.net/garage/" target="_blank">http://abhinay.nipl.net/garage/</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/abhinay.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/abhinay.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhinay.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhinay.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhinay.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhinay.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhinay.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhinay.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhinay.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhinay.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhinay.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhinay.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=27&subd=abhinay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://abhinay.wordpress.com/2007/11/11/ub0tu-a-simple-intelligent-irc-bot-in-python/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b0b23dd6628665cfc9f40b5804b7608?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Abhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Abhinay&#8217;s Garage is opened :)</title>
		<link>http://abhinay.wordpress.com/2007/06/05/abhinays-garage-is-opened/</link>
		<comments>http://abhinay.wordpress.com/2007/06/05/abhinays-garage-is-opened/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 09:27:20 +0000</pubDate>
		<dc:creator>Abhinay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://abhinay.wordpress.com/2007/06/05/abhinays-garage-is-opened/</guid>
		<description><![CDATA[Abhinay&#8217;s Garage &#8211;  http://abhinay.nipl.net/garage

Abhinay&#8217;s Garage contains my coding, experiments, ideas &#38; Its my playground. It is inspired by Google Labs &#8211; http://labs.google.com
All are GPLed. You can download the source code, modify the source code, redistribute it.
* Garage is a repair shop where cars and trucks are serviced and repaired.
      [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=25&subd=abhinay&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Abhinay&#8217;s Garage</strong> &#8211;  <a href="http://abhinay.nipl.net/garage">http://abhinay.nipl.net/garage</a></p>
<p><a href="http://abhinay.nipl.net/garage" title="Abhinay's Garage"><img src="http://abhinay.files.wordpress.com/2007/06/garage.png" alt="garage.png" /></a></p>
<p>Abhinay&#8217;s Garage contains my coding, experiments, ideas &amp; Its my <strong>playground</strong>. It is inspired by Google Labs &#8211; <a href="http://labs.google.com" target="_blank">http://labs.google.com</a></p>
<p>All are <strong>GPLed</strong>. You can <u>download</u> the source code, <u>modify</u> the source code, <u>redistribute</u> it.</p>
<p><font color="#999999">* Garage is </font><font size="-1"><font color="#999999">a repair shop where cars and trucks are serviced and repaired.</font></font></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/abhinay.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/abhinay.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhinay.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhinay.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhinay.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhinay.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhinay.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhinay.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhinay.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhinay.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhinay.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhinay.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhinay.wordpress.com&blog=328606&post=25&subd=abhinay&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://abhinay.wordpress.com/2007/06/05/abhinays-garage-is-opened/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0b0b23dd6628665cfc9f40b5804b7608?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Abhi</media:title>
		</media:content>

		<media:content url="http://abhinay.files.wordpress.com/2007/06/garage.png" medium="image">
			<media:title type="html">garage.png</media:title>
		</media:content>
	</item>
	</channel>
</rss>