<?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>DudeAmI.com</title>
	<atom:link href="http://dudeami.com/feed" rel="self" type="application/rss+xml" />
	<link>http://dudeami.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 04 May 2011 17:24:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Yesterdays Downtime</title>
		<link>http://dudeami.com/posts/yesterdays-downtime.html</link>
		<comments>http://dudeami.com/posts/yesterdays-downtime.html#comments</comments>
		<pubDate>Wed, 04 May 2011 17:24:25 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dudeami.com/?p=122</guid>
		<description><![CDATA[Due to a dispute with my hosting company, this site and Gfxtub.com went down yesterday. I apologize for the downtime. Why? Well, a while back I tested a private server of theirs for Minecraft, and it didn&#8217;t work out so good (Lots of lag, don&#8217;t think their PS was meant for online games :p). Anyways, [...]]]></description>
			<content:encoded><![CDATA[<p>Due to a dispute with my hosting company, this site and Gfxtub.com went down yesterday. I apologize for the downtime.</p>
<p>Why? Well, a while back I tested a private server of theirs for Minecraft, and it didn&#8217;t work out so good (Lots of lag, don&#8217;t think their PS was meant for online games :p). Anyways, I asked them to cancel it, and they said they had to do it manually. Eventually it got taken offline, but I got charged for the time I used it (The email I got said I wasn&#8217;t going to). So, I forgot about it and yesterday the sites got taken down, which is no good. I paid off the what I owed them. Their a great hosting company anyways, I&#8217;m not letting ~$20 stop me from using them :p</p>
<p>So, that&#8217;s the story, and we should be fine until my bill comes up again (Next year) :p</p>
]]></content:encoded>
			<wfw:commentRss>http://dudeami.com/posts/yesterdays-downtime.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fuel Compressor</title>
		<link>http://dudeami.com/posts/fuel-compressor.html</link>
		<comments>http://dudeami.com/posts/fuel-compressor.html#comments</comments>
		<pubDate>Tue, 26 Apr 2011 21:21:06 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dudeami.com/?p=114</guid>
		<description><![CDATA[Now, I have started using FuelPHP, which is an awesome new PHP 5.3 framework! It&#8217;s been the framework for the new gfxtub, and it&#8217;s really working out quite well. Since starting using fuel, I have contributed an Image and Email class, and now I made my first package: Fuel Compressor. Really how it works is [...]]]></description>
			<content:encoded><![CDATA[<p>Now, I have started using <a href="http://fuelphp.com/">FuelPHP</a>, which is an awesome new PHP 5.3 framework! It&#8217;s been the framework for the new gfxtub, and it&#8217;s really working out quite well. Since starting using fuel, I have contributed an Image and Email class, and now I made my first package: Fuel Compressor.</p>
<p>Really how it works is simple. The compressor works like the asset class, sort of. An example of using the compressor is:</p>
<pre class="php"><code>
Fuel::add_package('compressor');

$files = array('script1.js', 'script2.js', 'scriptN.js');

// Echos &lt;script src="http://.../scripts.pack.js" type="text/javascript"&gt;&lt;/script&gt;
echo Compressor::js($files, 'scripts.pack');

</code></pre>
<p><span id="more-114"></span>Now, that&#8217;s a basic example of taking multiple scripts, compressing, and adding them to you assets folder. Note that it can cache to folders other than the assets folder (Set in &#8216;compressor/config/compressor.php&#8217;), but it will force the use of a js and css folder within the configured folder. This behavior is because the package was designed as a simple way of auto-magically compressing your scripts while you work on them locally, then not have to worry about it in the production environment.</p>
<p>It will return the code if the 2nd param is null:</p>
<pre class="php"><code>
$myscript = "Script goes here";
$myjs = Compressor::js($myscript);
echo $myjs; // Echos the compressed js

$myscripts = array('scripts.js');
$myjs = Compressor::js($myscripts);
echo $myjs; // Echos the compressed js files

</code></pre>
<p>That about covers the basic use. There is a HTML compressor, but it&#8217;s just a basic call to the html-compressor lib. Also, the documentation in the actually classes folder should cover anything not said here.</p>
]]></content:encoded>
			<wfw:commentRss>http://dudeami.com/posts/fuel-compressor.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Zeroclipboard v2</title>
		<link>http://dudeami.com/posts/jquery-zeroclipboard-v2.html</link>
		<comments>http://dudeami.com/posts/jquery-zeroclipboard-v2.html#comments</comments>
		<pubDate>Sun, 24 Apr 2011 22:17:53 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dudeami.com/?p=110</guid>
		<description><![CDATA[This update added a few features to the plugin: Uses one flash element being repositioned around the page. Decreases load times and stress when multiple elements are copyable. Added the choice to choose which size method to use (Outer, inner, standard .width()/.height()) Removed a couple of dependencies, and removed the resize event. This was due [...]]]></description>
			<content:encoded><![CDATA[<p>This update added a few features to the plugin:</p>
<ul>
<li>Uses one flash element being repositioned around the page. Decreases load times and stress when multiple elements are copyable.</li>
<li>Added the choice to choose which size method to use (Outer, inner, standard .width()/.height())</li>
<li>Removed a couple of dependencies, and removed the resize event. This was due to the fact that if you resize an inactive<br />
element, it updates next time it is hovered over. Also if needed, the update can be called manually, which is a lot more<br />
resource friendly :p</li>
<li>Added the events &#8216;mouseleave&#8217;, &#8216;mouseenter&#8217;, and &#8216;complete&#8217; (Which is fired after a successful copy)</li>
<li>Just about rewrote the thing, lots of code changes.</li>
</ul>
<p>And a video of the script in action after the jump.<span id="more-110"></span></p>
<p><iframe src="http://player.vimeo.com/video/22813660" width="500" height="438" frameborder="0"></iframe></p>
<p><a href="http://vimeo.com/22813660">jQuery ZeroClipboard plugin</a> from <a href="http://vimeo.com/dudeami">Kris K</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dudeami.com/posts/jquery-zeroclipboard-v2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An update</title>
		<link>http://dudeami.com/posts/an-update.html</link>
		<comments>http://dudeami.com/posts/an-update.html#comments</comments>
		<pubDate>Tue, 05 Apr 2011 03:37:19 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dudeami.com/?p=102</guid>
		<description><![CDATA[Well, since I have not even touched this blog in a while, I figured I would make a little post about what I&#8217;ve been up to. Right now I am working with FuelPHP, and made a few classes for them (Image + Email). Due to me now loving fuel, I have been in the process [...]]]></description>
			<content:encoded><![CDATA[<p>Well, since I have not even touched this blog in a while, I figured I would make a little post about what I&#8217;ve been up to. Right now I am working with FuelPHP, and made a few classes for them (Image + Email). Due to me now loving fuel, I have been in the process of rebuilding gfxtub.com with it. I did have some new features for it, but sadly my HDD got fried. My plans for gfxtub.com will be reveal shortly, but my goal is to make it something that will make working with images, in any way, on the web awesome. Right now you can upload, but we all know images need to be able to more than  that :p</p>
<p>I&#8217;ll be updating this blog more often, hopefully!</p>
]]></content:encoded>
			<wfw:commentRss>http://dudeami.com/posts/an-update.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery ZeroClipboard Plugin</title>
		<link>http://dudeami.com/posts/jquery-zeroclipboard-plugin.html</link>
		<comments>http://dudeami.com/posts/jquery-zeroclipboard-plugin.html#comments</comments>
		<pubDate>Wed, 28 Jul 2010 21:36:22 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[jQuery Addons]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jQuery Plugin]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ZeroClipboard]]></category>

		<guid isPermaLink="false">http://dudeami.com/?p=93</guid>
		<description><![CDATA[Recently, while developing my site gfxtub.com, I came across the need to do a flash copy to clipboard. Now, this was easy enough with ZeroClipboard, but once I tried mixing it with jQuery and making multiple clipboards, stuff got messy. So, in the spirit of cleaner code, I started a new project to make the [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, while developing my site gfxtub.com, I came across the need to do a flash copy to clipboard. Now, this was easy enough with ZeroClipboard, but once I tried mixing it with jQuery and making multiple clipboards, stuff got messy. So, in the spirit of cleaner code, I started a new project to make the use of ZeroClipboard easier with jQuery. So, you can check out my project over at github (<a href="http://github.com/dudeami/jQuery-ZeroClipboard">Link</a>).</p>
<p>Basic usage of the script goes along the lines of</p>
<pre><code class="javascript">$('selector').zeroclipboard({text: 'This is the text to copy!'});</code></pre>
<p>Thats it! You use the same method to update text and any other options, or to destroy the flash object. Also, when the .remove() is called on element the clipboard is bound to, it removes the zeroclipboard automagically. Also, any mouse events on the element select are emulated when they are preformed on the flash object.</p>
<p>Read the entry on github for more information, but I am trying to make clipboards as easy and painless as possible. The only problem is the use of external libraries, which I would like to minimize, but right now they work good with the script.</p>
]]></content:encoded>
			<wfw:commentRss>http://dudeami.com/posts/jquery-zeroclipboard-plugin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Site &#8211; Gfxtub.com</title>
		<link>http://dudeami.com/posts/new-site-gfxtub-com.html</link>
		<comments>http://dudeami.com/posts/new-site-gfxtub-com.html#comments</comments>
		<pubDate>Sat, 10 Jul 2010 20:06:48 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dudeami.com/?p=83</guid>
		<description><![CDATA[Well, during my free time of late I have been working on a little site. Recently, I hit the point where its basic function, getting images on the web, is working. The site offers to keep your photos online forever with no limits, as long as the images are legal in the United States. I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dudeami.com/wp-content/uploads/2010/07/gfxtub.com_.png"><img class="alignright size-full wp-image-86" title="gfxtub.com" src="http://dudeami.com/wp-content/uploads/2010/07/gfxtub.com_.png" alt="" width="236" height="134" /></a>Well, during my free time of late I have been working on a little site. Recently, I hit the point where its basic function, getting images on the web, is working. The site offers to keep your photos online forever with no limits, as long as the images are legal in the United States. I hope to add more features with the login, such as making thumbnails and possibly adding a folder structure and API for veiwing images.</p>
<p>Visit it over at <a href="http://gfxtub.com/">Gfxtub.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dudeami.com/posts/new-site-gfxtub-com.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dGallery &#8211; Simple yet Effective Gallery Plugin</title>
		<link>http://dudeami.com/posts/dgallery-simple-yet-effective-gallery-plugin.html</link>
		<comments>http://dudeami.com/posts/dgallery-simple-yet-effective-gallery-plugin.html#comments</comments>
		<pubDate>Tue, 21 Jul 2009 09:18:41 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dudeami.com/?p=37</guid>
		<description><![CDATA[Out of boredom, and the need for something on my portfolio, I went and made a plugin for jQuery that made a lightbox like gallery without much modification. Actually, you just need to import the script + add a class to an element, and your done. If you wanna check it out, click the link [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-39" title="dgallery-preview" src="http://dudeami.com/wp-content/uploads/2009/07/dgallery-preview-300x210.png" alt="dgallery-preview" width="300" height="210" />Out of boredom, and the need for something on my portfolio, I went and made a plugin for jQuery that made a lightbox like gallery without much modification. Actually, you just need to import the script + add a class to an element, and your done. If you wanna check it out, click the link below</p>
<p>[<a href="http://www.dudeami.com/dgallery/">dGallery</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://dudeami.com/posts/dgallery-simple-yet-effective-gallery-plugin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tooltips for jQuery</title>
		<link>http://dudeami.com/posts/comments-for-jquery.html</link>
		<comments>http://dudeami.com/posts/comments-for-jquery.html#comments</comments>
		<pubDate>Wed, 11 Mar 2009 02:59:15 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[tooltips]]></category>

		<guid isPermaLink="false">http://dudeami.com/?p=18</guid>
		<description><![CDATA[Now, I needed this for my own purposes (remaking the image mapper). But, since it works very well, I decided to release it for anyone to use. What can it do? Add a tooltip, or comment, to any DOM object or just using coords Add it to one or multiple objects Have it removed after [...]]]></description>
			<content:encoded><![CDATA[<p>Now, I needed this for my own purposes (remaking the image mapper). But, since it works very well, I decided to release it for anyone to use. What can it do?</p>
<ul>
<li>Add a tooltip, or comment, to any DOM object or just using coords</li>
<li>Add it to one or multiple objects</li>
<li>Have it removed after a certain amount of time, or when an event happens to the parent of the comment</li>
<li>Choose how to position them</li>
</ul>
<p><strong>Tested Browsers:</strong> IE6+, Firefox 1.5+, Safari 4, and Google Chrome 1.0 (All on Windows).</p>
<p>For a full explaination, just go over to the [<a href="http://www.dudeami.com/tooltips/">jQuery Tooltips Site</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://dudeami.com/posts/comments-for-jquery.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

