<?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>Andre Noel &#187; firefox</title>
	<atom:link href="http://en.andrenoel.com.br/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://en.andrenoel.com.br</link>
	<description></description>
	<lastBuildDate>Wed, 07 Dec 2011 15:52:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Ubiquity for Firefox</title>
		<link>http://en.andrenoel.com.br/2009/07/31/ubiquity-for-firefox/</link>
		<comments>http://en.andrenoel.com.br/2009/07/31/ubiquity-for-firefox/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 05:22:25 +0000</pubDate>
		<dc:creator>Andre Noel</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ubiquity]]></category>

		<guid isPermaLink="false">http://en.andrenoel.com.br/?p=88</guid>
		<description><![CDATA[I installed Ubiquity on my Firefox and I&#8217;m a little crazy, because it&#8217;s very good&#8230; See the video: Ubiquity for Firefox from Aza Raskin on Vimeo.]]></description>
			<content:encoded><![CDATA[<p>I installed <a href="http://ubiquity.mozilla.com/">Ubiquity on my Firefox</a> and I&#8217;m a little crazy, because it&#8217;s very good&#8230;</p>
<p>See the video:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="298" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=1561578&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="298" src="http://vimeo.com/moogaloop.swf?clip_id=1561578&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/1561578">Ubiquity for Firefox</a> from <a href="http://vimeo.com/user532161">Aza Raskin</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://en.andrenoel.com.br/2009/07/31/ubiquity-for-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vacuum your Firefox databases for better performance</title>
		<link>http://en.andrenoel.com.br/2009/07/27/vacuum-your-firefox-databases-for-better-performance/</link>
		<comments>http://en.andrenoel.com.br/2009/07/27/vacuum-your-firefox-databases-for-better-performance/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 05:14:28 +0000</pubDate>
		<dc:creator>Andre Noel</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[sqlite]]></category>

		<guid isPermaLink="false">http://en.andrenoel.com.br/?p=74</guid>
		<description><![CDATA[A few days ago I marked an article to read later and I finally read it. It&#8217;s about how to Vacuum your Firefox databases for better performance. According the post, &#8220;since Firefox 3.0, bookmarks, history and most storage is kept in SQLite databases&#8221;. So, optimize this databases is very healthy to Firefox. And it&#8217;s very]]></description>
			<content:encoded><![CDATA[<p>A few days ago I marked an article to read later and I finally read it. It&#8217;s about how to <a href="http://mozillalinks.org/wp/2009/07/vacuum-your-firefox-databases-for-better-performance/">Vacuum your Firefox databases for better performance</a>.</p>
<p>According the post, &#8220;since Firefox 3.0, bookmarks, history and most storage is kept in SQLite databases&#8221;. So, optimize this databases is very healthy to Firefox.</p>
<p><strong>And it&#8217;s very easy to do.</strong> On Ubuntu (I did on 9.04) install the sqlite3 package. Open the terminal and type:</p>
<p><code>sudo aptitude install sqlite3</code></p>
<p>After, still in terminal, access your Firefox profile folder:</p>
<p><code>cd ~/.mozilla/firefox/something_weird.default</code></p>
<p>In my computer, this <em>something_weird.default</em> is <em>73cm0ffy.default</em>.</p>
<p>You can see many .sqlite files inside this folder, these are the database to optimize. To do this, close Firefox (only after read or copy this post <img src='http://en.andrenoel.com.br/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ), then type, for each file:</p>
<p><code>sqlite3 file_name.sqlite vacuum</code></p>
<p><strong>And there&#8217;s a way to vacuum all the files at once?</strong> Sure. You&#8217;re using a Linux terminal! To do this, type:</p>
<p><code>for i in *.sqlite; do sqlite3 $i vacuum; done</code></p>
<p>And done.</p>
]]></content:encoded>
			<wfw:commentRss>http://en.andrenoel.com.br/2009/07/27/vacuum-your-firefox-databases-for-better-performance/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to open PDFs inside Firefox on Linux</title>
		<link>http://en.andrenoel.com.br/2009/07/19/how-to-open-pdfs-inside-firefox-on-linux/</link>
		<comments>http://en.andrenoel.com.br/2009/07/19/how-to-open-pdfs-inside-firefox-on-linux/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 07:39:50 +0000</pubDate>
		<dc:creator>Andre Noel</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[evince]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://en.andrenoel.com.br/?p=51</guid>
		<description><![CDATA[I was thinking about how to open a PDF file inside Firefox on Ubuntu, like the Acrobat plugin do on Windows, but using Evince. So I &#8220;googled&#8221; about Evince and Firefox and found it quickly in the Lâmpada Azul site. Altought it has many steps, I used only the first and it worked very well.]]></description>
			<content:encoded><![CDATA[<p>I was thinking about how to open a PDF file inside Firefox on Ubuntu, like the Acrobat plugin do on Windows, but using Evince.</p>
<p>So I &#8220;googled&#8221; about Evince and Firefox and found it quickly in the <a href="http://weblog.jcraveiro.com/artigos/integrar-evince-e-firefox/">Lâmpada Azul</a> site. Altought it has many steps, I used only the first and it worked very well. You have only to install the mozplugger package:</p>
<p><code>sudo aptitude install mozplugger</code></p>
<p>Alright. It may works now.</p>
]]></content:encoded>
			<wfw:commentRss>http://en.andrenoel.com.br/2009/07/19/how-to-open-pdfs-inside-firefox-on-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

