<?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>Into.the.Void. &#187; firefox</title>
	<atom:link href="http://www.void.gr/kargig/blog/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.void.gr/kargig/blog</link>
	<description>Into The Void</description>
	<lastBuildDate>Tue, 20 Jul 2010 11:16:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Get adblocking back for archivum.info</title>
		<link>http://www.void.gr/kargig/blog/2009/11/17/get-adblocking-back-for-archivum-info/</link>
		<comments>http://www.void.gr/kargig/blog/2009/11/17/get-adblocking-back-for-archivum-info/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 12:14:33 +0000</pubDate>
		<dc:creator>kargig</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[adblock]]></category>
		<category><![CDATA[adblockplus]]></category>
		<category><![CDATA[alert]]></category>
		<category><![CDATA[archivum.info]]></category>
		<category><![CDATA[block ads]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.void.gr/kargig/blog/?p=885</guid>
		<description><![CDATA[If you have adblock enabled and you try to visit any url of www.archivum.info you will get a really nasty alert saying: 
You Are Using Adblock Plus or some other advert blocking software! Archivum.info relies on advertising for revenue. Please add www.archivum.info to your ad blocking whitelist or disable ad blocking when you visit www.archivum.info.
When [...]]]></description>
			<content:encoded><![CDATA[<p>If you have adblock enabled and you try to visit any url of <a href="http://www.archivum.info">www.archivum.info</a> you will get a really nasty alert saying: </p>
<blockquote><p>You Are Using Adblock Plus or some other advert blocking software! Archivum.info relies on advertising for revenue. Please add www.archivum.info to your ad blocking whitelist or disable ad blocking when you visit www.archivum.info.</p></blockquote>
<p>When I first saw this I laughed&#8230;and then I tried to find a way to bypass it.<br />
I used <a href="http://curl.haxx.se/">curl</a> to see the sites html code:<br />
<pre><code2>$ curl -v www.archivum.info
curl -v www.archivum.info 
* About to connect() to www.archivum.info port 80 (#0)
*&nbsp;&nbsp; Trying 69.147.224.162... connected
* Connected to www.archivum.info (69.147.224.162) port 80 (#0)
&gt; GET / HTTP/1.1
&gt; User-Agent: curl/7.19.5 (i486-pc-linux-gnu) libcurl/7.19.5 OpenSSL/0.9.8k zlib/1.2.3.3 libidn/1.15 libssh2/1.2
&gt; Host: www.archivum.info
&gt; Accept: */*
&gt; 
&lt; HTTP/1.1 200 OK
&lt; Date: Tue, 17 Nov 2009 11:24:22 GMT
&lt; Server: Apache
&lt; Last-Modified: Mon, 16 Nov 2009 08:41:17 GMT
&lt; Accept-Ranges: bytes
&lt; Content-Length: 9392
&lt; Vary: Accept-Encoding
&lt; Content-Type: text/html
&lt; 
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;archivum.info - The Internet archive.&lt;/title&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;script type=&quot;text/javascript&quot;&gt;var disabled = false;&lt;/script&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.archivum.info/js/adblocker_probe.js?
site=http://googlead.foobar.tld/&quot;&gt;&lt;/script&gt;&lt;script type=&quot;text/javascript&quot;&gt;if (disabled == false) { location.replace(&quot;http://www.archivum.info/denied&quot;);
alert(&quot;You Are Using Adblock Plus or some other advert blocking software! Archivum.info relies on advertising
for revenue. Please add www.archivum.info to your ad blocking whitelist or disable ad blocking when you visit
www.archivum.info.&quot;);}&lt;/script&gt;&lt;/head&gt;

[snip]</code2></pre></p>
<p>Here&#8217;s how this site blocks Adblockplus: there&#8217;s a variable called <em>disabled</em> set to &#8220;<strong>false</strong>&#8221; then if a js (http://www.archivum.info/js/adblocker_probe.js) runs it sets <em>disabled</em> to &#8220;<strong>true</strong>&#8221; . The hint is that adblockplus blocks urls starting with &#8220;<strong>googlead.</strong>&#8221; so it won&#8217;t visit &#8220;http://www.archivum.info/js/adblocker_probe.js?site=http://googlead.foobar.tld/&#8221; and the variable will remain &#8220;<strong>false</strong>&#8220;. Then the alert pops up.</p>
<p>The solution is very simple, just add an exception to your local AdblockPlus rules, AdblockPlus Preferences -> Add Filter:<br />
<code>@@|http://www.archivum.info/js/adblocker_probe.js?site=http://googlead.foobar.tld/</code></p>
<p>So firefox, visits the js url, <em>disabled</em> becomes &#8220;<strong>true</strong>&#8221; you are allowed to continue browsing the site and AdblockPlus continues blocking all blockable items.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.void.gr/kargig/blog/2009/11/17/get-adblocking-back-for-archivum-info/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uzbl to you too!</title>
		<link>http://www.void.gr/kargig/blog/2009/09/16/uzbl-to-you-too/</link>
		<comments>http://www.void.gr/kargig/blog/2009/09/16/uzbl-to-you-too/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 14:15:53 +0000</pubDate>
		<dc:creator>kargig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[fluxbox]]></category>
		<category><![CDATA[iceweasel]]></category>
		<category><![CDATA[lightweight]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[urxvt]]></category>
		<category><![CDATA[uzbl]]></category>

		<guid isPermaLink="false">http://www.void.gr/kargig/blog/?p=800</guid>
		<description><![CDATA[I&#8217;ve been trying uzbl for the last few days and I am pretty much impressed on how useful such a small application can be in certain usage cases!
I installed it on my Debian testing using the following blog post: Installing uzbl on Debian Squeeze .
Be sure to make install else you&#8217;ll have no config and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying <a href="http://www.uzbl.org/">uzbl</a> for the last few days and I am pretty much impressed on how useful such a small application can be in certain usage cases!</p>
<p>I installed it on my Debian testing using the following blog post: <a href="http://blog.friedpancakes.com/index.php/2009/07/07/installing-uzbl-on-debian-squeeze/">Installing uzbl on Debian Squeeze </a>.<br />
Be sure to <em>make install</em> else you&#8217;ll have no config and uzbl will be unusable!!!</p>
<p>The first place I used it was for the urlLauncher plugin of <a href="http://software.schmorp.de/pkg/rxvt-unicode.html">urxvt</a>. On my <em>.Xdefaults</em> I have the following piece of code:<br />
<code>urxvt.perl-ext-common:  default,matcher,-option-popup,-selection-popup,-realine<br />
urxvt.matcher.button:   1<br />
urxvt.urlLauncher:      /usr/local/bin/urxvt-url.sh</code></p>
<p>and my <em>/usr/local/bin/urxvt-url.sh</em> contains:<br />
<code>#!/bin/sh<br />
uzbl "$1"</code></p>
<p>Now every url on the console get&#8217;s highlighted and I can open it with uzbl. And that means opening really fast!</p>
<p>Example:<br />
urxvt terminal (tabbed by fluxbox) with some urls highlighted by the perl <em>matcher</em> plugin of urxvt:<br />
<a href="http://www.void.gr/kargig/blog/wp-content/urxvt-url-highlight.png"><img src="http://www.void.gr/kargig/blog/wp-content/urxvt-url-highlight-300x179.png" alt="urxvt-url-highlight" title="urxvt-url-highlight" width="300" height="179" class="alignnone size-medium wp-image-801" /></a></p>
<p>left clicking on one of the urls opens it with uzbl:<br />
<a href="http://www.void.gr/kargig/blog/wp-content/uzbl-window.png"><img src="http://www.void.gr/kargig/blog/wp-content/uzbl-window-300x183.png" alt="uzbl-window" title="uzbl-window" width="300" height="183" class="alignnone size-medium wp-image-802" /></a></p>
<p>Apart from that, I&#8217;ve started using uzbl to open links on instant messengers, IRC clients and in every other place that people send me simple links to check out or I need a fast browser instance. Some people might say that it looks like links2 graphical mode, but it&#8217;s NOT like opening urls with &#8220;links -G&#8221; because uzbl is based on webkit and that means it can deal with javascript, java, flash, whatever&#8230;</p>
<p>I just love the way you can keybind all the actions you want on it&#8230;on the example config that comes with it, you quit the browser by typing ZZ&#8230;how great is that ? <img src='http://www.void.gr/kargig/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>Some usage tips</strong><br />
1) Tabbed behavior (if you have fluxbox):<br />
In <em>~/.config/uzbl/config</em> add<br />
<code>bind t _    = spawn uzbl --uri %s</code><br />
and in <em>~/.fluxbox/apps</em> add the [group] tag before the [app] tag for uzbl like that:<br />
<pre><code2>[group]
 [app] (name=uzbl) (class=Uzbl)
&nbsp;&nbsp;[Workspace]&nbsp;&nbsp; {0} 
&nbsp;&nbsp;[Head]&nbsp;&nbsp;&nbsp;&nbsp;{0} 
&nbsp;&nbsp;[Dimensions]&nbsp;&nbsp;{800 1284}
&nbsp;&nbsp;[Position]&nbsp;&nbsp;&nbsp;&nbsp;(UPPERLEFT) {0 0}
&nbsp;&nbsp;[Maximized]&nbsp;&nbsp; {yes}
&nbsp;&nbsp;[Jump]&nbsp;&nbsp;&nbsp;&nbsp;{yes}
&nbsp;&nbsp;[Close]&nbsp;&nbsp; {yes}
[end]
</code2></pre><br />
Now the command <code>t www.google.com</code> inside uzbl, will open a new tabbed window of uzbl with www.google.com loaded in it.</p>
<p>2) Close uzbl window with ctrl+w<br />
In <em>~/.config/uzbl/config</em> add:<br />
<pre><code2>bind&nbsp;&nbsp;&nbsp;&nbsp; ctrl+v ctrl+w&nbsp;&nbsp;&nbsp;&nbsp;= exit
</code2></pre><br />
(press ctrl+v ctrl+w one after the other and you will get something like ^W in the file)</p>
<p>P.S. If you are a person that just came from the point and click windows world to the beautiful world of linux, or you are a person that loves bloated desktop managers like KDE/gnome/etc or bloated applications like firefox/iceweasel/konqueror don&#8217;t even think of installing it. You&#8217;ll never understand its value&#8230;<br />
P.S.2. <a href="http://lwn.net/Articles/262570/">If Richard Stallman decided to browse the web and had an internet connection</a> uzbl would probably be his browser of choice <img src='http://www.void.gr/kargig/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.void.gr/kargig/blog/2009/09/16/uzbl-to-you-too/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Fixing image distortion on websites using Firefox/Iceweasel 3.5 on Debian testing with intel xorg driver</title>
		<link>http://www.void.gr/kargig/blog/2009/08/19/fixing-image-distortion-on-websites-using-firefoxiceweasel-3-5-on-debian-testing-with-intel-xorg-driver/</link>
		<comments>http://www.void.gr/kargig/blog/2009/08/19/fixing-image-distortion-on-websites-using-firefoxiceweasel-3-5-on-debian-testing-with-intel-xorg-driver/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 16:21:46 +0000</pubDate>
		<dc:creator>kargig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[3.5]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[bugzilla]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[distortion]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[exa]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[iceweasel]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[swiftfox]]></category>
		<category><![CDATA[xaa]]></category>
		<category><![CDATA[xorg]]></category>

		<guid isPermaLink="false">http://www.void.gr/kargig/blog/?p=720</guid>
		<description><![CDATA[Lately I noticed some image distortion appearing on some websites using my laptop with Debian squeeze. Menus on swiftfox did not appear as they should, some logos appeared out of their place and there were artifacts and other annoying things. For example Planet Gnome looked like this:

When using iceweasel 3.0.12 everything looked fine. Then I [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I noticed some image distortion appearing on some websites using my laptop with Debian squeeze. Menus on swiftfox did not appear as they should, some logos appeared out of their place and there were artifacts and other annoying things. For example Planet Gnome looked like this:<br />
<a href="http://www.void.gr/kargig/blog/wp-content/image-distortion.jpg"><img src="http://www.void.gr/kargig/blog/wp-content/image-distortion-300x183.jpg" alt="image-distortion" title="image-distortion" width="300" height="183" class="alignnone size-medium wp-image-721" /></a><br />
When using iceweasel 3.0.12 everything looked fine. Then I followed a<a href="http://www.debiantoday.com/how-to-install-iceweasel-3-5-on-lenny/"> guide to install Iceweasel 3.5 from experimental</a> to my system. Images looked distorted again. So there must have been a problem with the latest xulrunner&#8230;.</p>
<p>After some googling I bumped into <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=491871">Debian bug #491871 &#8211; [965GM EXA] display corruption with xulrunner 1.9</a>. Following <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=491871#67">post #67</a> on that thread I was able to repair my xorg.conf to something that fixed the image distortion. Now Planet Gnome looks like this:<br />
<a href="http://www.void.gr/kargig/blog/wp-content/no-image-distortion.jpg"><img src="http://www.void.gr/kargig/blog/wp-content/no-image-distortion-300x183.jpg" alt="no-image-distortion" title="no-image-distortion" width="300" height="183" class="alignnone size-medium wp-image-723" /></a></p>
<p>Some info:</p>
<blockquote><p># apt-cache policy iceweasel xserver-xorg-video-intel xulrunner-1.9.1<br />
<strong>iceweasel:</strong><br />
  Installed: 3.5.1-1<br />
  Candidate: 3.5.1-1<br />
  Version table:<br />
 *** 3.5.1-1 0<br />
          1 http://ftp.debian.org experimental/main Packages<br />
        100 /var/lib/dpkg/status<br />
     3.0.12-1 0<br />
        500 http://ftp.de.debian.org squeeze/main Packages<br />
         99 http://ftp.de.debian.org sid/main Packages<br />
<strong>xserver-xorg-video-intel:</strong><br />
  Installed: 2:2.3.2-2+lenny6<br />
  Candidate: 2:2.3.2-2+lenny6<br />
  Version table:<br />
     2:2.8.0-2 0<br />
         99 http://ftp.de.debian.org sid/main Packages<br />
 *** 2:2.3.2-2+lenny6 0<br />
        500 http://ftp.de.debian.org squeeze/main Packages<br />
        100 /var/lib/dpkg/status<br />
<strong>xulrunner-1.9.1:</strong><br />
  Installed: 1.9.1.1-2<br />
  Candidate: 1.9.1.1-2<br />
  Version table:<br />
 *** 1.9.1.1-2 0<br />
          1 http://ftp.debian.org experimental/main Packages<br />
        100 /var/lib/dpkg/status
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.void.gr/kargig/blog/2009/08/19/fixing-image-distortion-on-websites-using-firefoxiceweasel-3-5-on-debian-testing-with-intel-xorg-driver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Firefox Password Exporter</title>
		<link>http://www.void.gr/kargig/blog/2009/07/02/using-firefox-password-exporter/</link>
		<comments>http://www.void.gr/kargig/blog/2009/07/02/using-firefox-password-exporter/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 11:15:26 +0000</pubDate>
		<dc:creator>kargig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bugfix]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[passsword]]></category>
		<category><![CDATA[shell script]]></category>

		<guid isPermaLink="false">http://www.void.gr/kargig/blog/?p=661</guid>
		<description><![CDATA[I am using the Password Exporter addon for Firefox to sync my passwords between my various Firefox installations (2 OS on the laptop, 2 OS on the desktop and one for portable firefox on a usb stick). I am using it with version 3.0.X and 3.5 just fine.
I have created a shell script that finds [...]]]></description>
			<content:encoded><![CDATA[<p>I am using the <a href="https://addons.mozilla.org/en-US/firefox/addon/2848">Password Exporter addon</a> for <a href="http://getfirefox.com">Firefox</a> to sync my passwords between my various Firefox installations (2 OS on the laptop, 2 OS on the desktop and one for portable firefox on a usb stick). I am using it with version 3.0.X and 3.5 just fine.</p>
<p>I have created a shell script that finds the differences between two exported password files and creates a new xml with the differences of the two so that one can edit it and pick the ones he wants imported.<br />
File: <a href='http://www.void.gr/kargig/blog/wp-content/ff-password-sync.sh'>ff-password-sync.sh</a><br />
To use it follow these two steps on each firefox installation:<br />
<em>Firefox->Tools->Add-ons->Password Exporter->Preferences->Export Passwords</em><br />
Then use the script (you need bash and mktemp):<br />
<code>$ ./ff-password-sync.sh laptop-password-export-2009-07-01 dektop-password-export-2009-07-02</code><br />
If it runs successfully you should have 2 files in your home dir:<br />
<strong>ff-password-sync.diff</strong>: Contains the differences of the two files in diff format<br />
<strong>ff-password-sync.xml</strong>: Contains the unique username password combinations that are missing<br />
Edit ff-password-sync.xml to possibly remove entries you don&#8217;t want imported and then go to:<br />
<em>Firefox->Tools->Add-ons->Password Exporter->Preferences->Import Passwords</em><br />
and load ff-password-sync.xml</p>
<p>If you engage in this process it&#8217;s almost certain that you will hit this bug:<br />
<a href="http://code.google.com/p/passwordexporter/issues/detail?id=37">&#8220;Can&#8217;t add a login with both a httpRealm and formSubmitURL.&#8217; when calling method: [nsILoginManager::addLogin]&#8220;</a></p>
<p>The fix is provided by a user on his blog: <a href="http://blog.vicshih.com/2009/01/fix-for-firefoxs-password-exporter-add.html">Fix for Firefox’s Password Exporter Add-on </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.void.gr/kargig/blog/2009/07/02/using-firefox-password-exporter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Filter out advertisments from greek sites using adblock plus</title>
		<link>http://www.void.gr/kargig/blog/2009/06/23/filter-out-advertisments-from-greek-sites-using-adblock-plus/</link>
		<comments>http://www.void.gr/kargig/blog/2009/06/23/filter-out-advertisments-from-greek-sites-using-adblock-plus/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 20:46:11 +0000</pubDate>
		<dc:creator>kargig</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[adblock]]></category>
		<category><![CDATA[adblock plus]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.void.gr/kargig/blog/?p=641</guid>
		<description><![CDATA[I&#8217;ve decided to start a filter for adblock plus to filter out advertisements from Greek sites.
You can find more information on subscribing to the filter on the page: Greek adblock plus filter.
I started the list a long time ago with some personal filter for sites I visit the most. In order to enrich the list [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided to start a filter for <a href="http://adblockplus.org/">adblock plus</a> to filter out advertisements from Greek sites.</p>
<p>You can find more information on subscribing to the filter on the page: <a href="http://www.void.gr/kargig/blog/greek-adblock-plus-filter/">Greek adblock plus filter</a>.</p>
<p>I started the list a long time ago with some personal filter for sites I visit the most. In order to enrich the list I searched and found a list with the supposedly &#8220;top 50&#8243; greek sites (regarding traffic), so I visited them and started adding filters to reduce the ads on them.</p>
<p>I warn you though, the filters are a bit strict&#8230;and I don&#8217;t like flash ads&#8230;I really don&#8217;t. I hope you like the list. </p>
<p>Please contact me, by <a href="http://www.void.gr/kargig/blog/contact/">email</a> or by commenting on <a href="http://www.void.gr/kargig/blog/greek-adblock-plus-filter/">Greek adblock plus filter</a> page to add your own custom filters to the list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.void.gr/kargig/blog/2009/06/23/filter-out-advertisments-from-greek-sites-using-adblock-plus/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Firefox 3.0.11 to 3.5b99 migration glitch on certificate authority root files</title>
		<link>http://www.void.gr/kargig/blog/2009/06/20/firefox-3-0-11-to-3-5b99-migration-glitch-on-certificate-authority-root-files/</link>
		<comments>http://www.void.gr/kargig/blog/2009/06/20/firefox-3-0-11-to-3-5b99-migration-glitch-on-certificate-authority-root-files/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 00:26:09 +0000</pubDate>
		<dc:creator>kargig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[swiftfox]]></category>

		<guid isPermaLink="false">http://www.void.gr/kargig/blog/?p=607</guid>
		<description><![CDATA[I&#8217;ve recently migrated on my debian from iceweasel (firefox) 3.0.X to swiftfox (firefox) 3.5b99 and I noticed that I could not import any new certificate authority root files. When I used a new profile everything worked as expected, so it was something that had to do with the migration of my old version 3.0.X profile [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently migrated on my debian from iceweasel (firefox) 3.0.X to swiftfox (firefox) 3.5b99 and I noticed that I could not import any new certificate authority root files. When I used a new profile everything worked as expected, so it was something that had to do with the migration of my old version 3.0.X profile to the new, version 3.5. It looks like there has been a modification in the way firefox 3.0.X and firefox 3.5 handles cert8.db file inside the profile directory. As soon as I deleted the file and restarted firefox I could import new certificate authority root files just fine. Of course I lost the old ones I had imported in the past&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.void.gr/kargig/blog/2009/06/20/firefox-3-0-11-to-3-5b99-migration-glitch-on-certificate-authority-root-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switching from Iceweasel to Swiftfox on debian</title>
		<link>http://www.void.gr/kargig/blog/2009/06/13/switching-from-iceweasel-to-swiftfox-on-debian/</link>
		<comments>http://www.void.gr/kargig/blog/2009/06/13/switching-from-iceweasel-to-swiftfox-on-debian/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 08:39:09 +0000</pubDate>
		<dc:creator>kargig</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[adblock plus]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[iceweasel]]></category>
		<category><![CDATA[swiftfox]]></category>

		<guid isPermaLink="false">http://www.void.gr/kargig/blog/?p=598</guid>
		<description><![CDATA[I&#8217;ve bumped into an Iceweasel + adblock plus bug: iceweasel: AdBlock Plus (1.0.2) custom element hiding filters does not work
It looks like Iceweasel from the stable branch of debian (version 3.0.6-1) has a problem hiding elements from websites. That makes some parts of adblock plus useless and ads start appearing on various websites.
What&#8217;s weird is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve bumped into an Iceweasel + adblock plus bug: <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525938">iceweasel: AdBlock Plus (1.0.2) custom element hiding filters does not work</a><br />
It looks like Iceweasel from the stable branch of debian (version 3.0.6-1) has a problem hiding elements from websites. That makes some parts of adblock plus useless and ads start appearing on various websites.<br />
What&#8217;s weird is that the problem only appears on Iceweasel and not on official Firefox (as the bug report says).</p>
<p>My options were to either a) switch to a testing/unstable version of Iceweasel from debian, b) get a binary package from firefox website or c) get another custom version. I chose method c) and I got <a href="http://getswiftfox.com/">swiftfox</a>. Since Swiftfox provides a nice <a href="http://getswiftfox.com/deb.htm">debian repo</a> it was really easy to install and test. The whole experiment got even more interesting since swiftfox provides builds for firefox version 3.5&#8230;</p>
<p>After a <code>update-alternatives --config x-www-browser</code> I was ready to test it.<br />
Swiftfox 3.5b4 works great with adblock plus and it even feels a bit faster. I can&#8217;t really tell for sure though. The only addon I had to reinstall was <a href="http://getfiregpg.org/">firegpg</a>.</p>
<p>My impressions are great so far and I think I will keep it, at least until the bug mentioned gets resolved somehow on the stable branch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.void.gr/kargig/blog/2009/06/13/switching-from-iceweasel-to-swiftfox-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lifesaving ROX tip, open file:// urls</title>
		<link>http://www.void.gr/kargig/blog/2009/05/31/lifesaving-rox-tip-open-file-urls/</link>
		<comments>http://www.void.gr/kargig/blog/2009/05/31/lifesaving-rox-tip-open-file-urls/#comments</comments>
		<pubDate>Sun, 31 May 2009 15:17:55 +0000</pubDate>
		<dc:creator>kargig</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[file://]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[rox]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.void.gr/kargig/blog/?p=566</guid>
		<description><![CDATA[Firefox has the feature of keeping links to downloaded files as urls using the file:// pattern. For example: file:///home/user/downloads/test.zip. If you choose ROX-Filer (/usr/bin/rox) to open these files you will get an error: 
File doesn&#8217;t exist, or I can&#8217;t access it: file:///home/user/downloads/test.zip
One way to correct the error is to follow the instructions of http://lovingthepenguin.blogspot.com/2008/08/use-rox-filer-to-open-containing.html
Another way [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox has the feature of keeping links to downloaded files as urls using the <em>file://</em> pattern. For example: <em>file:///home/user/downloads/test.zip</em>. If you choose ROX-Filer (/usr/bin/rox) to open these files you will get an error: </p>
<blockquote><p>File doesn&#8217;t exist, or I can&#8217;t access it: file:///home/user/downloads/test.zip</p></blockquote>
<p>One way to correct the error is to follow the instructions of <a href="http://lovingthepenguin.blogspot.com/2008/08/use-rox-filer-to-open-containing.html">http://lovingthepenguin.blogspot.com/2008/08/use-rox-filer-to-open-containing.html</a></p>
<p>Another way for Gentoo users, and much proper I guess, is to use <strong>/usr/bin/roxuri</strong>. roxuri is actually a shell script that uses the &#8220;-U&#8221; option for ROX:</p>
<blockquote><p>-U, &#8211;url=URL		open file or directory in URI form</p></blockquote>
<p>For the non-Gentoo users, /usr/bin/roxuri is:<br />
<code>#!/bin/sh<br />
exec "/usr/lib/rox/ROX-Filer/AppRun" -U "$@"</code></p>
<p>Create it and make it executable.</p>
<p>Go to Firefox Preferences/Applications/Content Type -> file and select /usr/bin/roxuri as the default application.</p>
<p>Now files from firefox downloads are handled correctly by rox which uses the proper applications to open them and containing folders open up with <a href="http://roscidus.com/desktop/ROX-Filer">ROX-Filer</a>. That means that while &#8220;file&#8221; is handled by <em>roxuri</em>, a .pdf will be opened by <a href="http://trac.emma-soft.com/epdfview/">epdfview</a> or whatever else you have chosen ROX to open pdf files with.</p>
<p>Both solutions work on ROX version 2.8.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.void.gr/kargig/blog/2009/05/31/lifesaving-rox-tip-open-file-urls/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
