<?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>ForestMist &#187; Web Browser</title>
	<atom:link href="http://forestmist.org/tag/web-browser/feed/" rel="self" type="application/rss+xml" />
	<link>http://forestmist.org</link>
	<description></description>
	<lastBuildDate>Tue, 11 Oct 2011 03:17:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>HTML5 Audio Loops</title>
		<link>http://forestmist.org/2010/04/html5-audio-loops/</link>
		<comments>http://forestmist.org/2010/04/html5-audio-loops/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 00:02:01 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Browser]]></category>

		<guid isPermaLink="false">http://forestmist.org/?p=1102</guid>
		<description><![CDATA[One of the neatest things about HTML5 is support for the new &#60;audio&#62; tag. Like &#60;video&#62; it allows you to natively support media in good browsers like Chrome, FireFox, Opera and Safari. Add a touch of JavaScript and a new era of  media applications become possible. Synthesizers, music trackers and games require seamless audio loops though [...]]]></description>
			<content:encoded><![CDATA[<p>One of the neatest things about HTML5 is support for the new &lt;audio&gt; tag. Like &lt;video&gt; it allows you to natively support media in good browsers like Chrome, FireFox, Opera and Safari. Add a touch of JavaScript and a new era of  media applications become possible.</p>
<p>Synthesizers, music trackers and games require seamless audio loops though so we need something a bit simpler for our first foray into HTML5 audio.</p>
<p>Oooh, how about a retro beatbox with individual track adjustments (start/stop/loop/volume) that could be used to build a unique soundscape from many separate instruments. Perfect!</p>
<p>Fantasy can only become reality through hard work so let&#8217;s get started with some tests first.</p>
<h2>Loop Method 1</h2>
<pre><audio id="audio_1" controls preload loop>
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.ogg">
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.wav">
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.mp3">
</audio></pre>
<p>Uses the &#8216;loop&#8217; property.</p>
<pre class="brush: xml; title: ; notranslate">&lt;audio id=&quot;audio_1&quot; controls preload loop&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.ogg&quot;&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.wav&quot;&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.mp3&quot;&gt;
&lt;/audio&gt;</pre>
<h2>Loop Method 2</h2>
<pre><audio id="audio_2" controls preload>
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.ogg">
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.wav">
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.mp3">
</audio></pre>
<p>Uses a JavaScript function to loop when an &#8216;ended&#8217; event is called.</p>
<pre class="brush: xml; title: ; notranslate">&lt;audio id=&quot;audio_2&quot; controls preload&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.ogg&quot;&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.wav&quot;&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.mp3&quot;&gt;
&lt;/audio&gt;</pre>
<pre class="brush: jscript; title: ; notranslate">
document.getElementById('audio_2').addEventListener('ended', function(){
this.currentTime = 0;
}, false);
</pre>
<h2>Loop Method 3</h2>
<pre><audio id="audio_3" controls preload>
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.ogg">
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.wav">
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.mp3">
</audio>
<audio id="audio_4" controls preload>
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.ogg">
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.wav">
	<source src="/wp-content/uploads/2010/04/html5-audio-loop.mp3">
</audio></pre>
<p>Uses two JavaScript functions and two audio elements with the same source to alternate playback duties.</p>
<pre class="brush: xml; title: ; notranslate">&lt;audio id=&quot;audio_3&quot; controls preload&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.ogg&quot;&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.wav&quot;&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.mp3&quot;&gt;
&lt;/audio&gt;
&lt;audio id=&quot;audio_4&quot; controls preload&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.ogg&quot;&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.wav&quot;&gt;
	&lt;source src=&quot;/wp-content/uploads/2010/04/html5-audio-loop.mp3&quot;&gt;
&lt;/audio&gt;</pre>
<pre class="brush: jscript; title: ; notranslate">document.getElementById('audio_3').addEventListener('ended', function(){
this.currentTime = 0;
this.pause();
document.getElementById('audio_4').play();
}, false);

document.getElementById('audio_4').addEventListener('ended', function(){
this.currentTime = 0;
this.pause();
document.getElementById('audio_3').play();
}, false);</pre>
<pre><script type="text/javascript">		document.getElementById('audio_2').addEventListener('ended', function(){
this.currentTime = 0;
}, false);

document.getElementById('audio_3').addEventListener('ended', function(){
this.currentTime = 0;
this.pause();
document.getElementById('audio_4').play();
}, false);

document.getElementById('audio_4').addEventListener('ended', function(){
this.currentTime = 0;
this.pause();
document.getElementById('audio_3').play();
}, false);
</script></pre>
<h2>Browser Support</h2>
<p>Tests were done on Windows 7 with Chrome 5.0.342.9 beta, FireFox 3.6.3, Internet Explorer 9.0 Preview, Opera 10.51 and Safari 4.0.5. </p>
<p><strong>Chrome</strong> seems to trigger loops before the current sound is completely finished leading to some odd jumpiness. All loop methods are affected.</p>
<p><strong>FireFox</strong> doesn&#8217;t seem to like the &#8216;loop&#8217; property of method 1, odd. Method 2 has the slightest of delays between loops and method 3 was actually perfect! I didn&#8217;t believe it until verification at the millisecond level with <a href="http://audacity.sourceforge.net/">Audacity</a>. Hooray Mozilla!</p>
<p><strong>Internet Explorer 9</strong> doesn&#8217;t support the audio tag yet. Hopefully it will before an official release.</p>
<p><strong>Opera</strong> performs almost as well as FireFox although there is still a small delay even when using method 3.</p>
<p><strong>Safari</strong> seems slow to start playback which is very easy to detect once you hear a loop. All loop methods affected.</p>
<p>Feedback on other browsers/OS compatibility would be very interesting so please feel free to discuss any findings in the comments below.</p>
<h2>Final Thoughts</h2>
<p>As of right now (April 11, 2010) only FireFox can do a perfect loop by cheating a bit and using two &lt;audio&gt; elements with JavaScript.</p>
<p>So yeah, it&#8217;s a bit too early for HTML5 audio loops but don&#8217;t let that stop you from creating sound boards, media players and other fun things.</p>
<p>Hopefully with some more optimizations audio support will continue to improve and a HTML5 beatbox fantasy can become reality.</p>
<p>Until then there are plenty of other fun things to play with.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://forestmist.org/2010/04/html5-audio-loops/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Disable right clicking on images only</title>
		<link>http://forestmist.org/2010/03/disable-right-clicking-on-images-only/</link>
		<comments>http://forestmist.org/2010/03/disable-right-clicking-on-images-only/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 03:53:04 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Web Browser]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://forestmist.org/?p=161</guid>
		<description><![CDATA[There are few instances where disabling someone&#8217;s context menu is appropriate. In most cases it&#8217;s unnecessary and can even lead to infuriating your visitors. Here are some ways to target all the image elements on a page while leaving the rest of the hypertext in peace. JavaScript Lightweight, no framework required and works well in [...]]]></description>
			<content:encoded><![CDATA[<p>There are few instances where disabling someone&#8217;s context menu is appropriate. In most cases it&#8217;s unnecessary and can even lead to infuriating your visitors.</p>
<p>Here are some ways to target all the image elements on a page while leaving the rest of the hypertext in peace.</p>
<h2>JavaScript</h2>
<p>Lightweight, no framework required and works well in IE 6, 7, 8, Chrome, FireFox and Safari. <a href="/wp-content/uploads/2010/03/Protect-Images-with-JavaScript.html">Demo »</a></p>
<pre class="brush: jscript; title: ; notranslate">
document.oncontextmenu = context_menu;

function context_menu(e) {
if (!e) var e = window.event;
	var eTarget = (window.event) ? e.srcElement : e.target;

	if (eTarget.nodeName == &quot;IMG&quot;) {
		//context menu attempt on top of an image element
		return false;
	}
}
</pre>
<hr />
<h2>jQuery</h2>
<p>Perhaps the prettiest code of the three. <a href="/wp-content/uploads/2010/03/Protect-Images-with-jQuery.html">Demo »</a></p>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function(){
	$(document).bind(&quot;contextmenu&quot;,function(e){
		if(e.target.nodeName == 'IMG'){
			//context menu attempt on top of an image element
			return false;
		}
	});
});
</pre>
<hr />
<h2>MooTools</h2>
<p>Moo&#8230; <a href="/wp-content/uploads/2010/03/Protect-Images-with-MooTools.html">Demo »</a></p>
<pre class="brush: jscript; title: ; notranslate">
window.addEvent('domready', function() {
	$(document.body).addEvent('contextmenu', function(e) {
		if(e.target.nodeName == 'IMG') {
			//context menu attempt on top of an image element
			return false;
		}
	});
});
</pre>
<hr />
<h2>Final Thoughts</h2>
<p>With a bit more code you can target specific IDs, class names or any number of elemental combinations. Doing so will limit your context menu friendly fire and keep both you and your users in a happy balance.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://forestmist.org/2010/03/disable-right-clicking-on-images-only/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A home for the experimentally insane</title>
		<link>http://forestmist.org/2009/10/a-home-for-the-experimentally-insane/</link>
		<comments>http://forestmist.org/2009/10/a-home-for-the-experimentally-insane/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 23:06:30 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Experimental]]></category>
		<category><![CDATA[Web Browser]]></category>

		<guid isPermaLink="false">http://forestmist.org/?p=354</guid>
		<description><![CDATA[I&#8217;ve added a new experimental section to the site which I hope will contain many a mad thing for you dear visitor. On on first journey we find out if its possible to create strange shapes using only CSS. So come one and come all to see the gross disregard for copyright law as we [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_358" class="wp-caption alignright" style="width: 180px"><a href="http://forestmisty.org/wp-content/uploads/2009/10/Daniel-the-Monster-2003.png"><img class="size-medium wp-image-358 " title="Daniel the Monster" src="http://forestmisty.org/wp-content/uploads/2009/10/Daniel-the-Monster-2003-300x300.png" alt="Let me show you something..." width="150" height="150" /></a><p class="wp-caption-text">Founder of the home for the experimentally insane.</p></div>
<p>I&#8217;ve added a new experimental section to the site which I hope will contain many a mad thing for you dear visitor.</p>
<p>On on first journey we find out if its possible to create strange shapes using only CSS.</p>
<p>So come one and come all to see the gross disregard for copyright law as we make your very own <a href="/experimental/bahamas-logo-using-css3/"><strong>Bahamas logo using CSS</strong></a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://forestmist.org/2009/10/a-home-for-the-experimentally-insane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatically backup FireFox 3 bookmarks</title>
		<link>http://forestmist.org/2009/08/automatically-backup-firefox-3-bookmarks/</link>
		<comments>http://forestmist.org/2009/08/automatically-backup-firefox-3-bookmarks/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 05:45:51 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[FireFox 3]]></category>
		<category><![CDATA[Web Browser]]></category>

		<guid isPermaLink="false">http://forestmist.org/?p=131</guid>
		<description><![CDATA[I like to format my computer fairly often which means having all my data in one easy to find location. Not only does this make backing up easy but it also removes that dreadful feeling you get when you realize your new OS install overwrote your irreplacable bookmarks, precious emails and/or accumulated works of Bettie Page. [...]]]></description>
			<content:encoded><![CDATA[<p>I like to format my computer fairly often which means having all my data in one easy to find location. Not only does this make backing up easy but it also removes that dreadful feeling you get when you realize your new OS install overwrote your irreplacable bookmarks, precious emails and/or accumulated works of <a href="http://en.wikipedia.org/wiki/Bettie_Page">Bettie Page</a>.</p>
<p>Bookmarks are easily forgotten but with a few tweaks <a href="http://www.mozilla.com/en-US/firefox/firefox.html">FireFox 3</a> can back them up for you.</p>
<h2>Customize your bookmark backup settings</h2>
<p>Open FireFox 3.</p>
<p>Go to <strong>about:config</strong> in your location bar.</p>
<p>Specify <strong>browser.bookmarks</strong> as your filter.</p>
<p>Set <strong>browser.bookmarks.autoExportHTML</strong> to <strong>true</strong>.</p>
<p>Create a new string titled <strong>browser.bookmarks.file</strong> and set its value to the location you want to backup all your bookmarks to.</p>
<p style="padding-left: 30px;"><em>In my case I entered &#8220;D:\ForestMist\Personal\bookmarks.html&#8221;.</em></p>
<p style="padding-left: 30px;"><a href="http://forestmisty.org/wp-content/uploads/2009/08/firefox-3-about-config.png"><img class="size-medium wp-image-138 alignnone" title="firefox 3 about:config example" src="http://forestmisty.org/wp-content/uploads/2009/08/firefox-3-about-config-300x94.png" alt="firefox 3 about:config example" width="300" height="94" /></a></p>
<p>Restart FireFox.</p>
<h2>Epilogue</h2>
<p>Everytime you close FireFox it will export a fresh copy of all your bookmarks to the file you specified. There may a slight performance hit for doing this but I think the benefits far outweigh the cost.</p>
<p>Now you can mirror your bookmarks with services like <a href="https://www.sugarsync.com/">SugarSync</a>, share them easily with friends or just have peace of mind in case the new JSON database FireFox 3 uses behind the scenes explodes in a spectacular example of <a href="http://en.wikipedia.org/wiki/Murphy%27s_law">Murphy&#8217;s Law</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://forestmist.org/2009/08/automatically-backup-firefox-3-bookmarks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Cr</title>
		<link>http://forestmist.org/2008/09/google-cr/</link>
		<comments>http://forestmist.org/2008/09/google-cr/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 03:22:40 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Web Browser]]></category>

		<guid isPermaLink="false">http://forestmist.org/wordpress/?p=15</guid>
		<description><![CDATA[Google Chrome is quite a nice browser, especially for a first release. With a bit of tweaking I&#8217;d say its can be a wonderful competitor to not only FireFox, Safari and Opera but the evil that is Internet Explorer. IE version 6 is definitely evil but perhaps IE 7 is more akin to lawful chaotic. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/chrome/" target="_blank">Google Chrome</a> is quite a nice browser, especially for a first release. With a bit of tweaking I&#8217;d say its can be a wonderful competitor to not only <a href="http://www.mozilla.com/en-US/firefox/" target="_blank">FireFox</a>, <a href="http://www.apple.com/safari/" target="_blank">Safari</a> and <a href="http://www.opera.com/products/desktop/" target="_blank">Opera</a> but the evil that is <a href="http://www.microsoft.com/windows/products/winfamily/ie/default.mspx" target="_blank">Internet Explorer</a>. IE version 6 is definitely evil but perhaps IE 7 is more akin to lawful chaotic.</p>
<p><strong>Pleasantries</strong></p>
<ul>
<li>Right click in the address bar and you can &#8220;Paste and search&#8221; or &#8220;Paste and go&#8221; depending on the text in the clipboard.</li>
<li>Local searches open up a pane which shows you the number of matches along with buttons that let you easily navigate to them. Matches are also displayed as colored lines in the vertical scroll bar.<br />
<a href="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-view-source-full.jpg"><img class="alignnone size-medium wp-image-14" title="20080928-chrome-view-source-full" src="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-view-source-full-300x287.jpg" alt="20080928-chrome-view-source-full" width="300" height="287" /></a><a title="View Source Example" rel="lightbox" href="/images/blog/20080928-Chrome-View-Source-Full.jpg"><br />
</a></li>
<li>Input field highlighting is nice and obvious.</li>
<li>Address bar highlighting.</li>
<li>Downloads are unobtrusively displayed in a bar at the bottom of your browser.<br />
<a href="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-downloads-full.jpg"><img class="alignnone size-medium wp-image-11" title="20080928-chrome-downloads-full" src="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-downloads-full-207x300.jpg" alt="20080928-chrome-downloads-full" width="207" height="300" /></a><a title="Download Example" rel="lightbox" href="/images/blog/20080928-Chrome-Downloads-Full.jpg"><br />
</a></li>
<li>Tabs can be separated from their parent window and then recombined later.</li>
<li>The special page &#8220;about:memory&#8221; not only shows you memory usage of Chrome but of any other competing web browsers that are open simultaneously.<br />
<a href="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-memory-usage-full.jpg"><img class="alignnone size-medium wp-image-13" title="20080928-chrome-memory-usage-full" src="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-memory-usage-full-300x277.jpg" alt="20080928-chrome-memory-usage-full" width="300" height="277" /></a><a title="Memory Usage Example" rel="lightbox" href="/images/blog/20080928-Chrome-Memory-Usage-Full.jpg"><br />
</a></li>
<li>Incognito mode means they&#8217;ll never know where I go. Well, unless they subpoena my ISP records&#8230;.<br />
<a href="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-incognito-full.jpg"><img class="alignnone size-medium wp-image-12" title="20080928-chrome-incognito-full" src="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-incognito-full-300x131.jpg" alt="20080928-chrome-incognito-full" width="300" height="131" /></a><a title="BOING" rel="lightbox" href="/images/blog/20080928-Chrome-Incognito-Full.jpg"><br />
</a></li>
<li>The default page of popular, recent bookmarks and recently closed tabs is very helpful.<br />
<a href="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-default-page-full.jpg"><img class="alignnone size-medium wp-image-9" title="20080928-chrome-default-page-full" src="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-default-page-full-300x242.jpg" alt="20080928-chrome-default-page-full" width="300" height="242" /></a><a title="Default Page Example" rel="lightbox" href="/images/blog/20080928-Chrome-Default-Page-Full.jpg"><br />
</a></li>
</ul>
<p><strong>Unpleasant Fleas</strong></p>
<ul>
<li>View source slowly reloads the page instead of reading from a local cache.</li>
<li>I&#8217;ve had trouble pasting via keyboard shortcuts in certain HTML input fields. Right click + paste selection always works though.</li>
<li>RSS feeds are viewed as plain text and there is currently no support for subscribing to them.</li>
<li>Downloads started in one window are not displayed in the download manager of another. The download is not interrupted thankfully but you are unable to monitor it if you close its parent window.</li>
<li>The circular download progress graphic is very hard to monitor at a glance. A simple bar would have been much more effective.<br />
<a href="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-download-progress-full.jpg"><img class="alignnone size-medium wp-image-10" title="20080928-chrome-download-progress-full" src="http://forestmisty.org/wp-content/uploads/2009/01/20080928-chrome-download-progress-full-300x107.jpg" alt="20080928-chrome-download-progress-full" width="300" height="107" /></a><a title="Download Progress Example" rel="lightbox" href="/images/blog/20080928-Chrome-Download-Progress-Full.jpg"><br />
</a></li>
<li>CTRL+Mouse Wheel only changes text size. I would prefer it to zoom the entire page instead.</li>
</ul>
<p>I will continue to use Chrome for select tasks but sadly relying on it fully would be folly. Lack of RSS features and a missing plugin architecture (<a href="http://noscript.net/" target="_blank">NoScript</a> is a must) is just too high of a cost.</p>
<p>I think of Chrome as speedy motorcycle in your garage of browsers. She&#8217;s great for tearing up the asphalt on the weekends but just don&#8217;t take her out in the rain or you&#8217;ll wind up as road pizza. Soggy, messy, squelchy burbling road pizza. Missing quite a few important toppings too I might add.</p>
]]></content:encoded>
			<wfw:commentRss>http://forestmist.org/2008/09/google-cr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

