<?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>Fedora &#187; Firefox</title>
	<atom:link href="http://gofedora.com/archives/category/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://gofedora.com</link>
	<description>How Tos, Tutorials, Tips and Tricks</description>
	<lastBuildDate>Thu, 25 Feb 2010 07:55:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Javascript To Remove All Facebook Apps From Your Account</title>
		<link>http://gofedora.com/javascript-remove-facebook-apps-account/</link>
		<comments>http://gofedora.com/javascript-remove-facebook-apps-account/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 23:06:45 +0000</pubDate>
		<dc:creator>Kulbir Saini</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Apps]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Postwith]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://gofedora.com/?p=1022</guid>
		<description><![CDATA[
This is a guest post by Gaganpreet Arora AKA bitgeek.
My Facebook app list was cluttered with useless apps accumulated over the time I had joined Facebook. The worst thing is that Facebook does not allow you to remove multiple apps in one go. You have to select one, confirm on &#8220;Are you sure?&#8221; first and [...]<p><a href="http://gofedora.com/">Fedora Tutorials</a> and <a href="http://cachevideos.com/">Videocache</a> by <a href="http://saini.co.in/">Kulbir Saini</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://gofedora.com/javascript-remove-facebook-apps-account/" class="post_image_link"  title="Permanent link to Javascript To Remove All Facebook Apps From Your Account"><img class="post_image alignnone" src="http://gofedora.com/wp-content/uploads/2010/02/Stop-Facebook-Spam.jpg" width="200" height="180" alt="Stop Facebook Spam" title="Javascript To Remove All Facebook Apps From Your Account" /></a>
</p><p>This is a guest post by <a rel="nofollow" href="http://gofedora.com/goto/http://gaganpreet.wordpress.com/"  target="_blank">Gaganpreet Arora AKA bitgeek</a>.</p>
<p>My Facebook app list was cluttered with useless apps accumulated over the time I had joined Facebook. The worst thing is that Facebook does not allow you to remove multiple apps in one go. You have to select one, confirm on &#8220;Are you sure?&#8221; first and then click on &#8220;Okay&#8221; when it is deleted. Very cumbersome. So I wrote a Javascript hack to remove all of the apps in one go.</p>
<p><span style="text-decoration: underline;"><strong><span style="color: #ff0000;">Warning: This will actually delete all the apps</span></strong></span></p>
<h3><span style="text-decoration: underline;"><strong>Step 1</strong></span></h3>
<p>Go to: <a rel="nofollow" href="http://gofedora.com/goto/http://www.facebook.com/editapps.php?v=allowed"  target="_blank">http://www.facebook.com/editapps.php?v=allowed</a>.</p>
<h3><span style="text-decoration: underline;"><strong>Step 2</strong></span></h3>
<p>Select and copy the complete code below and paste it into the address bar.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">javascript<span style="color: #339933;">:</span>
<span style="color: #003366; font-weight: bold;">function</span> postwith <span style="color: #009900;">&#40;</span>to<span style="color: #339933;">,</span>p<span style="color: #009900;">&#41;</span> 
<span style="color: #009900;">&#123;</span>
  <span style="color: #003366; font-weight: bold;">var</span> myForm <span style="color: #339933;">=</span> document.<span style="color: #660066;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;form&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
  myForm.<span style="color: #660066;">method</span><span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;post&quot;</span> <span style="color: #339933;">;</span> myForm.<span style="color: #660066;">action</span> <span style="color: #339933;">=</span> to <span style="color: #339933;">;</span> 
  <span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">var</span> k <span style="color: #000066; font-weight: bold;">in</span> p<span style="color: #009900;">&#41;</span> 
  <span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> myInput <span style="color: #339933;">=</span> document.<span style="color: #660066;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;input&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span> 
    myInput.<span style="color: #660066;">setAttribute</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;name&quot;</span><span style="color: #339933;">,</span> k<span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span> 
    myInput.<span style="color: #660066;">setAttribute</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;value&quot;</span><span style="color: #339933;">,</span> p<span style="color: #009900;">&#91;</span>k<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
    myForm.<span style="color: #660066;">appendChild</span><span style="color: #009900;">&#40;</span>myInput<span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span> 
  <span style="color: #009900;">&#125;</span> 
  document.<span style="color: #660066;">body</span>.<span style="color: #660066;">appendChild</span><span style="color: #009900;">&#40;</span>myForm<span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span> 
  myForm.<span style="color: #660066;">submit</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span> 
  document.<span style="color: #660066;">body</span>.<span style="color: #660066;">removeChild</span><span style="color: #009900;">&#40;</span>myForm<span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> getElementsByClassName<span style="color: #009900;">&#40;</span>classname<span style="color: #339933;">,</span> node<span style="color: #009900;">&#41;</span> 
<span style="color: #009900;">&#123;</span> 
  <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>node<span style="color: #009900;">&#41;</span> 
  <span style="color: #009900;">&#123;</span> 
    node <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'body'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> 
  <span style="color: #009900;">&#125;</span> 
  <span style="color: #003366; font-weight: bold;">var</span> a <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> re <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> RegExp<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'<span style="color: #000099; font-weight: bold;">\\</span>b'</span> <span style="color: #339933;">+</span> classname <span style="color: #339933;">+</span> <span style="color: #3366CC;">'<span style="color: #000099; font-weight: bold;">\\</span>b'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
  els <span style="color: #339933;">=</span> node.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'*'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
  <span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">,</span> j <span style="color: #339933;">=</span> els.<span style="color: #660066;">length</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&lt;</span> j<span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> 
  <span style="color: #009900;">&#123;</span> 
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> re.<span style="color: #660066;">test</span><span style="color: #009900;">&#40;</span>els<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">className</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> 
    <span style="color: #009900;">&#123;</span> a.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span>els<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> 
  <span style="color: #009900;">&#125;</span> 
  <span style="color: #000066; font-weight: bold;">return</span> a<span style="color: #339933;">;</span> 
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">var</span> arr <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> 
els<span style="color: #339933;">=</span>document.<span style="color: #660066;">getElementsByClassName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'app_row'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
arr<span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'fb_dtsg'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>document.<span style="color: #660066;">getElementsByName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'fb_dtsg'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">value</span><span style="color: #339933;">;</span> 
arr<span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'remove'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">1</span><span style="color: #339933;">;</span>  
arr<span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'post_form_id_source'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span><span style="color: #3366CC;">'AsyncRequest'</span><span style="color: #339933;">;</span> 
arr<span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'post_form_id'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'post_form_id'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">value</span><span style="color: #339933;">;</span> 
arr<span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'app_id'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>els<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">id</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;editapps_allowed_&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>   
arr<span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'__a'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">1</span><span style="color: #339933;">;</span> 
<span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> i<span style="color: #339933;">&lt;</span>els.<span style="color: #660066;">length</span><span style="color: #339933;">;</span> <span style="color: #339933;">++</span>i<span style="color: #009900;">&#41;</span> 
<span style="color: #009900;">&#123;</span>postwith<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;http://facebook.com/ajax/edit_app_settings.php&quot;</span><span style="color: #339933;">,</span> arr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> arr<span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'app_id'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> els<span style="color: #009900;">&#91;</span>i<span style="color: #339933;">+</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">id</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;editapps_allowed_&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<h3><span style="text-decoration: underline;"><strong>Step 3</strong></span></h3>
<p>Press Enter.</p>
<p>The browser may get stuck for a few moments if the list is large, so if it does, just wait a bit and it will respond back.</p>
<h3><span style="text-decoration: underline;"><strong>References</strong></span></h3>
<p>Function postwith was taken from <a rel="nofollow" href="http://gofedora.com/goto/http://mentaljetsam.wordpress.com/2008/06/02/using-javascript-to-post-data-between-pages/" >here</a>, and getElementsByClassName was taken from <a rel="nofollow" href="http://gofedora.com/goto/http://snipplr.com/view/1696/get-elements-by-class-name/" >here</a>.<br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://gofedora.com/intelligentmirror-rpm-deb-caching-improved-05/"  title="IntelligentMirror: RPM and DEB Caching Improved (0.5)">IntelligentMirror: RPM and DEB Caching Improved (0.5)</a></li>
<li><a href="http://gofedora.com/how-to-install-javascript-plugin-eclipse/"  title="How To: Install Javascript Plugin in Eclipse">How To: Install Javascript Plugin in Eclipse</a></li>
<li><a href="http://gofedora.com/hack-mange-fluctuating-wireless/"  title="Hack: Mange Fluctuating Wireless">Hack: Mange Fluctuating Wireless</a></li>
<li><a href="http://gofedora.com/hack-mail-filter-shell-script/"  title="Hack: Mail Filter &#8211; Shell Script">Hack: Mail Filter &#8211; Shell Script</a></li>
<li><a href="http://gofedora.com/hack-graphical-implementation-cp-command/"  title="Hack: Graphical Implementation of CP Command">Hack: Graphical Implementation of CP Command</a></li>
</ul>
<p><a href="http://gofedora.com/" >Fedora Tutorials</a> and <a href="http://cachevideos.com/" >Videocache</a> by <a href="http://saini.co.in/" >Kulbir Saini</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gofedora.com/javascript-remove-facebook-apps-account/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tip: Multiproxy Switch : Easily use multiple proxies in Firefox</title>
		<link>http://gofedora.com/tip-multiproxy-switch-easily-use-multiple-proxies-in-firefox/</link>
		<comments>http://gofedora.com/tip-multiproxy-switch-easily-use-multiple-proxies-in-firefox/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 22:53:46 +0000</pubDate>
		<dc:creator>Kulbir Saini</dc:creator>
				<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Proxy Server]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Firefox Extension]]></category>
		<category><![CDATA[Multiple Proxies]]></category>
		<category><![CDATA[Multiple Proxy Servers]]></category>
		<category><![CDATA[Multiproxy Switch]]></category>

		<guid isPermaLink="false">http://gofedora.com/?p=1005</guid>
		<description><![CDATA[
A lot of people (especially working people with mobile devices like notebook/netbooks) need to use different proxy servers at home and office. There are several Firefox extensions available to achieve the required functionality but IMHO Multiproxy Switch(Mozilla Addon Page) is the best because

Its simple and easy to use. It does what it should. No fancy/extra [...]<p><a href="http://gofedora.com/">Fedora Tutorials</a> and <a href="http://cachevideos.com/">Videocache</a> by <a href="http://saini.co.in/">Kulbir Saini</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://gofedora.com/tip-multiproxy-switch-easily-use-multiple-proxies-in-firefox/" class="post_image_link"  title="Permanent link to Tip: Multiproxy Switch : Easily use multiple proxies in Firefox"><img class="post_image alignnone" src="http://gofedora.com/wp-content/uploads/2009/12/Multiproxy-Switch-Firefox-Multiple-Proxyes.jpg" width="200" height="193" alt="Multiproxy Switch - Firefox Multiple Proxyes" title="Tip: Multiproxy Switch : Easily use multiple proxies in Firefox" /></a>
</p><p>A lot of people (especially working people with mobile devices like notebook/netbooks) need to use different proxy servers at home and office. There are several Firefox extensions available to achieve the required functionality but IMHO <a rel="nofollow" href="http://gofedora.com/goto/http://multiproxyswitch.blogspot.com/"  target="_blank">Multiproxy Switch</a>(<a rel="nofollow" href="http://gofedora.com/goto/https://addons.mozilla.org/en-US/firefox/addon/7330"  target="_blank">Mozilla Addon Page</a>) is the best because</p>
<ol>
<li>Its simple and easy to use. It does what it should. No fancy/extra terrestrial stuff. Just switch proxies <img src='http://gofedora.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="Tip: Multiproxy Switch : Easily use multiple proxies in Firefox" /> </li>
<li>Easy and Firefox like interface to specify different proxies. Many extensions add their own fancy interfaces for specifying proxies which eventually suck big time.</li>
<li>I am a fan of this one. The No-Proxy list. I could never understand those regular expression based no-proxy lists in FoxyProxy. Multiproxy Switch has Firefox like No-Proxy list which rocks and understandable <img src='http://gofedora.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="Tip: Multiproxy Switch : Easily use multiple proxies in Firefox" /> </li>
</ol>
<p>If you happen to come across a better proxy switcher for Firefox, do let us know <img src='http://gofedora.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="Tip: Multiproxy Switch : Easily use multiple proxies in Firefox" /> </p>
<div id="link-ad" style="border: 1px dotted black; font-size: 11px; padding: 2px 5px;">
Get free <a href="http://www.exam-builder.com/70-562.htm" >70-562 exam</a> questions with your <a href="http://www.exam-builder.com/70-431.htm" >70-431 exam</a> pack. Best <a href="http://www.exam-builder.com/VCP-certification-training.htm" >vcp training</a> simulations are also available.
</div>
<h3>Recommended Posts</h3>
<ul class="related_post">
<li><a href="http://gofedora.com/how-to-install-ati-catalyst-fglrx-98-drivers-fedora-11/"  title="How To: Install ATI Catalyst (fglrx) Drivers">How To: Install ATI Catalyst (fglrx) Drivers</a></li>
<li><a href="http://gofedora.com/fedora-12-ati-catalyst-drivers/"  title="Fedora 12 ATI Catalyst Drivers">Fedora 12 ATI Catalyst Drivers</a></li>
<li><a href="http://gofedora.com/how-to-configure-squid-proxy-server/"  title="How To: Configure Squid Proxy Server">How To: Configure Squid Proxy Server</a></li>
<li><a href="http://gofedora.com/news-ati-catalyst-drivers-10-2-released-no-fedora-12-support/"  title="News: ATI Catalyst Drivers 10.2 Released. No Fedora 12 Support.">News: ATI Catalyst Drivers 10.2 Released. No Fedora 12 Support.</a></li>
<li><a href="http://gofedora.com/news-will-ati-catalyst-drivers-9-12-work-with-fedora-12/"  title="News: Will ATI Catalyst Drivers 9.12 work with Fedora 12?">News: Will ATI Catalyst Drivers 9.12 work with Fedora 12?</a></li>
</ul>
<p><a href="http://gofedora.com/" >Fedora Tutorials</a> and <a href="http://cachevideos.com/" >Videocache</a> by <a href="http://saini.co.in/" >Kulbir Saini</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gofedora.com/tip-multiproxy-switch-easily-use-multiple-proxies-in-firefox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Info: Padma Version 0.4.13 Released</title>
		<link>http://gofedora.com/info-padma-version-0413-released/</link>
		<comments>http://gofedora.com/info-padma-version-0413-released/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 11:39:00 +0000</pubDate>
		<dc:creator>Kulbir Saini</dc:creator>
				<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Indic Fonts]]></category>
		<category><![CDATA[Padma]]></category>

		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=19</guid>
		<description><![CDATA[From Padma&#8217;s official website,
Padma is a system for transforming Indic text between various public and proprietary formats. This extension applies the technology to Mozilla based applications. Padma is available as an extension for Firefox, Thunderbird, Netscape, Mozilla suite and SeaMonkey platforms. Padma currently supports Telugu, Malayalam, Tamil, Devanagari, Gujarati, Kannada, Bengali, and Gurmukhi scripts
This particular [...]<p><a href="http://gofedora.com/">Fedora Tutorials</a> and <a href="http://cachevideos.com/">Videocache</a> by <a href="http://saini.co.in/">Kulbir Saini</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>From Padma&#8217;s <a rel="nofollow" href="http://gofedora.com/goto/http://padma.mozdev.org/"  target="_blank">official website</a>,</p>
<blockquote><p><strong>Padma</strong> is a system for transforming Indic text between various public and proprietary formats. This extension applies the technology to Mozilla based applications. <strong>Padma</strong> is available as an extension for Firefox, Thunderbird, Netscape, Mozilla suite and SeaMonkey platforms. <strong>Padma</strong> currently supports <a rel="nofollow" href="http://gofedora.com/goto/http://en.wikipedia.org/wiki/Telugu"  target="_blank">Telugu</a>, <a rel="nofollow" href="http://gofedora.com/goto/http://en.wikipedia.org/wiki/Malayalam"  target="_blank">Malayalam</a>, <a rel="nofollow" href="http://gofedora.com/goto/http://en.wikipedia.org/wiki/Tamil_language"  target="_blank">Tamil</a>, <a rel="nofollow" href="http://gofedora.com/goto/http://en.wikipedia.org/wiki/Devanagari"  target="_blank">Devanagari</a>, <a rel="nofollow" href="http://gofedora.com/goto/http://en.wikipedia.org/wiki/Gujarati_language"  target="_blank">Gujarati</a>, <a rel="nofollow" href="http://gofedora.com/goto/http://en.wikipedia.org/wiki/Kannada"  target="_blank">Kannada</a>, <a rel="nofollow" href="http://gofedora.com/goto/http://en.wikipedia.org/wiki/Bengali" >Bengali</a>, and <a rel="nofollow" href="http://gofedora.com/goto/http://en.wikipedia.org/wiki/Gurmukhi"  target="_blank">Gurmukhi</a> scripts</p></blockquote>
<p>This particular version includes <span title="Adding support for Marathi TrueType Font - Shree-Dev-0714  to Padma"><a rel="nofollow" href="http://gofedora.com/goto/https://www.mozdev.org/bugs/show_bug.cgi?id=17150"  target="_blank">support for Marathi TrueType Font &#8211; Shree-Dev-0714</a>, which I wrote last summer. I am happy that it is finally Padma core. A big credit goes to Radhika Thammishetty and Harshita Vani for guiding and helping me out in writing the mappings.<br />
</span><br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://gofedora.com/how-to-install-eclipse-fedora-7/"  title="How To: Install Eclipse in Fedora 7">How To: Install Eclipse in Fedora 7</a></li>
</ul>
<p><a href="http://gofedora.com/" >Fedora Tutorials</a> and <a href="http://cachevideos.com/" >Videocache</a> by <a href="http://saini.co.in/" >Kulbir Saini</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gofedora.com/info-padma-version-0413-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Review: Firefox 3 Beta 1</title>
		<link>http://gofedora.com/review-firefox-3-beta-1/</link>
		<comments>http://gofedora.com/review-firefox-3-beta-1/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 19:07:15 +0000</pubDate>
		<dc:creator>Kulbir Saini</dc:creator>
				<category><![CDATA[Extensions]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Screenshot]]></category>
		<category><![CDATA[Bookmark Editing]]></category>
		<category><![CDATA[Crash]]></category>
		<category><![CDATA[Drag n Drop]]></category>
		<category><![CDATA[FTP Listing]]></category>
		<category><![CDATA[Website Identity]]></category>

		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=170</guid>
		<description><![CDATA[Firefox 3 Beta 1 is available now. I downloaded the package yesterday morning and started using it right away. While using, I figured out some of the good things and at the same time there are some bad things about this test release. Here is what I feel about Firefox 3 Beta 1.
BTW, you can [...]<p><a href="http://gofedora.com/">Fedora Tutorials</a> and <a href="http://cachevideos.com/">Videocache</a> by <a href="http://saini.co.in/">Kulbir Saini</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>Firefox 3 Beta 1 is available now. I downloaded the package yesterday morning and started using it right away. While using, I figured out some of the good things and at the same time there are some bad things about this test release. Here is what I feel about Firefox 3 Beta 1.</p>
<p>BTW, you can get beta 1 for Firefox 3 <a rel="nofollow" href="http://gofedora.com/goto/http://www.mozilla.com/en-US/firefox/all-beta.html"  target="_blank">here</a>. I am not going to tell, how to install firefox <img src='http://gofedora.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="Review: Firefox 3 Beta 1" /> </p>
<h2><strong><span style="text-decoration: underline;">Positives:</span></strong></h2>
<h4><span style="text-decoration: underline;">1.Nice Default Font:</span></h4>
<p>Well someone may argue that you can configure any font in any version of Firefox, so whats the good thing about this default font in Firefox 3 Beta1. Well, I&#8217;ll say that configuration is always available but nobody gives a damn to configure the font in browser. I am liking this default font in FF3 Beta1 and everything now seems interesting to read. I have Read more than 40 wiki pages since last two days.</p>
<h4><span style="text-decoration: underline;">2.New FTP Listing Style:</span></h4>
<p>The FTP listings in Firefox 3 Beta 1 has got new stylesheet. Its not dirty any more. It feels good while browsing ftp now. See the screen-shot below.</p>
<p><a href="http://gofedora.com/wp-content/uploads/2007/11/1-ftp-listing-in-firefox.jpg" ><img class="alignnone size-medium wp-image-172" title="FTP Listing In Firefox" src="http://gofedora.com/wp-content/uploads/2007/11/1-ftp-listing-in-firefox-402x469.jpg" alt="FTP Listing In Firefox" width="402" height="469" /></a></p>
<h4><span style="text-decoration: underline;">3.Website Identity:</span></h4>
<p>This is new feature, but I couldn&#8217;t find it useful. When you click on favicon in the location bar, a pop-up kinda thing comes up, which tells about the identity of the site you are visiting. Check out the snapshot below.</p>
<p><a href="http://gofedora.com/wp-content/uploads/2007/11/2-website-identity-in-firefox.jpg" ><img class="alignnone size-medium wp-image-173" title="Website Identity in Firefox" src="http://gofedora.com/wp-content/uploads/2007/11/2-website-identity-in-firefox-620x368.jpg" alt="Website Identity in Firefox" width="620" height="368" /></a></p>
<h4><span style="text-decoration: underline;">4.Drag n Drop:</span></h4>
<p>You can now hold any thing in Firefox 3 Beta 1 and drag it anywhere you want. Though I could not drop the images to gimp or anywhere else, it looks good. I think its in the development stage right now.</p>
<p><a href="http://gofedora.com/wp-content/uploads/2007/11/3-drag-n-drop-in-firefox.jpg" ><img class="alignnone size-medium wp-image-174" title="Drag and Drop in Firefox" src="http://gofedora.com/wp-content/uploads/2007/11/3-drag-n-drop-in-firefox-620x454.jpg" alt="Drag and Drop in Firefox" width="372" height="272" /></a> <a href="http://gofedora.com/wp-content/uploads/2007/11/4-drag-n-drop-2-in-firefox.jpg" ><img class="alignnone size-medium wp-image-175" title="Drag and Drop in Firefox" src="http://gofedora.com/wp-content/uploads/2007/11/4-drag-n-drop-2-in-firefox-519x470.jpg" alt="Drag and Drop in Firefox" width="363" height="329" /></a></p>
<h4><span style="text-decoration: underline;">5.Bookmarks:</span></h4>
<p>Bookmarking a website or editing your bookmarks is far easier now. You can edit a bookmarked site while its loading or can bookmark the site by just clicking a button. A new star-shaped button has been added in the location bar before the go button. If a site is not bookmarked, clicking the button will just bookmark it without asking for anything. If you again click on the button, now you can edit or delete the site you just bookmarked.</p>
<p><a href="http://gofedora.com/wp-content/uploads/2007/11/5-bookmark-editing-in-firefox.jpg" ><img class="alignnone size-medium wp-image-176" title="Bookmark Editing in Firefox" src="http://gofedora.com/wp-content/uploads/2007/11/5-bookmark-editing-in-firefox-620x319.jpg" alt="Bookmark Editing in Firefox" width="620" height="319" /></a></p>
<h4><span style="text-decoration: underline;">6.Adding Search Engine:</span></h4>
<p>In firefox 3 beta 1, you can add the site you are browsing in you search engine list just like google, imdb, wikipedia, yahoo or whatever. But this is not valid for every website. Every website in this world can&#8217;t be a search engine <img src='http://gofedora.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' title="Review: Firefox 3 Beta 1" />  Checkout the snapshot or KDE.</p>
<p><a href="http://gofedora.com/wp-content/uploads/2007/11/6-adding-search-engine-in-firefox.jpg" ><img class="alignnone size-full wp-image-177" title="Adding Search Engine in Firefox" src="http://gofedora.com/wp-content/uploads/2007/11/6-adding-search-engine-in-firefox.jpg" alt="Adding Search Engine in Firefox" width="338" height="402" /></a></p>
<h4><span style="text-decoration: underline;">7.Link sorting/searching in location bar:</span></h4>
<p>Firefox 3 beta 1 implements a new searching/sorting mechanism for links in location bar. As you type some letters, those are now searched in the link as well as the title of the page and then the links are sorted and displayed as list. In drop down list, you can also see the sites on your bookmarks.</p>
<h4><span style="text-decoration: underline;">8.Places Folder:</span></h4>
<p>A new bookmark folder named &#8216;Places&#8217; has been added. It has 6 sub-folders which contains links to different site based on a particular criterion. Some of them are &#8216;Recently Starred Pages&#8217;, &#8216;Recently Visited Starred Pages&#8217;, &#8216;Most Visited Starred Pages&#8217; etc. I was looking for something like this since a long time. Because every time I login into my PC and fire up my firefox, first of all, I visit 8-10 sites (students mail, slashdot, iiit blogroll, yahoo mail, gmail, forum, orkut etc.). Now, I can open all of them in just one click. I click on &#8216;Most Visited Starred Pages&#8217; and done.</p>
<h4><span style="text-decoration: underline;">9.Low Memory:</span></h4>
<p>Well, a review of Firefox 3 Beta 1 on <a rel="nofollow" href="http://gofedora.com/goto/http://blogs.zdnet.com/hardware/?p=960"  target="_blank">zdnet</a>, say that Firefox 3 beta 1 is consuming low memory than Firefox 2 and IE 7. That review is for Firefox in windows. But in Fedora 7, I didn&#8217;t experience any reduction in memory usage.</p>
<h4><span style="text-decoration: underline;">10.Faster:</span></h4>
<p>I don&#8217;t know how to justify this, but Firefox 3 Beta 1 seems to load pages faster. What I could think was that, when you click go, it loads the page in the background for some-time and then suddenly flushes the page to the screen and it appears that the entire page has been loaded in one go. I may be wrong though.</p>
<h4><span style="text-decoration: underline;">11.Improved GUI:</span></h4>
<p>The rendering of buttons, input fields, images in the pages have improved a lot and buttons and drop down menus look better now.</p>
<h2><strong><span style="text-decoration: underline;">Negatives:</span></strong></h2>
<h4><span style="text-decoration: underline;">1.Extensions:</span></h4>
<p>Life is a bit or I should say a byte difficult with Firefox extensions. Now, I am too much used to use these extensions that I can&#8217;t live without them. I&#8217;ll crash if I don&#8217;t have &#8216;Undo Closed Tab&#8217; extension. I keep making stupid mistakes. All the extensions are not yet available for Firefox 3, so its a problem.</p>
<h4><span style="text-decoration: underline;">2.Multiple Tabs:</span></h4>
<p>Firefox 3 Beta 1 immediately dies if I open more than 20 tabs. I opened my wiki saved session (39 tabs) and after sometime I was searching for Firefox. Where the hell firefox window has gone?</p>
<h4><span style="text-decoration: underline;">3.Crashes:</span></h4>
<p>I don&#8217;t know what exactly is the problem, but I think Firefox 3 revolts against Yahoo Mail and GMail. Whenever I open Yahoo Mail or GMail, Firefox 3 Beta 1 crashes. Either there is some problem with the heavily loaded mail pages or it doesn&#8217;t want me to use GMail or Yahoo.</p>
<p>Well, there may be lot more positives and negatives. These are the things I noticed about Firefox 3 Beta 1 in last two days. As the positives list is ruling the negatives, I am using Firefox 3 Beta 1 full time these days.</p>
<p>PS : @Paresh I think FF3 is better than FF2 in many ways. But you may want to wait for all the extensions to be compatible with FF3.<br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://gofedora.com/review-kde4-worth-upgrading/"  title="Review: KDE4 &#8211; Is it worth upgrading?">Review: KDE4 &#8211; Is it worth upgrading?</a></li>
</ul>
<p><a href="http://gofedora.com/" >Fedora Tutorials</a> and <a href="http://cachevideos.com/" >Videocache</a> by <a href="http://saini.co.in/" >Kulbir Saini</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gofedora.com/review-firefox-3-beta-1/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How To: Install Eclipse in Fedora 7</title>
		<link>http://gofedora.com/how-to-install-eclipse-fedora-7/</link>
		<comments>http://gofedora.com/how-to-install-eclipse-fedora-7/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 20:04:32 +0000</pubDate>
		<dc:creator>Kulbir Saini</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[Indic Fonts]]></category>
		<category><![CDATA[Padma]]></category>
		<category><![CDATA[RPM]]></category>

		<guid isPermaLink="false">http://172.17.8.64/gofedora/?p=232</guid>
		<description><![CDATA[I have decided to stick with Fedora 7 due to the bad experience with Fedora 8 last night and also the difficulties in moving the servers to new os that I am running on Fedora 7. As I wanted to work with Padma in my spare time, so need a good IDE that can handle [...]<p><a href="http://gofedora.com/">Fedora Tutorials</a> and <a href="http://cachevideos.com/">Videocache</a> by <a href="http://saini.co.in/">Kulbir Saini</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p></p><p>I have decided to stick with Fedora 7 due to the bad experience with Fedora 8 last night and also the difficulties in moving the servers to new os that I am running on Fedora 7. As I wanted to work with <a rel="nofollow" href="http://gofedora.com/goto/http://padma.mozdev.org/"  target="_blank">Padma</a> in my spare time, so need a good IDE that can handle project in a nice way and can help me to import the cvs from repos online. So, is there any choice I have. There is one and only one &#8211; The Eclipse. Some people call it &#8211; programming paradise.  Some may disagree to that and some other may say that Vim is best to program. I also use Vim quite often and in fact 90% of the time I do so. But using Vim looks confusing when the size of the project is beyond certain extent.</p>
<p>Anyway, here I am going to discuss how to install Eclipse in Fedora 7 because its not there by default. There are two approaches. One is extremely simple and other is extremely difficult.</p>
<h4><strong>Approach 1</strong></h4>
<p>Use yum do install eclipse. Just issue &#8216;yum install eclipse-*&#8217; and it&#8217;ll be done automatically. But this method takes a very long time as yum will sequentially download the packages and dependencies and its very slow.</p>
<h4><strong>Approach 2</strong></h4>
<p>If I have a good bandwidth, then I&#8217;ll download all the packages and resolve the dependencies myself. But resolving dependencies will be frustrating enough that anyone will switch back to slow yum. But due to certain reasons which I suspect to be memory leaks by Firefox and other apps, my system was damn slow and yum could not do anything even after 10 minutes. It was not even able to download the package list.</p>
<p>So, I decided to download all the packages and install them. I download all the eclipse packages and their dependencies manually and installed it successfully. Here is the list of packages and dependencies so that you need not do rpm -ivh a 100 times <img src='http://gofedora.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="How To: Install Eclipse in Fedora 7" />  All these dependencies are available on <a rel="nofollow" href="http://gofedora.com/goto/http://rpmfind.net"  target="_blank">rpmfind.net</a> and packages can be fetched from any <a rel="nofollow" href="http://gofedora.com/goto/http://mirrors.fedoraproject.org/publiclist/Fedora/8/"  target="_blank">fedora</a> mirror. These are tested on Fedora 7.</p>
<p><strong>Packages </strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">eclipse-cdt-3.1.2-8.fc7.i386.rpm
eclipse-cdt-sdk-3.1.2-8.fc7.i386.rpm
eclipse-checkstyle-4.0.1-6.fc7.i386.rpm
eclipse-ecj-3.2.2-15.fc7.i386.rpm
eclipse-jdt-3.2.2-15.fc7.i386.rpm
eclipse-jdt-sdk-3.2.2-15.fc7.i386.rpm
eclipse-pde-3.2.2-15.fc7.i386.rpm
eclipse-pde-runtime-3.2.2-15.fc7.i386.rpm
eclipse-pde-sdk-3.2.2-15.fc7.i386.rpm
eclipse-platform-3.2.2-15.fc7.i386.rpm
eclipse-platform-sdk-3.2.2-15.fc7.i386.rpm
eclipse-rcp-3.2.2-15.fc7.i386.rpm
eclipse-rcp-sdk-3.2.2-15.fc7.i386.rpm
eclipse-sdk-3.2.2-15.fc7.i386.rpm
eclipse-subclipse-1.2.4-2.fc7.i386.rpm
eclipse-subclipse-book-1.2.4-2.fc7.i386.rpm</pre></td></tr></table></div>

<p><strong>Dependencies</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">ant-1.6.5-4jpp.2.fc7.i386.rpm
ant-antlr-1.6.5-4jpp.2.fc7.i386.rpm
ant-apache-bcel-1.6.5-4jpp.2.fc7.i386.rpm
ant-apache-log4j-1.6.5-4jpp.2.fc7.i386.rpm
ant-apache-oro-1.6.5-4jpp.2.fc7.i386.rpm
ant-apache-regexp-1.6.5-4jpp.2.fc7.i386.rpm
ant-apache-resolver-1.6.5-4jpp.2.fc7.i386.rpm
ant-commons-logging-1.6.5-4jpp.2.fc7.i386.rpm
ant-javadoc-1.6.5-4jpp.2.fc7.i386.rpm
ant-javamail-1.6.5-4jpp.2.fc7.i386.rpm
ant-jdepend-1.6.5-4jpp.2.fc7.i386.rpm
ant-jsch-1.6.5-4jpp.2.fc7.i386.rpm
ant-junit-1.6.5-4jpp.2.fc7.i386.rpm
antlr-2.7.7-1jpp.2.i386.rpm
antlr-javadoc-2.7.7-1jpp.2.i386.rpm
ant-nodeps-1.6.5-4jpp.2.fc7.i386.rpm
ant-swing-1.6.5-4jpp.2.fc7.i386.rpm
ant-trax-1.6.5-4jpp.2.fc7.i386.rpm
avalon-logkit-<span style="color: #000000;">1.2</span>-4jpp.5.fc7.i386.rpm
checkstyle-<span style="color: #000000;">4.1</span>-4jpp.1.fc7.noarch.rpm
checkstyle-optional-<span style="color: #000000;">4.1</span>-4jpp.1.fc7.noarch.rpm
ganymed-ssh2-<span style="color: #000000;">210</span>-5.fc7.i386.rpm
jakarta-commons-beanutils-javadoc-1.7.0-5jpp.1.i386.rpm
jakarta-commons-cli-<span style="color: #000000;">1.0</span>-6jpp_10.fc6.i386.rpm
jakarta-commons-dbcp-1.2.1-10jpp.1.fc7.i386.rpm
jakarta-commons-lang-<span style="color: #000000;">2.1</span>-6jpp.1.fc7.i386.rpm
jakarta-commons-pool-<span style="color: #000000;">1.3</span>-9jpp.2.fc7.1.i386.rpm
java-1.5.0-gcj-javadoc-1.5.0.0-14.fc7.i386.rpm
jdepend-<span style="color: #000000;">2.6</span>-6jpp.1.i386.rpm
jdom-<span style="color: #000000;">1.0</span>-4jpp.1.i386.rpm
jsch-0.1.28-1jpp.6.i386.rpm
junit-3.8.2-3jpp.1.fc7.i386.rpm
jzlib-1.0.7-4jpp.1.i386.rpm
libswt3-gtk2-3.2.2-15.fc7.i386.rpm
lucene-1.4.3-1jpp.18.i386.rpm
lucene-devel-1.4.3-1jpp.18.i386.rpm
subversion-1.4.4-1.fc7.i386.rpm
subversion-javahl-1.4.4-1.fc7.i386.rpm
svnkit-1.1.4-2.fc7.i386.rpm
velocity-<span style="color: #000000;">1.4</span>-6jpp.1.i386.rpm
werken.xpath-0.9.4-0.beta.8jpp.noarch.rpm
xml-commons-apis-javadoc-1.3.03-0jpp.1.fc7.i386.rpm</pre></td></tr></table></div>

<p>So, be sure to fetch the dependencies first. Hope that helps.<br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://gofedora.com/info-padma-version-0413-released/"  title="Info: Padma Version 0.4.13 Released">Info: Padma Version 0.4.13 Released</a></li>
<li><a href="http://gofedora.com/intelligentmirror-rpm-deb-caching-improved-05/"  title="IntelligentMirror: RPM and DEB Caching Improved (0.5)">IntelligentMirror: RPM and DEB Caching Improved (0.5)</a></li>
<li><a href="http://gofedora.com/intelligentmirror-intelligent-1-0-1/"  title="IntelligentMirror Gets Even More Intelligent (1.0.1)">IntelligentMirror Gets Even More Intelligent (1.0.1)</a></li>
<li><a href="http://gofedora.com/intelligentmirror-rpm-deb-caching-improved-04/"  title="IntelligentMirror: RPM and DEB Caching Improved (0.4)">IntelligentMirror: RPM and DEB Caching Improved (0.4)</a></li>
<li><a href="http://gofedora.com/intelligentmirror-testing/"  title="IntelligentMirror: Available for Testing">IntelligentMirror: Available for Testing</a></li>
</ul>
<p><a href="http://gofedora.com/" >Fedora Tutorials</a> and <a href="http://cachevideos.com/" >Videocache</a> by <a href="http://saini.co.in/" >Kulbir Saini</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gofedora.com/how-to-install-eclipse-fedora-7/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
