<?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>In Nomine - The Lotus Land &#187; firefox</title>
	<atom:link href="http://www.in-nomine.org/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.in-nomine.org</link>
	<description>The focused mind can pierce through stone...</description>
	<lastBuildDate>Sat, 14 May 2011 20:22:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Firefox 3.6 and the million proxy password popups</title>
		<link>http://www.in-nomine.org/2010/03/18/firefox-3-6-and-the-million-proxy-password-popups/</link>
		<comments>http://www.in-nomine.org/2010/03/18/firefox-3-6-and-the-million-proxy-password-popups/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 08:40:04 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=530</guid>
		<description><![CDATA[I needed to authenticate with a proxy today and with Firefox 3.6 I constantly got user/password dialog boxes. Of course, this is annoying. Some searching lead me to an article on the Mozilla support site which mentions a setting (which &#8230; <a href="http://www.in-nomine.org/2010/03/18/firefox-3-6-and-the-million-proxy-password-popups/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I needed to authenticate with a proxy today and with Firefox 3.6 I constantly got user/password dialog boxes. Of course, this is annoying. Some searching lead me to <a title=" Firefox asks me to send the username and password to a proxy" href="https://support.mozilla.com/en-US/forum/1/596899">an article on the Mozilla support site</a> which mentions a setting (which you can reach via <code>about:config</code>) named <code>network.auth.force-generic-ntlm</code> which, when set from <code>false</code> to <code>true</code>, fixes a lot of these popups.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2010/03/18/firefox-3-6-and-the-million-proxy-password-popups/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MathML and SVG in HTML 5 with Firefox</title>
		<link>http://www.in-nomine.org/2009/07/08/mathml-and-svg-in-html-5-with-firefox/</link>
		<comments>http://www.in-nomine.org/2009/07/08/mathml-and-svg-in-html-5-with-firefox/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 14:47:21 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[mathml]]></category>
		<category><![CDATA[svg]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=320</guid>
		<description><![CDATA[I&#8217;ve been using MathML for a while now for some of my documentation work on 3D graphics. Unfortunately the only way at the moment is to use XHTML 1.1 modular doctype to include either or both of MathML and SVG. &#8230; <a href="http://www.in-nomine.org/2009/07/08/mathml-and-svg-in-html-5-with-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using MathML for a while now for some of my documentation work on 3D graphics. Unfortunately the only way at the moment is to use XHTML 1.1 modular doctype to include either or both of MathML and SVG. In <a title="HTML 5 Specification" href="http://www.whatwg.org/specs/web-apps/current-work/">HTML 5</a> these have become embedded content parts of the specification. So for example, using MathML would be as simple as doing:</p>
<pre class="brush: xml; title: ; notranslate">&lt;!DOCTYPE HTML&gt;
&lt;html&gt;
  &lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;MathML test&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;math&gt;
      &lt;mrow&gt;
        &lt;mi&gt;y&lt;/mi&gt;
        &lt;mo&gt;=&lt;/mo&gt;
        &lt;msup&gt;
          &lt;mi&gt;x&lt;/mi&gt;
          &lt;mn&gt;2&lt;/mn&gt;
        &lt;/msup&gt;
      &lt;/mrow&gt;
    &lt;/math&gt;
  &lt;/body&gt;
&lt;/html&gt;</pre>
<p>Unfortunately the only browser to support either MathML or (parts of) HTML 5 at this moment is Firefox 3.5. However, the MathML or SVG embedded content did not render under 3.5. After reading <a title="HTML 5 Parsing" href="http://ejohn.org/blog/html-5-parsing/">John Resig&#8217;s post about a new HTML parsing engine in Mozilla&#8217;s Gecko engine</a> I set out to test this engine&#8217;s support  by <a title="Firefox trunk nightlies" href="http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/">downloading the latest nightly</a> and setting <code>html5.enable</code> to <code>true</code> in <code>about:config</code> and &#8216;lo and behold, it renders as expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/07/08/mathml-and-svg-in-html-5-with-firefox/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FireMath &#8211; MathML editing made easier</title>
		<link>http://www.in-nomine.org/2009/06/29/firemath-mathml-editing-made-easier/</link>
		<comments>http://www.in-nomine.org/2009/06/29/firemath-mathml-editing-made-easier/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 12:54:06 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firemath]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[mathml]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=318</guid>
		<description><![CDATA[I discovered FireMath today, an addon for Firefox that makes editing MathML much, much easier. Give it a spin. I just wish more browsers than Firefox supported MathML out of the box.]]></description>
			<content:encoded><![CDATA[<p>I discovered <a title="FireMath website" href="http://www.firemath.info/">FireMath</a> today, an addon for Firefox that makes editing MathML much, much easier. Give it a spin. I just wish more browsers than Firefox supported MathML out of the box.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/06/29/firemath-mathml-editing-made-easier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TinyMCE in WordPress 2.7.1 not working on FreeBSD?</title>
		<link>http://www.in-nomine.org/2009/02/22/tinymce-in-wordpress-271-not-working-on-freebsd/</link>
		<comments>http://www.in-nomine.org/2009/02/22/tinymce-in-wordpress-271-not-working-on-freebsd/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 11:44:18 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[tinymce]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=260</guid>
		<description><![CDATA[Discovered today that with both Firefox 3.0 and Opera 9.63 on FreeBSD, TinyMCE within WordPress 2.7.1 is not allowing me to use the visual editing mode. I tried the example of TinyMCE and it works without problems. Based on this &#8230; <a href="http://www.in-nomine.org/2009/02/22/tinymce-in-wordpress-271-not-working-on-freebsd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Discovered today that with both Firefox 3.0 and Opera 9.63 on FreeBSD, TinyMCE within <a href="http://www.wordpress.org/">WordPress</a> 2.7.1 is not allowing me to use the visual editing mode. I tried the <a href="http://tinymce.moxiecode.com/examples/full.php">example of TinyMCE</a> and it works without problems. Based on this and the fact it works on Windows, there must be something weird in either WordPress or its included version of TinyMCE with FreeBSD. I <a href="http://wordpress.org/support/topic/246349">logged a post</a> over at the WordPress forums.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/02/22/tinymce-in-wordpress-271-not-working-on-freebsd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Zotero and PDF indexing on FreeBSD</title>
		<link>http://www.in-nomine.org/2009/02/22/zotero-and-pdf-indexing-on-freebsd/</link>
		<comments>http://www.in-nomine.org/2009/02/22/zotero-and-pdf-indexing-on-freebsd/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 11:27:57 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[zotero]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=253</guid>
		<description><![CDATA[For a while now I have been using Zotero on Firefox to handle researching topics. It also allows PDF indexing, but for this you need to set some things up first. Start by installing xpdf from ports, it&#8217;s located under &#8230; <a href="http://www.in-nomine.org/2009/02/22/zotero-and-pdf-indexing-on-freebsd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For a while now I have been using <a href="http://www.zotero.org/">Zotero</a> on Firefox to handle researching topics. It also allows PDF indexing, but for this you need to set some things up first. Start by installing xpdf from ports, it&#8217;s located under <code>graphics/xpdf</code>. This will install <code>pdfinfo</code> and <code>pdftotext</code> amongst others. Next go to your Zotero data directory, by default this is the <code>zotero</code> directory under your profile directory in <code>$HOME/.mozilla/firefox</code>, and create two symbolic links <code>pdfinfo-`uname -s`-`uname -m`</code> and <code>pdftotext-`uname -s`-`uname -m`</code> which will point to <code>/usr/local/bin/pdfinfo</code> and <code>/usr/local/bin/pdftotext</code>, respectively.</p>
<p>Now, when you restart Firefox, Zotero should be able to pick up the files. Check by going into Zotero&#8217;s preferences and navigate to the <code>Search</code> tab. It should state something to the effect of <code>pdftotext version UNKNOWN is installed</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/02/22/zotero-and-pdf-indexing-on-freebsd/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Running ClickOnce .NET on Firefox</title>
		<link>http://www.in-nomine.org/2007/06/06/running-clickonce-net-on-firefox/</link>
		<comments>http://www.in-nomine.org/2007/06/06/running-clickonce-net-on-firefox/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 11:39:08 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/2007/06/06/running-clickonce-net-on-firefox/</guid>
		<description><![CDATA[Currently only Internet Explorer can run ClickOnce applications natively. Now with FFClickOnce, a Firefox add-on, you can also launch these from within Firefox. Quite useful if you don&#8217;t want to use Internet Explorer, but do want to test deployment of &#8230; <a href="http://www.in-nomine.org/2007/06/06/running-clickonce-net-on-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Currently only Internet Explorer can run <a href="http://msdn.microsoft.com/clickonce/" title="ClickOnce documentation at MSDN">ClickOnce </a>applications natively. Now with <a href="https://addons.mozilla.org/en-US/firefox/addon/1608" title="FFClickOnce application launcher">FFClickOnce</a>, a Firefox add-on, you can also launch these from within Firefox. Quite useful if you don&#8217;t want to use Internet Explorer, but do want to test deployment of .NET applications with your favourite browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2007/06/06/running-clickonce-net-on-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>urchinTracker() is not defined</title>
		<link>http://www.in-nomine.org/2007/01/03/urchintracker-is-not-defined/</link>
		<comments>http://www.in-nomine.org/2007/01/03/urchintracker-is-not-defined/#comments</comments>
		<pubDate>Wed, 03 Jan 2007 15:48:16 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/2007/01/03/urchintracker-is-not-defined/</guid>
		<description><![CDATA[I tried to use Google Analytics for the first time and encountered an error message I&#8217;ve seen before. Firebug would report: urchinTracker() is not defined. I just could not understand why I would get this error message. Turns out to &#8230; <a href="http://www.in-nomine.org/2007/01/03/urchintracker-is-not-defined/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I tried to use Google Analytics for the first time and encountered an error message I&#8217;ve seen before.</p>
<p>Firebug would report: urchinTracker() is not defined.</p>
<p>I just could not understand why I would get this error message.</p>
<p>Turns out to be simpler than I imagined.</p>
<ol>
<li>I was blocking urchin.js at googleanalytics.com using AdBlock (so for all of you people who blindly trust their results, they&#8217;re awfully skewed),</li>
<li>the provided JavaScript from Google does not properly check if the urchinTracker() function is indeed defined prior to calling it. Suppose you have it blocked through AdBlock the urchin.js file won&#8217;t load, next you try to call the function, which isn&#8217;t declared in the namespace and thus triggers an error in the Firebug debugger.</li>
</ol>
<p>One way around this was to use the code from <a href="http://www.buayacorp.com/archivos/google-analytics-urchintracker-is-not-defined/" title="Google Analytics: urchinTracker is not defined">http://www.buayacorp.com/archivos/google-analytics-urchintracker-is-not-defined/</a> and the problem should go away. It seems that the suggestion in this thread <a href="http://groups.google.co.nz/group/analytics-help-troubleshoot/browse_thread/thread/b4bd2bff1c6b8b4c/6291f717e0e8658f%236291f717e0e8658f" title="Javascript error 'Urchintracker is undefined'">over at Google groups</a> has already been incorporated with the current urchin.js file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2007/01/03/urchintracker-is-not-defined/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weird weathering days</title>
		<link>http://www.in-nomine.org/2005/07/19/weird-weathering-days/</link>
		<comments>http://www.in-nomine.org/2005/07/19/weird-weathering-days/#comments</comments>
		<pubDate>Tue, 19 Jul 2005 09:30:53 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[chinese]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[hindi]]></category>
		<category><![CDATA[hollywood]]></category>
		<category><![CDATA[japanese]]></category>
		<category><![CDATA[korean]]></category>
		<category><![CDATA[thai]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Went to see the Fantastic Four on Saturday.  A pretty good movie to be honest, very funny.  Seeing Jessica Alba as Susan Richards (with appropriately dyed blonde hair) was actually enjoyable, of which I had my doubts before going to see it.

In other news, Mozilla/Firefox released <a href="http://www.mozilla.org/projects/firefox/">Deer Park Alpha 2</a> is now released.

These are interesting tidbits from the release notes:

<ul>
<li>Faster browser navigation with improvements to back and forward button performance</li>
<li>Drag and drop reordering for browser tabs</li>
<li>Improvements to popup blocking</li>
 <a href="http://www.in-nomine.org/2005/07/19/weird-weathering-days/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Went to see the Fantastic Four on Saturday.  A pretty good movie to be honest, very funny.  Seeing Jessica Alba as Susan Richards (with appropriately dyed blonde hair) was actually enjoyable, of which I had my doubts before going to see it.</p>
<p>In other news, Mozilla/Firefox released <a href="http://www.mozilla.org/projects/firefox/">Deer Park Alpha 2</a> is now released.</p>
<p>These are interesting tidbits from the release notes:</p>
<ul>
<li>Faster browser navigation with improvements to back and forward button performance</li>
<li>Drag and drop reordering for browser tabs</li>
<li>Improvements to popup blocking</li>
</ul>
<p>Been working on some ideas for my labs@tendra project.  This will focus heavily on languages, especially Chinese, Japanese, Korean, Thai and probably Hindi.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2005/07/19/weird-weathering-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X can suck hard at times</title>
		<link>http://www.in-nomine.org/2004/12/06/x-can-suck-hard-at-times/</link>
		<comments>http://www.in-nomine.org/2004/12/06/x-can-suck-hard-at-times/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[mathml]]></category>
		<category><![CDATA[unicode]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[x11]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[And to the question why people still use Windows try setting up your X environment to properly support MathML with Firefox.

Truly, using new fonts within X is a black art still reminiscent of dark and medieval times when we did not know better.  I thought we would have progressed that stage by now.

From a user perspective Windows definitely wins hands down in this, drag a file to a Fonts folder, done.
No, X wants us to use crazy incantations of mkfontdir, mkfontscale, fc-cache, ttmkfdir, xset with various fp options and hope xlsfonts shows the font you are after.

Users do <b>NOT</b> want to be bothered with foundries, weights, encoding types, and what not.  They just want to add a font, select it in their favourite application and go: "owww, pretty!"
 <a href="http://www.in-nomine.org/2004/12/06/x-can-suck-hard-at-times/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>And to the question why people still use Windows try setting up your X environment to properly support MathML with Firefox.</p>
<p>Truly, using new fonts within X is a black art still reminiscent of dark and medieval times when we did not know better.  I thought we would have progressed that stage by now.</p>
<p>From a user perspective Windows definitely wins hands down in this, drag a file to a Fonts folder, done.<br />
No, X wants us to use crazy incantations of mkfontdir, mkfontscale, fc-cache, ttmkfdir, xset with various fp options and hope xlsfonts shows the font you are after.</p>
<p>Users do <strong>NOT</strong> want to be bothered with foundries, weights, encoding types, and what not.  They just want to add a font, select it in their favourite application and go: &#8220;owww, pretty!&#8221;</p>
<p>Is that, anno 2004, too much to ask?</p>
<p>Apparently&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2004/12/06/x-can-suck-hard-at-times/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

