<?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>le blog &#187; Miscellaneous</title>
	<atom:link href="http://www.normyee.net/blog/category/miscellaneous/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.normyee.net/blog</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 20:51:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>A Good Day</title>
		<link>http://www.normyee.net/blog/2008/11/05/a-good-day/</link>
		<comments>http://www.normyee.net/blog/2008/11/05/a-good-day/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 15:10:11 +0000</pubDate>
		<dc:creator>norm</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.normyee.net/blog/2008/11/05/a-good-day/</guid>
		<description><![CDATA[I am gracious to have witnessed such an historic event take place &#038; be a part of the process.]]></description>
			<content:encoded><![CDATA[<p>I am gracious to have witnessed such an historic event take place &#038; be a part of the process. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.normyee.net/blog/2008/11/05/a-good-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preventing xulrunner from caching browser files</title>
		<link>http://www.normyee.net/blog/2008/02/29/preventing-xulrunner-from-caching-browser-files/</link>
		<comments>http://www.normyee.net/blog/2008/02/29/preventing-xulrunner-from-caching-browser-files/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 18:43:48 +0000</pubDate>
		<dc:creator>norm</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.normyee.net/blog/2008/02/29/preventing-xulrunner-from-caching-browser-files/</guid>
		<description><![CDATA[Leap day post! The xulrunner app I developed hits a web server running on localhost to serve up its main interface, via XUL&#8217;s &#60;browser&#62; tag (similar to HTML&#8217;s IFRAME tag). There are instances where the pages &#38; their dependencies should not be cached. Adding the various HTML &#60;meta&#62; tags (expires, pragma, cache-control) prevents the HTML [...]]]></description>
			<content:encoded><![CDATA[<p>Leap day post!</p>
<p>The xulrunner app I developed hits a web server running on localhost to serve up its main interface, via XUL&#8217;s <a href="http://developer.mozilla.org/en/docs/XUL:browser" target="_blank">&lt;browser&gt;</a> tag (similar to HTML&#8217;s IFRAME tag). There are instances where the pages &amp; their dependencies should not be cached. Adding the various HTML &lt;meta&gt; tags (expires, pragma, cache-control) prevents the HTML pages from caching, but we really wanted to prevent .js files from being  cached since we change the content dynamically in some of them so we didn&#8217;t want to return stale data. If we were running <a href="http://httpd.apache.org" target="_blank">Apache</a>, we could just set some HTTP expires headers via <a href="http://httpd.apache.org/docs/2.2/mod/mod_expires.html" target="_blank">mod_expires</a> but since we needed to keep the app installer as small as possible, we were using a much more lightweight web server.</p>
<p>I first tried the following <a href="http://developer.mozilla.org/en/docs/Debugging_a_XULRunner_Application#Prefs" target="_blank">xul prefs</a>:</p>
<blockquote><p>pref(&#8220;nglayout.debug.disable_xul_cache&#8221;, true);<br />
pref(&#8220;nglayout.debug.disable_xul_fastload&#8221;, true);</p></blockquote>
<p>which didn&#8217;t work. I was seeing .js files being saved to xulrunner&#8217;s cache (on WinXP, it was in the C:\Documents and Settings\[User name]\Local Settings\Application Data\[App Vendor]\[App Name]\Profiles\* folder)</p>
<p>Then it dawned on me that since we were using the XUL &lt;browser&gt; tag, it essentially loads up a web browser to display the content. Since that meant it was essentially Firefox 2 loading up, I looked in Firefox&#8217;s about:config for caching-related preferences and voila:</p>
<blockquote><p>pref(&#8220;browser.cache.disk.enable&#8221;, false);</p></blockquote>
<p>I added that to xulrunner&#8217;s prefs.js &amp; no more caching</p>
]]></content:encoded>
			<wfw:commentRss>http://www.normyee.net/blog/2008/02/29/preventing-xulrunner-from-caching-browser-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get your Raptr on</title>
		<link>http://www.normyee.net/blog/2008/02/26/get-your-raptr-on/</link>
		<comments>http://www.normyee.net/blog/2008/02/26/get-your-raptr-on/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 00:22:16 +0000</pubDate>
		<dc:creator>norm</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.normyee.net/blog/2008/02/26/get-your-raptr-on/</guid>
		<description><![CDATA[Raptr went into public beta last week. It&#8217;s been a pretty intense several months leading up to the launch, so it&#8217;s nice to actually have the cat out of the bag. And maybe I&#8217;ll see some daylight finally. Some decent coverage of the launch: Gamers, prepare to Raptr Raptr Gaming Network Opens For Private Beta [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.raptr.com" target="_blank">Raptr</a> went into public beta last week. It&#8217;s been a pretty intense several months leading up to the launch, so it&#8217;s nice to actually have the cat out of the bag. And maybe I&#8217;ll see some daylight finally. <img src="http://www.normyee.net/blog/wp-includes/images/smilies/icon_smile.gif?84cd58" alt=':)' class='wp-smiley' /> </p>
<p>Some decent coverage of the launch:</p>
<ul>
<li><a href="http://www.techcrunch.com/2008/02/21/gamers-prepare-to-raptr/" target="_blank">Gamers, prepare to Raptr</a></li>
<li><a href="http://www.techcrunch.com/2008/02/22/raptr-gaming-network-opens-for-private-beta/" target="_blank">Raptr Gaming Network Opens For Private Beta</a></li>
<li><a href="http://gigaom.com/2008/02/22/hands-on-raptrcom-gamer-social-network/" target="_blank">Hands-on: Raptr.com, Gamer Social Network</a></li>
<li><a href="http://venturebeat.com/2008/02/22/gdc-raptr-and-rmbr-unveil-at-the-startup-launchpad/" target="_blank">GDC: Raptr and Rmbr unveil at the Startup Launchpad</a></li>
<li><a href="http://crave.cnet.com/8301-1_105-9877079-1.html" target="_blank">Dennis Fong&#8217;s Raptr is innovative gamer social community</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.normyee.net/blog/2008/02/26/get-your-raptr-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Christmas tree</title>
		<link>http://www.normyee.net/blog/2007/12/15/christmas-tree/</link>
		<comments>http://www.normyee.net/blog/2007/12/15/christmas-tree/#comments</comments>
		<pubDate>Sat, 15 Dec 2007 08:24:07 +0000</pubDate>
		<dc:creator>norm</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.normyee.net/blog/2007/12/15/christmas-tree/</guid>
		<description><![CDATA[I picked up a Christmas tree almost 2 weeks ago, but due to a bunch of other things going on, I didn&#8217;t have time to decorate it until a couple days ago.]]></description>
			<content:encoded><![CDATA[<p>I picked up a Christmas tree almost 2 weeks ago, but due to a bunch of other things going on, I didn&#8217;t have time to decorate it until a couple days ago.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-10-70">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-18" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.normyee.net/blog/wp-content/gallery/christmas2007/gx4a7815.jpg?84cd58" title=" " class="thickbox" rel="set_10" >
								<img title="gx4a7815.jpg" alt="gx4a7815.jpg" src="http://www.normyee.net/blog/wp-content/gallery/christmas2007/thumbs/thumbs_gx4a7815.jpg?84cd58" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.normyee.net/blog/2007/12/15/christmas-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ka-boom</title>
		<link>http://www.normyee.net/blog/2007/11/17/ka-boom/</link>
		<comments>http://www.normyee.net/blog/2007/11/17/ka-boom/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 07:25:26 +0000</pubDate>
		<dc:creator>norm</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.normyee.net/blog/2007/11/17/ka-boom/</guid>
		<description><![CDATA[My coworker&#8217;s car was hit by someone barreling through a red light @ 40-50mph as we were going to lunch earlier this week. Another 5 feet into the intersection and we would have not been as lucky to walk away unscathed :\]]></description>
			<content:encoded><![CDATA[<p>My coworker&#8217;s car was hit by someone barreling through a red light @ 40-50mph as we were going to lunch earlier this week. Another 5 feet into the intersection and we would have not been as lucky to walk away unscathed :\</p>
<p><a href="http://www.normyee.net/blog/2007/11/17/ka-boom/nearly-pwned/" rel="attachment wp-att-61" title="nearly pwned"><img src="http://www.normyee.net/blog/wp-content/uploads/2007/11/2036114222_07bcf374c3_o.jpg?84cd58" alt="nearly pwned" height="200" width="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.normyee.net/blog/2007/11/17/ka-boom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Object Caching 736/772 objects using apc

Served from: www.normyee.net @ 2012-02-05 10:44:50 -->
