<?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>For Your Lungs Only &#187; work</title>
	<atom:link href="http://www.foryourlungsonly.net/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.foryourlungsonly.net</link>
	<description>Everything you wanted to know about web development, espresso, typography, nicotine, user interface design, whiskey, javascript, php, cascading style sheets, css hacks, beer, prototype, jquery, mysql, usability and accessiblity (but were afraid to ask)</description>
	<lastBuildDate>Mon, 14 Jun 2010 22:08:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Saved Password Recovery</title>
		<link>http://www.foryourlungsonly.net/2010/04/24/saved-password-recovery/</link>
		<comments>http://www.foryourlungsonly.net/2010/04/24/saved-password-recovery/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 03:19:32 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/?p=90</guid>
		<description><![CDATA[Have you forgotten a password that is saved in a program but you can&#8217;t find any hack to retrieve it?  Try this tool out Revealer. Revealer works with Windows 2000,XP, Vista and 7 with most programs and can save you a lot of time scouring through old emails or asking annoyed colleagues.]]></description>
			<content:encoded><![CDATA[<p>Have you forgotten a password that is saved in a program but you can&#8217;t find any hack to retrieve it?  Try this tool out <a href="http://www.rekenwonder.com/revealer.htm">Revealer</a>.</p>
<p>Revealer works with Windows 2000,XP, Vista and 7 with most programs and can save you a lot of time scouring through old emails or asking annoyed colleagues.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2010/04/24/saved-password-recovery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP, Javascript and WordPress English to Spanish Language Translation Samples</title>
		<link>http://www.foryourlungsonly.net/2010/04/24/php-javascript-and-wordpress-english-to-spanish-language-translation-samples/</link>
		<comments>http://www.foryourlungsonly.net/2010/04/24/php-javascript-and-wordpress-english-to-spanish-language-translation-samples/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 03:13:16 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[gnu gpl]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/?p=117</guid>
		<description><![CDATA[First off, download the gTranslate PHP class and read about it. Now let&#8217;s start to play with it. Let&#8217;s start off simple: &#60;?php require("GTranslate.php"); try { $gt = new Gtranslate; echo "Translating [Hello World] from English to German =&#62; ".$gt-&#62;english_to_german("hello world")."&#60;br/&#62;"; echo "Translating [Ciao mondo] Italian to English =&#62; ".$gt-&#62;it_to_en("Ciao mondo")."&#60;br/&#62;"; } catch (GTranslateException $ge) [...]]]></description>
			<content:encoded><![CDATA[<p>First off, <a href="http://gtranslate-api-php.googlecode.com/files/gtranslate-api-php-0.7.5.zip">download the gTranslate PHP class</a> and <a href="http://code.google.com/p/gtranslate-api-php/">read about it</a>. Now let&#8217;s start to play with it.</p>
<p>Let&#8217;s start off simple:<span id="more-117"></span></p>
<pre><em>&lt;?php
require("GTranslate.php");
try {
	$gt = new Gtranslate;
	echo "Translating [Hello World] from English to German =&gt; ".$gt-&gt;english_to_german("hello world")."&lt;br/&gt;";
	echo "Translating [Ciao mondo] Italian to English =&gt; ".$gt-&gt;it_to_en("Ciao mondo")."&lt;br/&gt;";
} catch (GTranslateException $ge)  {
	echo $ge-&gt;getMessage();
}
?&gt;</em></pre>
<p><strong>Create a Function to Detect Language:</strong><br />
First Example for Ben&#8217;s Translator Plugin (Using a Session Variable):</p>
<pre><em>&lt;?php
function translateThis ($myText) {
	$pageURL = 'http';
	if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
		$pageURL .= "://";
	if ($_SERVER["SERVER_PORT"] != "80") {
		$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
	} else {
		$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
	}
	//return $pageURL;
	$myVal = substr($pageURL, 0, 28);
	if ($myVal == "http://welovecakephp.com/es/") {
		$_SESSION['pLang'] = "ES";
	} else {
		$_SESSION['pLang'] = "EN";
	}
	if ($_SESSION['pLang'] == "ES") {
		require("GTranslate.php");
		/*
			these variable can be used in conjunction with JS dynamic content to make translated content easier
			ie: change image folders/forms/etc basically things that WordPress plugins might screw up
		*/
		$myLang = "es";
		$myLangDir = "/es";
		try {
			$gt = new Gtranslate;
			$gt-&gt;setRequestType('curl');
			echo $gt-&gt;en_to_es($myText);
		} catch (GTranslateException $ge) {
			echo $ge-&gt;getMessage();
		}
	} else {
		$myLang = "en";
		$myLangDir = "";
	}
}
?&gt;</em></pre>
<p><em>Second example (Using a Cookie):</em></p>
<pre><em>&lt;?php if ($_COOKIE['pLang'] != "English") { $_SESSION['pLang'] = "ES"; } else { $_SESSION['pLang'] = "EN"; }?&gt;</em></pre>
<p><strong>Sample Usage</strong></p>
<pre><em>&lt;?php
	$myVar = "This is a test of language translation, not word by word but instead this translates the intended meaning";
	translateThis($myVar);
?&gt;</em></pre>
<p>Of course you can change settings within this to suit your translation needs and this is a single use setup but it suited the purpose for which I needed it. I hope this helps you out, cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2010/04/24/php-javascript-and-wordpress-english-to-spanish-language-translation-samples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slide N&#8217; Hide jQuery Navigation Accordion Slider</title>
		<link>http://www.foryourlungsonly.net/2008/11/12/slide-n-hide-jquery-navigation-accordion-slider/</link>
		<comments>http://www.foryourlungsonly.net/2008/11/12/slide-n-hide-jquery-navigation-accordion-slider/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 01:48:52 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[eff]]></category>
		<category><![CDATA[gnu gpl]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/?p=37</guid>
		<description><![CDATA[View Example View Source Code A simple vertical jQuery accordion with much room for growth. In future version I would like to use a few additional lines of JS to create a cleaner structure but even if only as an example this is a good start. I made a horizontal accordion as well but all [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.foryourlungsonly.net/experiments/slide_n_hide.php3">View Example</a><br />
<a href="http://foryourlungsonly.net/experiments/slide_n_hide.phps">View Source Code</a></p>
<p>A simple vertical jQuery accordion with much room for growth. In future version I would like to use a few additional lines of JS to create a cleaner structure but even if only as an example this is a good start. I made a horizontal accordion as well but all things will be made public in due time.</p>
<p>This script creates a cooking and remembers which section was last opened therefore making it a great homepage piece or miniature site navigation.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2008/11/12/slide-n-hide-jquery-navigation-accordion-slider/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox 3 Closes All Open Tabs on Exit Problem and Forgets To Ask What You Wanted</title>
		<link>http://www.foryourlungsonly.net/2008/11/12/firefox-3-close-open-opens-on-exit-problem/</link>
		<comments>http://www.foryourlungsonly.net/2008/11/12/firefox-3-close-open-opens-on-exit-problem/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 01:07:20 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[i came as a rant]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/?p=59</guid>
		<description><![CDATA[Firefox is a priceless debugging tool for web developers. However, when it stops functioning properly, daily tasks &#38; work become more complicated. One day Firefox stopped asking if I wanted to restore my tabs when the program closed. After being annoyed for quite sometime I thought about restoring FireFox to its defaults settings. Windows XP/2000/Vista: [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox is a priceless debugging tool for web developers. However, when it stops functioning properly, daily tasks &amp; work become more complicated.</p>
<p>One day Firefox stopped asking if I wanted to restore my tabs when the program closed. After being annoyed for quite sometime I thought about restoring FireFox to its defaults settings.</p>
<blockquote><p><strong>Windows XP/2000/Vista:</strong></p>
<p>firefox -safe-mode</p>
<p>&#8220;C:\Program Files\Mozilla Firefox\firefox.exe&#8221; -safe-mode</p>
<p>OR</p>
<p>Start &gt; All Programs &gt; Mozilla Firefox (folder) &gt; Mozilla Firefox Safe Mode</p>
<p><strong>Linux:</strong></p>
<p>/path/to/firefox/firefox -safe-mode</p>
<p><strong>Mac OS X:</strong></p>
<p>/Applications/Firefox.app/Contents/MacOS/firefox -safe-mode</p></blockquote>
<p>Now, while it is true that somewhere along the way I may have inadvertently unchecked &#8220;No, don&#8217;t ask me again&#8221; the problem was nonetheless frustrating. So, if Firefox does not remember what tabs you had open before on closing it just follow those steps above.</p>
<p>That is unless you don&#8217;t want it to remember what tabs were open, browsing history, passwords, cookies, etc because you were looking at skeevy porn or browsing the Jars of Clay &#8216;Eternal Fanclub of best Friends Forever&#8217;, then you probably shouldn&#8217;t be using Firefox. <em>Use Internet Explorer and get the viruses God intended your computer be infected with.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2008/11/12/firefox-3-close-open-opens-on-exit-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Featured: Amies Updated Reel</title>
		<link>http://www.foryourlungsonly.net/2008/11/12/featured-amies-updated-reel/</link>
		<comments>http://www.foryourlungsonly.net/2008/11/12/featured-amies-updated-reel/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 20:41:05 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/?p=67</guid>
		<description><![CDATA[A few of the projects I had the pleasure of working on at Amies have been featured in their newest reel. The video was created by Travis Anderson and is pretty solid as a whole. Enjoy!]]></description>
			<content:encoded><![CDATA[<p>A few of the projects I had the pleasure of working on at <a href="http://amies.com">Amies</a> have been featured in their newest reel. The video was created by Travis Anderson and is pretty solid as a whole. Enjoy!</p>
<p><object width="400" height="300"><param name="movie" value="/experiments/amies_reel.swf"></param><param name="allowScriptAccess" value="always"></param><embed src="/experiments/amies_reel.swf" type="application/x-shockwave-flash" allowScriptAccess=always width="400" height="300"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2008/11/12/featured-amies-updated-reel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Image Watermarking</title>
		<link>http://www.foryourlungsonly.net/2008/01/28/php-image-watermarking/</link>
		<comments>http://www.foryourlungsonly.net/2008/01/28/php-image-watermarking/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 02:02:36 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/2008/01/28/php-image-watermarking/</guid>
		<description><![CDATA[I had to build this for a client rather swiftly but here is the brass tax of the matter. My client requested that every image in a section would be automatically water marked. I read a few good articles and played around a bit before creating this based on the others I had been reading [...]]]></description>
			<content:encoded><![CDATA[<p>I had to build this for a client rather swiftly but here is the brass tax of the matter. My client requested that every image in a section would be automatically water marked. I read a few good articles and played around a bit before creating this based on the others I had been reading about.</p>
<p><strong>Criteria:</strong></p>
<ol>
<li>Auto centered mark</li>
<li>semi transparency</li>
<li>works with 24-bit .png files for image watermark</li>
<li>Must work on the fly</li>
<li>must be able to watermark png/jpeg file types</li>
<li>due Monday by noon <img src='http://www.foryourlungsonly.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
</ol>
<p>That being said I produced the following based on notes I took from various sites:<span id="more-30"></span></p>
<blockquote><p><code>&lt;?php<br />
// example url<br />
watermark.php?i=display.php?show=23<br />
$imageUrl = $_GET['i'];<br />
$watermarkUrl = "watermark.png";<br />
$orgimage=imagecreatefromjpeg("{$imageUrl}");<br />
$watermark=imagecreatefrompng("{$watermarkUrl}");<br />
$watermarkDetails=getimagesize("{$watermarkUrl}");<br />
$imageDetails = getimagesize("{$imageUrl}");<br />
$centerx = (($imageDetails[0] - $watermarkDetails[0])/2);<br />
$centery = (($imageDetails[1] - $watermarkDetails[1])/2);<br />
imagecopy($orgimage,$watermark,$centerx,$centery,0,0,<br />
imagesx($watermark),imagesy($watermark));<br />
header("Content-Type: image/jpeg");<br />
imagejpeg($orgimage);<br />
imagedestroy($watermark);<br />
imagedestroy($orgimage);<br />
exit;<br />
?&gt;<br />
</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2008/01/28/php-image-watermarking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How I Spent My Winter Vacation</title>
		<link>http://www.foryourlungsonly.net/2007/12/10/how-i-spent-my-winter-vacation/</link>
		<comments>http://www.foryourlungsonly.net/2007/12/10/how-i-spent-my-winter-vacation/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 00:34:28 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[site updates]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/2007/12/10/how-i-spent-my-winter-vacation/</guid>
		<description><![CDATA[Sorry for the lack of updates due to a great deal of work, but there are good things coming. I&#8217;ve got an address book importer in PHP, flash toys for photo manipulation, some new DOM validation script, more Flash apps via PHP/mySQL/XML/Flash, an updated version of slightestBox and much more than I care to list. [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the lack of updates due to a great deal of work, but there are good things coming. I&#8217;ve got an address book importer in PHP, flash toys for photo manipulation, some new DOM validation script, more Flash apps via PHP/mySQL/XML/Flash, an updated version of slightestBox and much more than I care to list.</p>
<p>Random note: I needed to install cURL on my Windows box install of XAMPP and found a handy comment on <a href="http://www.menyhart.net/blog/developer-stuff/enabling-curl-on-xampp/">Roman&#8217;s blog</a> that did the trick. It&#8217;s also been installed on my LAMP box as well but that was easy enough to install and required no Google research.</p>
<blockquote><p>Navigate to XAMPP &gt; apache &gt; bin<br />
Open php.ini<br />
Find “php_curl”<br />
Remove the “;” from “;extension=php_curl.dll”<br />
Save and close it.<br />
Restart Apache via Control Panel &gt; Administrative Tools &gt; Services<br />
and you are done!</p></blockquote>
<p>If this  solution did not work for you, you might be using an old/incompatible version of XAMPP or someone upstairs with a big beard has it in for you. Either way you should download the newest build from http://apachefriends.org. This was tested on a WinXP using XAMPP version 1.6.4 Beta 3.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2007/12/10/how-i-spent-my-winter-vacation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Image Swap</title>
		<link>http://www.foryourlungsonly.net/2007/10/12/jquery-image-swap/</link>
		<comments>http://www.foryourlungsonly.net/2007/10/12/jquery-image-swap/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 19:28:37 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[i came as a rant]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/2007/10/12/jquery-image-swap/</guid>
		<description><![CDATA[jQuery does a fantastic job at simplifying JavaScript. Below is an example for those of you still relying on DreamWeaver&#8217;s Image Rollover (MM Image Swap). The better alternative is using proper image replacement techniques. $('img#nav1').hover(function() { $(this).attr("src","/images/headerNav/1-over.gif"); }, function() { $(this).attr("src","/images/headerNav/1.gif"); }); &#60;img src="1.gif" id="nav1" /&#62; And there you have it! Coming up next is [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery does a fantastic job at simplifying JavaScript. Below is an example for those of you still relying on DreamWeaver&#8217;s Image Rollover (MM Image Swap). The better alternative is using proper image replacement techniques.</p>
<pre>
$('img#nav1').hover(function() {
	$(this).attr("src","/images/headerNav/1-over.gif");
		}, function() {
	$(this).attr("src","/images/headerNav/1.gif");
});

&lt;img src="1.gif" id="nav1" /&gt;</pre>
<p>And there you have it! Coming up next is the <abbr title="search engine optimization">SEO</abbr> case study of <a href="http://duffynewport.com/page.cfm?pgid=1" title="Duffy Electric Boat Company - Newport Beach Boat Rental and Dealer">duffynewport.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2007/10/12/jquery-image-swap/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>CL, CSS Navigation and How to Waste an Afternoon</title>
		<link>http://www.foryourlungsonly.net/2007/05/31/cl-css-navigation-and-how-to-waste-an-afternoon/</link>
		<comments>http://www.foryourlungsonly.net/2007/05/31/cl-css-navigation-and-how-to-waste-an-afternoon/#comments</comments>
		<pubDate>Thu, 31 May 2007 21:22:23 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[cl rnr]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web accessiblity]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/words/2007/05/31/cl-css-navigation-and-how-to-waste-an-afternoon/</guid>
		<description><![CDATA[Finished my workload by 10am so I have been putting around net killing time. This of course means I have been obsessively reading Craigslist. Here are some of my favorite findings for the day: An open letter to the Anaheimer who posted on Ottawa R&#38;R I spilled grandma on you around spadian station To my [...]]]></description>
			<content:encoded><![CDATA[<p> Finished my workload by 10am so I have been putting around  net killing time. This of course means I have been obsessively reading <a href="http://www.craigslist.org">Craigslist</a>. Here are some of my favorite findings for the day:</p>
<ul>
<li><a href="http://www.craigslist.org/about/best/orc/337453333.html">An open letter to the Anaheimer who posted on Ottawa R&amp;R</a></li>
<li><a href="http://www.craigslist.org/about/best/tor/291325470.html" target="_blank">I spilled grandma on you around spadian station</a></li>
<li><a href="http://www.craigslist.org/about/best/sea/333295779.html">To my Ex-GF&#8217;s Cat</a></li>
</ul>
<p>Pushed out two comps one I played around with floating left the navigation at different heights and floating right an accessible search right under the navigation. There&#8217;s even room to add image replacement for hover effects on the navbar but I&#8217;m pretty sure the more traditional layout will win out with the client. So have at it and <a href="http://sabatinos.geekchicinc.com/layout-01.html">view the one I played with that won&#8217;t be chosen</a>. Also, <a href="http://sabatinos.geekchicinc.com/layout-02.html">here is the standard layout that I haven&#8217;t coded yet</a> as it&#8217;s fairly straight forward.</p>
<p>If you are having any CSS issues feel free to contact me and I might help you out and write something about the issue/solution on here. I was debating writing something about floats, clears, alignment, fluid layouts and lucky charms. The last bit there means I need lunch or a big bag of marshmallows.</p>
<p><a href="http://technorati.com/claim/yrgspqe63j" rel="me">Technorati Profile</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2007/05/31/cl-css-navigation-and-how-to-waste-an-afternoon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>something stable</title>
		<link>http://www.foryourlungsonly.net/2007/05/25/something-stable/</link>
		<comments>http://www.foryourlungsonly.net/2007/05/25/something-stable/#comments</comments>
		<pubDate>Sat, 26 May 2007 03:45:35 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[site updates]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/words/2007/05/25/something-stable/</guid>
		<description><![CDATA[I knew this would take a bit of effort, but more than anything I&#8217;ve been lagged with work and work related stuff. So anyway here&#8217;s a decent layout with the great help of cssplay, jQuery and other players to be named later. Now to grab my guitar, a beer and play until the night is [...]]]></description>
			<content:encoded><![CDATA[<p>I knew this would take a bit of effort, but more than anything I&#8217;ve been lagged with work and work related stuff. So anyway here&#8217;s a decent layout with the great help of cssplay, jQuery and other players to be named later.</p>
<p>Now to grab my guitar, a beer and play until the night is over. Have a good weekend!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2007/05/25/something-stable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.345 seconds -->
