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

<channel>
	<title>Fnode Networks &#187; News</title>
	<atom:link href="http://www.fnode.com/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fnode.com</link>
	<description>A Network Systems &#38; Technology Blog</description>
	<lastBuildDate>Mon, 16 Aug 2010 11:27:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>OSPF Loopback Interface</title>
		<link>http://www.fnode.com/2009/12/ospf-loopback-interface/</link>
		<comments>http://www.fnode.com/2009/12/ospf-loopback-interface/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 14:17:21 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[OSPF Loopback]]></category>

		<guid isPermaLink="false">http://www.fnode.com/?p=547</guid>
		<description><![CDATA[OSPF Loopback interfaces are treated as a stub host and will only have a 32 bit host route on the other devices no matter how the subnet mask is entered under the OSPF network statement. We will explore how we can disable this default behaviour using a few methods. As you can see, R4 is [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>OSPF Loopback interfaces are treated as a stub host and will only have a 32 bit host route on the other devices no matter how the subnet mask is entered under the OSPF network statement.</p>
<p>We will explore how we can disable this default behaviour using a few methods.</p>
<p style="text-align: center;"><img class="size-full wp-image-548 aligncenter" title="ospf-loop" src="http://www.fnode.com/wp-content/uploads/ospf-loop.png" alt="ospf-loop" width="518" height="118" /></p>
<p>As you can see, R4 is configured with IP address 192.168.1.4 and R5 with 192.168.1.5.</p>
<p>We have loopback interfaces added with /24 subnet masks on R4 and R5</p>
<pre>R4#sh run int loop0
Building configuration...
Current configuration : 61 bytes
!
interface Loopback0
ip address 4.4.4.4 255.255.255.0
end
R4#

R5#sh run int loop 0
Building configuration...
Current configuration : 61 bytes
!
interface Loopback0
ip address 5.5.5.5 255.255.255.0
end
R5#</pre>
<p>We are running basic OSPF Configs as follows&#8230;</p>
<p><span id="more-547"></span></p>
<pre>R4#sh run | se router ospf 1
router ospf 1
router-id 4.4.4.4
log-adjacency-changes
network 4.4.4.0 0.0.0.255 area 0
network 192.168.1.0 0.0.0.255 area 0
R4#

R5#sh run | se router ospf 1
router ospf 1
router-id 5.5.5.5
log-adjacency-changes
network 5.5.5.0 0.0.0.255 area 0
network 192.168.1.0 0.0.0.255 area 0
R5#
</pre>
<p>This is what we are seeing on R4 and R5 and we expected this&#8230;</p>
<pre>R5#sh ip ro ospf
4.0.0.0/32 is subnetted, 1 subnets
O       4.4.4.4 [110/11] via 192.168.1.4, 00:12:27, Ethernet0/0
R5#

R4#sh ip ro ospf
5.0.0.0/32 is subnetted, 1 subnets
O       5.5.5.5 [110/11] via 192.168.1.5, 00:12:43, Ethernet0/0
R4#</pre>
<p>Now we will try the first method, this is to set the OSPF Network type to <strong>point-to-point</strong> under the interface configuration mode.</p>
<pre>R4#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R4(config)#int loop 0
R4(config-if)#ip ospf network point-to-point
R4(config-if)#

R5#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R5(config)#int loop0
R5(config-if)#ip ospf network point-to-point
R5(config-if)#</pre>
<p>As you can see this works, and now we are seeing the whole /24 Range&#8230;</p>
<pre>R4#sh ip ro ospf
5.0.0.0/24 is subnetted, 1 subnets
O       5.5.5.0 [110/11] via 192.168.1.5, 00:00:04, Ethernet0/0
R4#

R5#sh ip ro ospf
4.0.0.0/24 is subnetted, 1 subnets
O       4.4.4.0 [110/11] via 192.168.1.4, 00:00:18, Ethernet0/0
R5#</pre>
<p>Second option we got is to redistribute the connected network with the with the <strong>redistribute connected subnets</strong> under the Router OSPF configuration mode.</p>
<p>When it comes to redistribution, try not to go wild and it is always a good idea to create route-map to point out what you want redistributed.</p>
<pre>R4#sh ip ro ospf
5.0.0.0/24 is subnetted, 1 subnets
O E2    5.5.5.0 [110/20] via 192.168.1.5, 00:00:00, Ethernet0/0
R4#

R5#sh ip ro ospf
4.0.0.0/24 is subnetted, 1 subnets
O E2    4.4.4.0 [110/20] via 192.168.1.4, 00:00:15, Ethernet0/0
R5#
</pre>
<p>The third option we have is to use the Area Range command. To accomplish this, we will need to add a few more Loopback interfaces on R4 then we will use the <strong>area x range</strong> command to summarise it.</p>
<pre>R4#sh ip int brie | i up
Ethernet0/0    192.168.1.4     YES manual up     up
Loopback0      4.4.4.4         YES manual up     up
Loopback10     10.1.1.1        YES manual up     up
Loopback11     11.1.1.1        YES manual up     up
Loopback12     12.1.1.1        YES manual up     up
R4#</pre>
<p>When we add the loopback interfaces into OSPF, it is still showing it as a /32 Host route&#8230;</p>
<pre>R5#sh ip ro ospf
10.0.0.0/32 is subnetted, 1 subnets
O IA    10.1.1.1 [110/11] via 192.168.1.4, 00:00:22, Ethernet0/0
11.0.0.0/32 is subnetted, 1 subnets
O IA    11.1.1.1 [110/11] via 192.168.1.4, 00:00:12, Ethernet0/0
12.0.0.0/32 is subnetted, 1 subnets
O IA    12.1.1.1 [110/11] via 192.168.1.4, 00:00:12, Ethernet0/0
R5#</pre>
<p>Now, we will use the <strong>Area 1 Range</strong> command to summarise it on R4. Once it is done, we can now see the end result.</p>
<p>Note: The above Loopback networks have been added into Area 1 under the Router OFPF configuration.</p>
<pre>R5#sh ip ro ospf
O IA 8.0.0.0/5 [110/11] via 192.168.1.4, 00:00:10, Ethernet0/0
R5#
</pre>
<p>These are the three method I know of when it comes to disabling the /32 host route on OSPF Loopback Networks&#8230; <img src='http://www.fnode.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2009/12/ospf-loopback-interface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vodafone gets their hands on Apple iPhone</title>
		<link>http://www.fnode.com/2008/05/vodafone-gets-their-hands-on-apple-iphone/</link>
		<comments>http://www.fnode.com/2008/05/vodafone-gets-their-hands-on-apple-iphone/#comments</comments>
		<pubDate>Tue, 06 May 2008 10:06:42 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Vodafone gets iPhone]]></category>

		<guid isPermaLink="false">http://www.nishv.com/?p=236</guid>
		<description><![CDATA[Vodafone, one of the world’s largest mobile phone operators has finally got their hands on the 2G version of the iPhone. This means countries like Australia, the Czech Republic, Egypt, Greece, Italy, India, Portugal, New Zealand, South Africa and Turkey will all be able get a feel of the Apple iPhone. Even though it is [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Vodafone, one of the world’s largest mobile phone operators has finally got their hands on the 2G version of the iPhone. </p>
<p>This means countries like Australia, the Czech Republic, Egypt, Greece, Italy, India, Portugal, New Zealand, South Africa and Turkey will all be able get a feel of the Apple iPhone.</p>
<p>Even though it is the 2G version of the iPhone, users from most of the above countries won’t have the need to upgrade to the 3G version because it is not supported there; but  Eventually people wants to get their hands on the 3G version of the iPhone which is supposed to be out in this summer. </p>
<p>The question is, what other features is the 3G version going to have&#8230;? GPS?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2008/05/vodafone-gets-their-hands-on-apple-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One Monitor or Multiple Monitors</title>
		<link>http://www.fnode.com/2008/02/one-monitor-or-multiple-monitors/</link>
		<comments>http://www.fnode.com/2008/02/one-monitor-or-multiple-monitors/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 00:00:59 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Dual Monitor]]></category>
		<category><![CDATA[Monitor]]></category>
		<category><![CDATA[Multiple Monitors]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2008/02/23/one-monitor-or-multiple-monitors/</guid>
		<description><![CDATA[Anyone who hasn’t had the experience of using multiple monitors (in most care two), would definitely chose for one big monitor than having two. I would have done the same a year ago but that all changed after I plugged in the second monitor to my system. If you have two more screens, it would [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Anyone who hasn’t had the experience of using multiple monitors (in most care two), would definitely chose for one big monitor than having two. I would have done the same a year ago but that all changed after I plugged in the second monitor to my system.</p>
<p>If you have two more screens, it would speed up your work, and currently I move all the active screens like E-mails and IMs into one monitor and the static pages like Web Browser and other programs into other.</p>
<p>I am currently using two identical 19&#8243; Samsung monitors at the moment and still considering to upgrade them to 30&#8243; Dells&#8230; It is never enough when you get hooked into multiple monitors.</p>
<p>If you are considering on getting multiple monitors, be sure to get identical ones so it will be easy on your eyes and having identical ones would make it a lot easier to calibrate the right brightness / contrast rate etc&#8230;</p>
<p><a href="http://www.fnode.com/wp-content/uploads/screen.jpg" title="Dual Monitor"></a></p>
<p style="text-align: center"><a href="http://www.fnode.com/wp-content/uploads/screen.jpg" title="Dual Monitor"><img src="http://www.nishv.com/wp-content/uploads/screen.jpg" alt="Dual Monitor" height="261" width="480" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2008/02/one-monitor-or-multiple-monitors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Could Facebook Become The Next Microsoft? I think not!</title>
		<link>http://www.fnode.com/2007/07/could-facebook-become-the-next-microsoft-i-think-not/</link>
		<comments>http://www.fnode.com/2007/07/could-facebook-become-the-next-microsoft-i-think-not/#comments</comments>
		<pubDate>Mon, 23 Jul 2007 01:39:48 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Online]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/07/23/could-facebook-become-the-next-microsoft-i-think-not/</guid>
		<description><![CDATA[I was rather amused to read an article on TechCrunch couple of days ago under the title “Could Facebook Become The Next Microsoft?” The writer Duncan Riley went onto write that Facebook is going to be the next Microsoft on the web world. Before you read my review on the article, I suggest you read [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I was rather amused to read an article on <strong>TechCrunch</strong> couple of days ago under the title “Could Facebook Become The Next Microsoft?” The writer Duncan Riley went onto write that Facebook is going to be the next Microsoft on the web world. Before you read my review on the article, I suggest you read Duncan Riley’s article on <strong>TechCrunch</strong> <a href="http://www.techcrunch.com/2007/07/19/could-facebook-become-the-next-microsoft/" title="FacebookvsMSFT" target="_blank">Here</a></p>
<p class="MsoNormal"><span lang="EN-GB">Everybody knows about Microsoft and Facebook. I will give a brief introduction about both Companies, so this article will make more sense to the reader&#8230;</span></p>
<p class="MsoNormal"><span lang="EN-GB"><strong>Microsoft</strong> is the leading Operating Systems and software manufacturer in the world. Thousands of companies depend on Microsoft’s to make their revenue by developing third party software for their Operating Systems. Furthermore, there are millions of people and companies who uses Microsoft Software and Operating Systems are familiarised with products and rely on them. </span></p>
<p class="MsoNormal"><span lang="EN-GB"><strong>Facebook</strong> is a Social Networking Website with some nifty features. These features being, third party applications. T</span>his means Facebook will not run the third party applications on their servers, the Facebook Platform is able to communicate with third party applications running on external servers which are not under the control of Facebook, Which means Facebook allows you to pipe information through their API <span> </span>(Application Programming Interface).<span>  </span>If you want to know more about how this system works, you should have a read at <a href="http://developers.facebook.com/documentation.php">http://developers.facebook.com/documentation.php</a></p>
<p class="MsoNormal"><span lang="EN-GB">The author of this article Duncan Riley only concentrated on the Facebook Applications which are supported mostly by third parties and he went onto directly compare it with Microsoft. He is directly comparing Microsoft based third party applications (i.e. Software made by other companies, for example Adobe, AutoDesk, Symantec) with Facebook applications. His argument being, If Facebook could control the third party applications like Microsoft is controlling other software developers, then one day Facebook will be the next Microsoft and have some kind of Web OS.</span></p>
<p class="MsoNormal"><span lang="EN-GB">He is pretty much confused the fact that Facebook being a platform will offer opportunities to third party developers. But you need to think about the target audience. Most of the people are forced to use Microsoft Operating Systems and some of its Software&#8230;You can argue the fact that it is not true, but if you analyse the situation, you will think otherwise. In the years Microsoft has created an environment where most of the users are forced to use their products.</span></p>
<p class="MsoNormal"><span lang="EN-GB">One main difference being, the users of Facebook have a choice; they have chose to use Facebook, so the target audience of Facebook is far less compared to Microsoft. When it comes to Applications, Facebook pretty much have control over it, but when you compare it to Microsoft and their party applications, it is not the case. By law, Microsoft is forced to work with third party software makers. This is a huge advantage on the software developers side, Microsoft can’t just stop you from making software for their Operating Systems because they don’t like it, or they think you are making more profit from it. This is different when it comes to Facebook, they can just stop you, simple as that. There is no law to protect the third party application makers. </span></p>
<p class="MsoNormal"><span lang="EN-GB">Since Facebook is a web platform, there are a huge security concerns when it comes to third party applications. This is why they don’t let them run it on their servers, otherwise they would get hacked within minutes. The third party applications run on external servers and piped through the Facebook API. This means, the applications will be slow depending on the server / connection it is in&#8230; When the external server is down or something wrong with the route between the Facebook servers and the external application servers, it will not work. So, the people who are going to get affected are the end users. </span></p>
<p class="MsoNormal"><span lang="EN-GB">My conclusion being, you can’t just go and compare Microsoft with a Social Networking site with some addons. It is pretty stupid of the writer to go and compare a Software Giant with a website which allows external applications. An average user might think he has a point, but you analyse the facts, the author is completely wrong! </span></p>
<p class="MsoNormal"><span lang="EN-GB">You can&#8217;t just go ahead and compare cats and dogs because they have 4 legs.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/07/could-facebook-become-the-next-microsoft-i-think-not/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Which Cable?</title>
		<link>http://www.fnode.com/2007/06/which-cable/</link>
		<comments>http://www.fnode.com/2007/06/which-cable/#comments</comments>
		<pubDate>Wed, 27 Jun 2007 16:16:39 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/06/27/which-cable/</guid>
		<description><![CDATA[Is this really necessary? Someone went all the trouble to lable the Orange Cable&#8230;]]></description>
			<content:encoded><![CDATA[<p></p><p> Is this really necessary? Someone went all the trouble to lable the Orange Cable&#8230;</p>
<p><a href="http://www.nishv.com/wp-content/uploads/2007/06/orange_cable1.jpg" title="orange_cable1.jpg"></p>
<p style="text-align: center"><img src="http://www.fnode.com/wp-content/uploads/2007/06/orange_cable1.jpg" alt="orange_cable1.jpg" /></p>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/06/which-cable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Botnets!</title>
		<link>http://www.fnode.com/2007/01/botnets/</link>
		<comments>http://www.fnode.com/2007/01/botnets/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 02:28:38 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/01/28/botnets/</guid>
		<description><![CDATA[I have uploaded this video to Google about Botnets (Robot Networks). I would like to advice every single Internet User to see it. It should give the average user an idea on how important an Antivirus Software is! -5936913116162314887 Free Anti Virus: http://www.avast.com/eng/download-avast-home.html]]></description>
			<content:encoded><![CDATA[<p></p><p>I have uploaded this video to Google about Botnets (Robot Networks).  I would like to advice every single Internet User to see it. It should give the average user an idea on how important an Antivirus Software is!</p>
<p><center><!--googlevideovideo--><span style="display: none">-5936913116162314887</span><!--googlevideovideoend--></center><br />
Free Anti Virus: <a href="http://www.avast.com/eng/download-avast-home.html" target="_blank" title="http://www.avast.com/eng/download-avast-home.html">http://www.avast.com/eng/download-avast-home.html</a><strong> <code style="color: blue"><!--adsense--></code></strong></p>
<p><a href="http://www.avast.com/eng/download-avast-home.html" target="_blank" title="http://www.avast.com/eng/download-avast-home.html"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/01/botnets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TechForums Update</title>
		<link>http://www.fnode.com/2006/08/techforums-update/</link>
		<comments>http://www.fnode.com/2006/08/techforums-update/#comments</comments>
		<pubDate>Fri, 18 Aug 2006 01:04:45 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2006/08/18/techforums-update/</guid>
		<description><![CDATA[There have been a number of updates to TechForums lately! After updating vBulletin 3.6.0, I have managed to update the forum skin today. Along with the unique footer image&#8230; It looks pretty good. Way better than the default vB skin! TechForums can be viewed here.]]></description>
			<content:encoded><![CDATA[<p></p><p class="MsoNormal">There have been a number of updates to TechForums lately!</p>
<p class="MsoNormal">After updating vBulletin 3.6.0, I have managed to update the forum skin today. Along with the unique footer image&#8230; It looks pretty good. Way better than the default vB skin!</p>
<p class="MsoNormal"><strong><a href="http://www.techforums.info">TechForums</a></strong> can be viewed here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2006/08/techforums-update/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sony Ericsson Bluetooth Headset HBH-IV835</title>
		<link>http://www.fnode.com/2006/07/sony-ericsson-bluetooth-headset-hbh-iv835/</link>
		<comments>http://www.fnode.com/2006/07/sony-ericsson-bluetooth-headset-hbh-iv835/#comments</comments>
		<pubDate>Sat, 08 Jul 2006 14:26:46 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.nishv.com/?p=6</guid>
		<description><![CDATA[Another new member to my gadget collection! It is the Sony Ericsson Bluetooth Headset HBH-IV835. It&#8217;s probably the lightest and the latest one around so I went ahead an ordered it&#8230; Looks pretty nice&#8230; Here is a picture&#8230; Weight: 10g. Talk Time: Up to 3.5 hours. Standby Time: Up to 160 hours. Up to 10m [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Another new member to my gadget collection! It is the Sony Ericsson Bluetooth Headset <strong>HBH-IV835</strong>. It&#8217;s probably the lightest and the latest one around so I went ahead an ordered it&#8230; Looks pretty nice&#8230; Here is a picture&#8230;</p>
<p><img src="http://www.fnode.com/wp-content/uploads/2006/07/bt.jpg" title="BT" alt="BT" /></p>
<ul>
<li>Weight: 10g.</li>
<li>Talk Time: Up to 3.5 hours.</li>
<li>Standby Time: Up to 160 hours.</li>
<li>Up to 10m range.</li>
</ul>
<p>This is a paragraph from Sony Ericsson&#8217;s site</p>
<p><em>The diminutive size won&#8217;t diminish the sound quality. Clear digital sound is assured with Digital Signal Processing (DSP), fast automatic volume adjustment and Bluetooth 2.0 for a more secure connection. You and the person you are talking to will notice the difference â€“ even if many people won&#8217;t even notice you&#8217;re wearing a headset at all.</em></p>
<p>I have been using this Bluetooth Headset for about two weeks now. It&#8217;s really good and versatile.</p>
<p>The digital sound quality is exceptional although the talk time of 3.5 Hours is a bit short for someone who talks on the phone for over 3.5 Hours a day needs a recharge&#8230; It&#8217;s perfect for me because I only need to charge it every 5 days or so&#8230;</p>
<p>The design is perfect; you won&#8217;t even feel there is something on your ears. It&#8217;s pretty much having one side of a headphone in your ears without having a wire coming from it&#8230; The earpiece is a bit long in my point of view (3 mm shorter), that&#8217;s the only negative point I have about this Headset.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2006/07/sony-ericsson-bluetooth-headset-hbh-iv835/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website As Graph</title>
		<link>http://www.fnode.com/2006/04/website-graph/</link>
		<comments>http://www.fnode.com/2006/04/website-graph/#comments</comments>
		<pubDate>Thu, 27 Apr 2006 12:09:08 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2006/08/05/website-graph/</guid>
		<description><![CDATA[This is how this website looks as a graph&#8230; Check out  http://www.aharef.info/static/htmlgraph/ for more info.]]></description>
			<content:encoded><![CDATA[<p></p><p>This is how this website looks as a graph&#8230;</p>
<p><img id="image65" src="http://www.fnode.com/wp-content/uploads/2006/08/map%20small.jpg" alt="map small.jpg" /><br />
Check out  <a href="http://www.aharef.info/static/htmlgraph/" target="_blank">http://www.aharef.info/static/htmlgraph/</a> for more info.</p>
<div style="text-align: center;"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2006/04/website-graph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Farewell Typo Blog</title>
		<link>http://www.fnode.com/2006/04/farewell-typo-blog/</link>
		<comments>http://www.fnode.com/2006/04/farewell-typo-blog/#comments</comments>
		<pubDate>Wed, 19 Apr 2006 23:53:49 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2006/08/02/farewell-typo-blog/</guid>
		<description><![CDATA[I have been using Typo blog for some time and frankly, I am pretty annoying with its features. So, I have decided to move back to WordPress&#8230;]]></description>
			<content:encoded><![CDATA[<p></p><p>I have been using Typo blog for some time and frankly, I am pretty annoying with its features. So, I have decided to move back to WordPress&#8230;</p>
<div style="text-align: center"><img alt="logo.png" id="image54" src="http://www.fnode.com/wp-content/uploads/2006/08/logo.png" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2006/04/farewell-typo-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
