<?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>Labs &#187; Labs</title>
	<atom:link href="http://labs.iamkoa.net/category/labs/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.iamkoa.net</link>
	<description>I break it. I fix it. You learn.</description>
	<lastBuildDate>Fri, 09 Jul 2010 02:26:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Updates &amp; Checkboxes &amp; Loadbars! Oh My!</title>
		<link>http://labs.iamkoa.net/2007/12/21/updates-checkboxes-loadbars-oh-my/</link>
		<comments>http://labs.iamkoa.net/2007/12/21/updates-checkboxes-loadbars-oh-my/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 19:22:02 +0000</pubDate>
		<dc:creator>Koa</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Labs]]></category>

		<guid isPermaLink="false">http://labs.iamkoa.net/2007/12/21/updates-checkboxes-loadbars-oh-my/</guid>
		<description><![CDATA[Yep. I&#8217;m mixing programming references with The Wizard of Oz. Shut up. The all-too-awesome PHPMailer class has been updated and is awaiting your download. If you use MooTools (or even if you don&#8217;t), Vacuous Virtuoso&#8217;s Fancy Form is totally worth checking out. It&#8217;s a mix of CSS and Javascript that enables you to create custom [...]]]></description>
			<content:encoded><![CDATA[<p>Yep. I&#8217;m mixing programming references with <a href="http://www.imdb.com/title/tt0032138/quotes">The Wizard of Oz</a>. Shut up.</p>
<p>The all-too-awesome <a href="http://labs.iamkoa.net/2007/11/27/a-simplesecure-email-class-for-phpmailer/">PHPMailer class</a> has been updated and is awaiting your download.</p>
<p>If you use <a href="http://mootools.net/">MooTools</a> (or even if you don&#8217;t), Vacuous Virtuoso&#8217;s <a href="http://lipidity.com/fancy-form/">Fancy Form</a> is totally worth checking out. It&#8217;s a mix of CSS and Javascript that enables you to create custom form checkboxes. There are other script on the net that claim to do the same thing, but none are as cross-browser compatible.</p>
<p>Lastly, to add a splash of color to your ajax load processes, check out Bram Van Damme&#8217;s <a href="http://www.bram.us/projects/js_bramus/jsprogressbarhandler/">Progress Bar Handler</a>. It&#8217;s probably the smoothest, best looking non-flash based progress bar on the net.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.iamkoa.net/2007/12/21/updates-checkboxes-loadbars-oh-my/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vision, Simple PHP/JS/CSS Photo Viewer</title>
		<link>http://labs.iamkoa.net/2007/11/19/vision-simple-phpjscss-photo-viewer/</link>
		<comments>http://labs.iamkoa.net/2007/11/19/vision-simple-phpjscss-photo-viewer/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 01:24:42 +0000</pubDate>
		<dc:creator>Koa</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Labs]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://labs.iamkoa.net/2007/11/19/vision-simple-phpjscss-photo-viewer/</guid>
		<description><![CDATA[The simplest image viewer known to man has been created. Visi&#243;n uses a light touch of PHP, Javascript and CSS to create a straightforward, stylish image viewer. It can be incorporated into any website in under three minutes and takes up less than 20kb of space. Stop reading this and download Visi&#243;n. This article covers [...]]]></description>
			<content:encoded><![CDATA[<p>The simplest image viewer known to man has been created. Visi&oacute;n uses a light touch of PHP, Javascript and CSS to create a straightforward, stylish image viewer. It can be incorporated into any website in under three minutes and takes up less than 20kb of space. Stop reading this and <a href="http://iamkoa.net/vision/" target="_blank">download Visi&oacute;n</a>.</p>
<p><span id="more-44"></span></p>
<div style="text-align:center;width:100%"><a href='http://iamkoa.net/vision/' title='Vision, Simple PHP/JS/CSS Photo Viewer' target='_blank'><img src='http://labs.iamkoa.net/wp-content/uploads/2007/11/vision_screenshot.jpg' alt='Vision Screenshot' /></a></div>
<p></p>
<blockquote><p>
This article covers <u>how</u> to use Visi&oacute;n. To learn more about Visi&oacute;n, <a href="http://iamkoa.net/vision/">check this out</a>.
</p></blockquote>
<h2>Setup Vision</h2>
<p>If you haven&#8217;t already done so, <a href='http://labs.iamkoa.net/wp-content/uploads/2007/11/vision-viewer.zip' title='Vision, Simple PHP/JS/CSS Photo Viewer'>download a copy of Visi&oacute;n</a> and unzip it to any location that&#8217;s able to parse PHP files, like localhost.</p>
<p>For a basic install of Visi&oacute;n, the only file you need to edit is <code>index.php</code>:</p>
<pre class="brush:php">
/**  setup  **/
$imgDir	= "img"; 		// image directory
$imgSub	= false;		// include sub directories when gathering images?
$imgId	= "lgImage"; 	// id tag for images
</pre>
<p>To successfully pull images from your images folder, edit <code>$imgDir</code> accordingly. The above example would be looking for images in a folder called &#8220;img&#8221;, located in the same directory as the <code>index.php</code> file you are editing.</p>
<p>If you would also like to include images located in folders <em>within</em> the images folder you&#8217;ve specified, set the <code>$imgSub</code> variable to <strong>true</strong>. If <code>$imgSub</code> remains set to <strong>false</strong>, all sub folders within the specified images folder will be ignored.</p>
<p>Lastly, you may choose to specify the <strong>id</strong> used for your image on display. Under most circumstances, you won&#8217;t have to change this value.</p>
<h2>Integrate Vision</h2>
<p>Once you&#8217;ve got the <code>index.php</code> edited to your liking, integrating Visi&oacute;n into a web application of your choice is a matter of copying and pasting a few lines of code.</p>
<p>Make sure all the PHP code (lines 1-11) is copied, along with the javascript code (lines 25-37), and content within the <code>id="content"</code> div.</p>
<h2>Easy, Huh?</h2>
<p>That wasn&#8217;t too hard, right? If you&#8217;ve hacked/tweaked/etc Visi&oacute;n for your website, let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.iamkoa.net/2007/11/19/vision-simple-phpjscss-photo-viewer/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Support Labs: Buttons &amp; Badges</title>
		<link>http://labs.iamkoa.net/2007/11/12/support-labs-buttons-badges/</link>
		<comments>http://labs.iamkoa.net/2007/11/12/support-labs-buttons-badges/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 02:59:42 +0000</pubDate>
		<dc:creator>Koa</dc:creator>
				<category><![CDATA[Labs]]></category>

		<guid isPermaLink="false">http://labs.iamkoa.net/2007/11/12/support-labs-buttons-badges/</guid>
		<description><![CDATA[You now have a chance to support Iamkoa Labs via buttons and badges. If you feel that Labs has helped you in any form, support the cause by downloading a small collection of Labs buttons and placing one on your website. Preview: They&#8217;re cute, none-offensive, and fit in your pocket. Usage / Agreement: Any and [...]]]></description>
			<content:encoded><![CDATA[<p>You now have a chance to support Iamkoa Labs via buttons and badges. If you feel that Labs has helped you in any form, support the cause by downloading a small collection of Labs buttons and placing one on your website.</p>
<p><span id="more-42"></span></p>
<h2>Preview:</h2>
<p><img style="border:none;margin:0 auto" src='http://labs.iamkoa.net/wp-content/uploads/2007/11/labs-buttons-badges.gif' alt='Labs Buttons &#038; Badges: Image' /></p>
<p>They&#8217;re cute, none-offensive, and fit in your pocket.</p>
<h2>Usage / Agreement:</h2>
<p>Any and all buttons must <strong>not</strong> be placed on websites sporting pornographic, racist, violent (etc.) content. Doing so constitutes abuse of this agreement. Labs is a clean website, so please treat the buttons similarly. If you agree to these terms, you may download.</p>
<h2>Download:</h2>
<p>Make me proud!</p>
<p><a href='http://labs.iamkoa.net/wp-content/uploads/2007/11/labs-buttons-badges.zip' title='Labs Buttons &#038; Badges'>Download all four buttons by clicking here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://labs.iamkoa.net/2007/11/12/support-labs-buttons-badges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A New Look For Labs!</title>
		<link>http://labs.iamkoa.net/2007/11/04/a-new-look-for-labs/</link>
		<comments>http://labs.iamkoa.net/2007/11/04/a-new-look-for-labs/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 02:18:04 +0000</pubDate>
		<dc:creator>Koa</dc:creator>
				<category><![CDATA[Labs]]></category>

		<guid isPermaLink="false">http://labs.iamkoa.net/2007/11/04/a-new-look-for-labs/</guid>
		<description><![CDATA[It&#8217;s been scrubbed, polished, and given some serious lovin&#8217;. Iamkoa Labs takes advantage of Shaun Inman&#8217;s sIFR (the third version to be exact) to display wicked fonts via Flash. Labs theme is based off of Stephen Reinhardt&#8217;s minimalistic WordPress theme, Elite and has some Coca-Cola-like colors to go along with it. If you use Photoshop, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been scrubbed, polished, and given some serious lovin&#8217;. <a href="http://labs.iamkoa.net">Iamkoa Labs</a> takes advantage of <a href="http://shauninman.com">Shaun Inman&#8217;s</a> <a href="http://www.mikeindustries.com/sifr">sIFR</a> (the third version to be exact) to display wicked fonts via Flash. Labs theme is based off of <a href="http://vaguedream.com/">Stephen Reinhardt&#8217;s</a> minimalistic WordPress theme, <a href="http://vaguedream.com/wordpress/elite-has-arrived/">Elite</a> and has some Coca-Cola-like colors to go along with it. If you use Photoshop, feel free to download the <a href='http://labs.iamkoa.net/wp-content/uploads/2007/11/iamkoa_labs_swatch.zip' title='Labs PS Swatch Set'>Labs Photoshop swatch set</a>.</p>
<p>Happy trails.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.iamkoa.net/2007/11/04/a-new-look-for-labs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
