<?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"
	>

<channel>
	<title>GILBERT GUERRERO &#124; WORK</title>
	<atom:link href="http://www.gilbertguerrero.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gilbertguerrero.com</link>
	<description></description>
	<pubDate>Mon, 15 Sep 2008 21:13:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Prototype + Script.aculo.us Slideshow</title>
		<link>http://www.gilbertguerrero.com/2008/09/13/scriptaculous-slideshow/</link>
		<comments>http://www.gilbertguerrero.com/2008/09/13/scriptaculous-slideshow/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 03:23:27 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/?p=58</guid>
		<description><![CDATA[Here&#8217;s a snippet of code I put together for my animation and interactivity class.  It&#8217;s a slideshow that uses Prototype and script.aculo.us.
View a demo
Here&#8217;s the JavaScript that appears in the header:


&#60;script language=&#34;JavaScript&#34; type=&#34;text/javascript&#34;&#62;
var i = 0;
var slide;

function SlideShow&#40;&#41; &#123;
&#160; &#160; &#160; &#160; $&#40; slide&#91;i&#93; &#41;.fade&#40;&#123; duration:5 &#125;&#41;;
&#160; &#160; &#160; &#160; i++;&#160; &#160; &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a snippet of code I put together for my animation and interactivity class.  It&#8217;s a slideshow that uses <a href="http://www.prototypejs.org">Prototype</a> and <a href="http://script.aculo.us">script.aculo.us</a>.</p>
<p><a href="/blog/wp-content/uploads/2008/slideshow">View a demo</a></p>
<p>Here&#8217;s the JavaScript that appears in the header:</p>
<pre>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">&lt;script language=<span class="st0">&quot;JavaScript&quot;</span> type=<span class="st0">&quot;text/javascript&quot;</span>&gt;
<span class="kw2">var</span> i = <span class="nu0">0</span>;
<span class="kw2">var</span> slide;

<span class="kw2">function</span> SlideShow<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; $<span class="br0">&#40;</span> slide<span class="br0">&#91;</span>i<span class="br0">&#93;</span> <span class="br0">&#41;</span>.<span class="me1">fade</span><span class="br0">&#40;</span><span class="br0">&#123;</span> duration:<span class="nu0">5</span> <span class="br0">&#125;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; i++;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span> <span class="br0">&#40;</span>i == slide.<span class="me1">length</span><span class="br0">&#41;</span> i = <span class="nu0">0</span>; 
&nbsp; &nbsp; &nbsp; &nbsp; $<span class="br0">&#40;</span> slide<span class="br0">&#91;</span>i<span class="br0">&#93;</span> <span class="br0">&#41;</span>.<span class="me1">appear</span><span class="br0">&#40;</span><span class="br0">&#123;</span> duration:<span class="nu0">5</span>, afterFinish: <span class="kw2">function</span> <span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span> SlideShow<span class="br0">&#40;</span><span class="br0">&#41;</span>; <span class="br0">&#125;</span> <span class="br0">&#125;</span><span class="br0">&#41;</span>;
<span class="br0">&#125;</span> 

document.<span class="me1">observe</span><span class="br0">&#40;</span>`dom:loaded`, <span class="kw2">function</span> <span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; $$<span class="br0">&#40;</span>`#myslideshow img`<span class="br0">&#41;</span>.<span class="me1">each</span><span class="br0">&#40;</span><span class="kw2">function</span><span class="br0">&#40;</span>image<span class="br0">&#41;</span><span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $<span class="br0">&#40;</span>image<span class="br0">&#41;</span>.<span class="me1">hide</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; slide = &nbsp;$<span class="br0">&#40;</span>`myslideshow`<span class="br0">&#41;</span>.<span class="me1">childElements</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;
&nbsp; &nbsp; &nbsp; &nbsp; $<span class="br0">&#40;</span> slide<span class="br0">&#91;</span><span class="nu0">0</span><span class="br0">&#93;</span> <span class="br0">&#41;</span>.<span class="me1">appear</span><span class="br0">&#40;</span><span class="br0">&#123;</span> duration:<span class="nu0">1</span>, afterFinish: <span class="kw2">function</span> <span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span> SlideShow<span class="br0">&#40;</span><span class="br0">&#41;</span>; <span class="br0">&#125;</span> <span class="br0">&#125;</span><span class="br0">&#41;</span>;
<span class="br0">&#125;</span><span class="br0">&#41;</span>;
&lt;/script&gt;</div>
</div>
</pre>
<p>Some basic CSS also appears in the header to place the images in the right location on the page:</p>
<pre>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">&lt;style type=<span class="st0">&quot;text/css&quot;</span>&gt;
&lt;!--
<span class="re0">#myslideshow</span> img <span class="br0">&#123;</span>
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">position</span>: <span class="kw2">absolute</span>; 
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">z-index</span>: <span class="nu0">10</span>;
<span class="br0">&#125;</span>

<span class="re0">#myslideshow</span> <span class="br0">&#123;</span> &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">position</span>: <span class="kw2">relative</span>;
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">height</span>: <span class="re3">450px</span>;
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">width</span>: <span class="re3">600px</span>;
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">background-color</span>: <span class="re0">#<span class="nu0">000000</span></span>;
<span class="br0">&#125;</span>
--&gt;
&lt;/style&gt;</div>
</div>
</pre>
<p>This basic HTML appears in the body to load the images for the slideshow.  Any number of images can be added here:</p>
<pre>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;"><span class="sc2"><a href="http://december.com/html/4/element/div.html"><span class="kw2">&lt;div</span></a> <span class="kw3">id</span>=<span class="st0">&quot;myslideshow&quot;</span><span class="kw2">&gt;</span></span>
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2"><a href="http://december.com/html/4/element/img.html"><span class="kw2">&lt;img</span></a> <span class="kw3">src</span>=<span class="st0">&quot;images/IMG_0350.jpg&quot;</span> <span class="kw3">width</span>=<span class="st0">&quot;600&quot;</span> <span class="kw3">height</span>=<span class="st0">&quot;450&quot;</span> /<span class="kw2">&gt;</span></span>
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2"><a href="http://december.com/html/4/element/img.html"><span class="kw2">&lt;img</span></a> <span class="kw3">src</span>=<span class="st0">&quot;images/IMG_0351.jpg&quot;</span> <span class="kw3">width</span>=<span class="st0">&quot;600&quot;</span> <span class="kw3">height</span>=<span class="st0">&quot;450&quot;</span> /<span class="kw2">&gt;</span></span>
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2"><a href="http://december.com/html/4/element/img.html"><span class="kw2">&lt;img</span></a> <span class="kw3">src</span>=<span class="st0">&quot;images/IMG_0352.jpg&quot;</span> <span class="kw3">width</span>=<span class="st0">&quot;600&quot;</span> <span class="kw3">height</span>=<span class="st0">&quot;450&quot;</span> /<span class="kw2">&gt;</span></span>
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2"><a href="http://december.com/html/4/element/img.html"><span class="kw2">&lt;img</span></a> <span class="kw3">src</span>=<span class="st0">&quot;images/IMG_0353.jpg&quot;</span> <span class="kw3">width</span>=<span class="st0">&quot;600&quot;</span> <span class="kw3">height</span>=<span class="st0">&quot;450&quot;</span> /<span class="kw2">&gt;</span></span>
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2"><a href="http://december.com/html/4/element/img.html"><span class="kw2">&lt;img</span></a> <span class="kw3">src</span>=<span class="st0">&quot;images/IMG_0354.jpg&quot;</span> <span class="kw3">width</span>=<span class="st0">&quot;600&quot;</span> <span class="kw3">height</span>=<span class="st0">&quot;450&quot;</span> /<span class="kw2">&gt;</span></span>
<span class="sc2"><span class="kw2">&lt;/div&gt;</span></span></div>
</div>
</pre>
<p>This slideshow uses several Prototype and script.aculo.us functions.  It uses two basic combination effects, Fade and Appear. Other functions:</p>
<p><strong>$document.observe()</strong> keeps the functions from starting until the page has loaded.  For instance, if the images haven&#8217;t been quite loaded and the scripts start to run, things could go wrong or nothing could happen at all.</p>
<pre>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">document.<span class="me1">observe</span><span class="br0">&#40;</span><span class="st0">'dom:loaded'</span>, <span class="kw2">function</span> <span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
&nbsp; &nbsp; <span class="co1">//place scripts here</span>
<span class="br0">&#125;</span><span class="br0">&#41;</span>;</div>
</div>
</pre>
<p><strong>$(&#8217;element&#8217;).childElements()</strong> allows us to grab all the items nested inside of an object on the page.  In this case we want to grab all the images that are in the &#8220;myslideshow&#8221; div to use in the slideshow.  The items are then stored in an array which we called &#8220;slide&#8221;.</p>
<pre>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">slide = &nbsp;$<span class="br0">&#40;</span><span class="st0">'myslideshow'</span><span class="br0">&#41;</span>.<span class="me1">childElements</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</div>
</pre>
<p><strong>afterFinish</strong> is used in the appear function in several places.  It allows us to call a function after the current slide has faded in.  In the SlideShow function notice that in the appear function for afterFinish we actually call the function itself&#8211;SlideShow refers to itself.  This is what&#8217;s called a <em>recursive function</em>.  This causes the slideshow to loop.</p>
<pre>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">$<span class="br0">&#40;</span> slide<span class="br0">&#91;</span>i<span class="br0">&#93;</span> <span class="br0">&#41;</span>.<span class="me1">appear</span><span class="br0">&#40;</span><span class="br0">&#123;</span> duration:<span class="nu0">5</span>, afterFinish: <span class="kw2">function</span> <span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span> SlideShow<span class="br0">&#40;</span><span class="br0">&#41;</span>; <span class="br0">&#125;</span> <span class="br0">&#125;</span><span class="br0">&#41;</span>;</div>
</div>
</pre>
<ul>
<li><a href='http://www.gilbertguerrero.com/blog/wp-content/uploads/2008/09/slideshow.zip'>Download Slideshow Files (.zip)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/09/13/scriptaculous-slideshow/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bachelor Weekend</title>
		<link>http://www.gilbertguerrero.com/2008/08/23/bachelor-weekend/</link>
		<comments>http://www.gilbertguerrero.com/2008/08/23/bachelor-weekend/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 23:12:06 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
		
		<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/?p=54</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<div class="ngg-galleryoverview" id="ngg-gallery-4"><div class="slideshowlink"><a class="slideshowlink" href="/feed/?show=slide">[Show as slideshow]</a></div><div id="ngg-image-35" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb35" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0379.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0379.JPG" alt="IMG_0379.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0379.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-36" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb36" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0381.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0381.JPG" alt="IMG_0381.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0381.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-37" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb37" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0382.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0382.JPG" alt="IMG_0382.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0382.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-38" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb38" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0383.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0383.JPG" alt="IMG_0383.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0383.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-39" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb39" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0384.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0384.JPG" alt="IMG_0384.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0384.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-40" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb40" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0385.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0385.JPG" alt="IMG_0385.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0385.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-41" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb41" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0386.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0386.JPG" alt="IMG_0386.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0386.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-42" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb42" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0390.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0390.JPG" alt="IMG_0390.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0390.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-43" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb43" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0391.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0391.JPG" alt="IMG_0391.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0391.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-44" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb44" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0392.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0392.JPG" alt="IMG_0392.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0392.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-45" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb45" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0394.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0394.JPG" alt="IMG_0394.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0394.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-46" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb46" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0395.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0395.JPG" alt="IMG_0395.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0395.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-47" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb47" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0396.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0396.JPG" alt="IMG_0396.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0396.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-48" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb48" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0397.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0397.JPG" alt="IMG_0397.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0397.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-49" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb49" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0399.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0399.JPG" alt="IMG_0399.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0399.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-50" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb50" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0400.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0400.JPG" alt="IMG_0400.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0400.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-51" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb51" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0401.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0401.JPG" alt="IMG_0401.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0401.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-52" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb52" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0402.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0402.JPG" alt="IMG_0402.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0402.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-53" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb53" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0403.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0403.JPG" alt="IMG_0403.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0403.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-54" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb54" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0404.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0404.JPG" alt="IMG_0404.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0404.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-55" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb55" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0405.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0405.JPG" alt="IMG_0405.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0405.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-56" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb56" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/IMG_0406.JPG" title="" class="thickbox" rel="bachelor-party" ><img title="IMG_0406.JPG" alt="IMG_0406.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/bachelor-party/thumbs/thumbs_IMG_0406.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
</div>
<div class="ngg-clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/08/23/bachelor-weekend/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Swing Dancing + Pizza</title>
		<link>http://www.gilbertguerrero.com/2008/08/17/swing-dancing-pizza/</link>
		<comments>http://www.gilbertguerrero.com/2008/08/17/swing-dancing-pizza/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 02:50:07 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
		
		<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/?p=35</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<div class="ngg-galleryoverview" id="ngg-gallery-2"><div class="slideshowlink"><a class="slideshowlink" href="/feed/?show=slide">[Show as slideshow]</a></div><div id="ngg-image-1" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb1" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0344.JPG" title="Lovely hazy sunset" class="thickbox" rel="swing-dancing" ><img title="IMG_0344.JPG" alt="IMG_0344.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0344.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-2" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb2" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0346.JPG" title="Pizza dough" class="thickbox" rel="swing-dancing" ><img title="IMG_0346.JPG" alt="IMG_0346.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0346.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-3" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb3" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0348.JPG" title="" class="thickbox" rel="swing-dancing" ><img title="IMG_0348.JPG" alt="IMG_0348.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0348.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-4" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb4" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0350.JPG" title="" class="thickbox" rel="swing-dancing" ><img title="IMG_0350.JPG" alt="IMG_0350.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0350.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-5" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb5" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0352.JPG" title="Weird! Avant-garde iPhone error!" class="thickbox" rel="swing-dancing" ><img title="IMG_0352.JPG" alt="IMG_0352.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0352.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-6" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb6" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0353.JPG" title="Decorating the pizzas" class="thickbox" rel="swing-dancing" ><img title="IMG_0353.JPG" alt="IMG_0353.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0353.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-7" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb7" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0354.JPG" title="" class="thickbox" rel="swing-dancing" ><img title="IMG_0354.JPG" alt="IMG_0354.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0354.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-8" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb8" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0355.JPG" title="Dave" class="thickbox" rel="swing-dancing" ><img title="IMG_0355.JPG" alt="IMG_0355.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0355.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-9" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb9" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0356.JPG" title="Lara" class="thickbox" rel="swing-dancing" ><img title="IMG_0356.JPG" alt="IMG_0356.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0356.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-10" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb10" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0358.JPG" title="Lisa" class="thickbox" rel="swing-dancing" ><img title="IMG_0358.JPG" alt="IMG_0358.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0358.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-11" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb11" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0359.JPG" title="Magdi" class="thickbox" rel="swing-dancing" ><img title="IMG_0359.JPG" alt="IMG_0359.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0359.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-12" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb12" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0360.JPG" title="Kathleen" class="thickbox" rel="swing-dancing" ><img title="IMG_0360.JPG" alt="IMG_0360.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0360.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-13" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb13" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0361-2.jpg" title="Some dancing lessons" class="thickbox" rel="swing-dancing" ><img title="IMG_0361-2.jpg" alt="IMG_0361-2.jpg" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0361-2.jpg" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-14" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb14" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0365.JPG" title="" class="thickbox" rel="swing-dancing" ><img title="IMG_0365.JPG" alt="IMG_0365.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0365.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-15" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb15" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/IMG_0366.JPG" title="" class="thickbox" rel="swing-dancing" ><img title="IMG_0366.JPG" alt="IMG_0366.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/swing-dancing/thumbs/thumbs_IMG_0366.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
</div>
<div class="ngg-clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/08/17/swing-dancing-pizza/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordCamp SF 2008</title>
		<link>http://www.gilbertguerrero.com/2008/08/16/wordcamp-sf-2008/</link>
		<comments>http://www.gilbertguerrero.com/2008/08/16/wordcamp-sf-2008/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 00:53:34 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/?p=24</guid>
		<description><![CDATA[Finally made it out to WordCamp in San Francisco.

Some interestingness that I encountered today:

Chris Lea from Media Temple pitched NGINX. Apparently, it blows away Apache in performance.  Whereas Apache uses forking, NGINX is asynchronous.
Joseph Scott pitched the Open Source WordPress iPhone App.
Sam Bauers on maintaining WordPress using SVN. You can now move the content directory [...]]]></description>
			<content:encoded><![CDATA[<p>Finally made it out to WordCamp in San Francisco.</p>
<p><a href="http://2008.sf.wordcamp.org/"><img class="alignnone size-full wp-image-23" title="WordCamp 2008" src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/08/wordcamp2008.png" alt="" width="254" height="209" /></a></p>
<p>Some interestingness that I encountered today:</p>
<ul>
<li><a href="http://www.chrislea.com">Chris Lea</a> from Media Temple pitched <a href="http://nginx.net/">NGINX</a>. Apparently, it blows away Apache in performance.  Whereas Apache uses forking, NGINX is asynchronous.</li>
<li><a href="http://joseph.randomnetworks.com/">Joseph Scott</a> pitched the <em>Open Source</em> <a href="http://iphone.wordpress.org/">WordPress iPhone App</a>.</li>
<li><a href="http://unlettered.org/">Sam Bauers</a> on maintaining WordPress using SVN. You can now <a href="http://codex.wordpress.org/Editing_wp-config.php#Moving_wp-content">move the content directory</a> outside of the WordPress directory. Symlink to plugins that you want SVN to maintain, like Akismet.</li>
<li><a href="http://jcksn.com/">Noel Jackson</a> used the <a href="http://digital-photography-school.com/blog/rule-of-thirds/">Rule of Thirds</a>, PHP, and JavaScript to get colors from photos in a blog to create a monochromatic theme, <a href="http://eight6.com/2008/05/14/automattic-monotone/">Monotone</a>.</li>
</ul>
<p>Also got a free t-shirt, lunch, and tons of coffee!</p>
<div id="attachment_30" class="wp-caption alignleft" style="width: 310px"><a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/08/img_0373.jpg"><img class="size-medium wp-image-30" title="Lunch!" src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/08/img_0373-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">Lunch!</p></div>
<div id="attachment_31" class="wp-caption alignleft" style="width: 310px"><a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/08/img_0375.jpg"><img class="size-medium wp-image-31" title="Computers" src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/08/img_0375-300x225.jpg" alt="Sea of computers.  Are there more computers than people in this picture?" width="300" height="225" /></a><p class="wp-caption-text">Sea of computers.  Are there more computers than people in this picture? Taken at the beginning of Matt Mullenweg&#39;s talk</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/08/16/wordcamp-sf-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kathleen&#8217;s Birthday Bash</title>
		<link>http://www.gilbertguerrero.com/2008/08/04/kathleens-birthday-bash/</link>
		<comments>http://www.gilbertguerrero.com/2008/08/04/kathleens-birthday-bash/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 20:37:33 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
		
		<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/?p=52</guid>
		<description><![CDATA[We had lots of fun BBQ&#8217;ing with the folks, Sara &#38; Mitch, and little Emily&#8211;the baby!!!
]]></description>
			<content:encoded><![CDATA[<p>We had lots of fun BBQ&#8217;ing with the folks, Sara &amp; Mitch, and little Emily&#8211;the baby!!!</p><div class="ngg-galleryoverview" id="ngg-gallery-3"><div class="slideshowlink"><a class="slideshowlink" href="/feed/?show=slide">[Show as slideshow]</a></div><div id="ngg-image-16" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb16" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0315.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0315.JPG" alt="IMG_0315.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0315.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-17" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb17" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0316.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0316.JPG" alt="IMG_0316.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0316.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-18" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb18" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0317.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0317.JPG" alt="IMG_0317.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0317.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-19" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb19" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0318.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0318.JPG" alt="IMG_0318.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0318.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-20" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb20" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0319.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0319.JPG" alt="IMG_0319.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0319.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-21" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb21" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0320.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0320.JPG" alt="IMG_0320.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0320.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-22" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb22" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0321.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0321.JPG" alt="IMG_0321.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0321.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-23" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb23" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0322.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0322.JPG" alt="IMG_0322.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0322.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-24" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb24" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0323.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0323.JPG" alt="IMG_0323.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0323.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-25" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb25" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0324.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0324.JPG" alt="IMG_0324.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0324.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-26" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb26" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0325.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0325.JPG" alt="IMG_0325.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0325.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-27" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb27" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0326.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0326.JPG" alt="IMG_0326.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0326.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-28" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb28" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0327.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0327.JPG" alt="IMG_0327.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0327.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-29" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb29" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0329.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0329.JPG" alt="IMG_0329.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0329.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-30" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb30" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0330.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0330.JPG" alt="IMG_0330.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0330.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-31" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb31" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0331.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0331.JPG" alt="IMG_0331.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0331.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-32" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb32" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0332.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0332.JPG" alt="IMG_0332.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0332.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-33" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb33" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0333.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0333.JPG" alt="IMG_0333.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0333.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
<div id="ngg-image-34" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb34" href="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/IMG_0334.JPG" title="" class="thickbox" rel="kathleen-bday-2008" ><img title="IMG_0334.JPG" alt="IMG_0334.JPG" src="http://www.gilbertguerrero.com/wp/wp-content/gallery/kathleen-bday-2008/thumbs/thumbs_IMG_0334.JPG" style="width:150px; height:150px;" /></a>
</div>
</div>
</div>
<div class="ngg-clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/08/04/kathleens-birthday-bash/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Alternative Exposure</title>
		<link>http://www.gilbertguerrero.com/2008/03/27/alternative-exposure/</link>
		<comments>http://www.gilbertguerrero.com/2008/03/27/alternative-exposure/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 07:23:26 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<category><![CDATA[client work]]></category>

		<category><![CDATA[CMS]]></category>

		<category><![CDATA[nonprofit]]></category>

		<category><![CDATA[Southern Exposure]]></category>

		<category><![CDATA[web design]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/2008/03/27/alternative-exposure/</guid>
		<description><![CDATA[
Southern Exposure&#8217;s granting program Alternative Exposure  released its grantees website this month.  I worked with Southern Exposure to create the look and feel based on printed materials, brochures, and a set of logos.Â  I built the site using WordPress for content management and user account management. Grantees can login and update their project [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/03/soex-altex_640px.png" alt="Alternative Exposure (smaller image)" /></p>
<p>Southern Exposure&#8217;s granting program <em><strong>Alternative Exposure  </strong></em>released its grantees website this month.  I worked with Southern Exposure to create the look and feel based on printed materials, brochures, and a set of logos.Â  I built the site using WordPress for content management and user account management. Grantees can login and update their project pages, post an image, and post events.  The site will also auto-archive the list of grantees each year as their granting program progresses.</p>
<p>Southern Exposure is a nonprofit art exhibition space in San Francisco.</p>
<ul>
<li>Alternative Exposure website - <a href="http://www.soex.org/alternativeexposure/">http://www.soex.org/alternativeexposure</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/03/27/alternative-exposure/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Strange Weather Launches Today!</title>
		<link>http://www.gilbertguerrero.com/2008/03/13/strange/</link>
		<comments>http://www.gilbertguerrero.com/2008/03/13/strange/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 17:14:08 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/2008/03/13/strange/</guid>
		<description><![CDATA[

&#160;
Strange Weather is on view at Eyebeam (http://www.eyebeam.org) in New York City.
&#160;
http://www.strangeweatherproject.net
]]></description>
			<content:encoded><![CDATA[<p><!--Mime Type of File is image/jpeg --></p>
<p class="postie-image-div"><a href="http://www.gilbertguerrero.com/wp/wp-photos/20080313-101408-1.jpg" onclick="window.open('http://www.gilbertguerrero.com/wp/wp-photos/20080313-101408-1.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=500,width=660');return false;"><img src="http://www.gilbertguerrero.com/wp/wp-photos/thumb.20080313-101408-1.jpg" alt="photo.jpg" title="photo.jpg" style="border: medium none " class="postie-image" /></a></p>
<p class="postie-image-div">&nbsp;</p>
<p class="postie-image-div">Strange Weather is on view at Eyebeam (<a href="http://www.eyebeam.org">http://www.eyebeam.org</a>) in New York City.</p>
<p class="postie-image-div">&nbsp;</p>
<p class="postie-image-div"><a href="&gt; &gt; Strange Weather is on view at Eyebeam (http://www.eyebeam.org) in &gt; New York City. &gt; &gt; http://www.strangeweatherproject.net">http://www.strangeweatherproject.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/03/13/strange/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Design Bootcamp: Post-workshop files</title>
		<link>http://www.gilbertguerrero.com/2008/03/11/web-design-bootcamp-post-workshop-files/</link>
		<comments>http://www.gilbertguerrero.com/2008/03/11/web-design-bootcamp-post-workshop-files/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 16:23:29 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
		
		<category><![CDATA[Teaching]]></category>

		<category><![CDATA[downloads]]></category>

		<category><![CDATA[DVC]]></category>

		<category><![CDATA[web design]]></category>

		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/2008/03/11/web-design-bootcamp-post-workshop-files/</guid>
		<description><![CDATA[Thank you to all the people who attended the Web Design Bootcamp at DVC last weekend!  I had a brilliant time.Â  It was great to work with you and share a whole lot of knowledge about Web Design.Â  I&#8217;ve made the presentation and project files available for you to download.
Downloads:

Web Design Bootcamp Presentation (PDF, [...]]]></description>
			<content:encoded><![CDATA[<p>Thank you to all the people who attended the Web Design Bootcamp at DVC last weekend!  I had a brilliant time.Â  It was great to work with you and share a whole lot of knowledge about Web Design.Â  I&#8217;ve made the presentation and project files available for you to download.</p>
<p>Downloads:<a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/03/webdesignbootcamp_spr08.pdf" title="Web Design Bootcamp Presentation File (PDF, 1MB)"></a></p>
<ul>
<li><a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/03/webdesignbootcamp_spr08.pdf" title="Web Design Bootcamp Presentation File (PDF, 1MB)">Web Design Bootcamp Presentation</a> (PDF, 1MB)</li>
<li><a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/03/web-project.zip" title="Web Design Bootcamp Project Files (.zip 2.2MB)">Web Design Bootcamp Project Files</a> (.zip 2.2MB)</li>
</ul>
<p>Also, links to sites that were referred to in this class:</p>
<ul>
<li><a href="http://del.icio.us/chiliberto/webdesign+workshop?settagview=cloud&amp;setcount=50">http://del.icio.us/chiliberto/webdesign+workshop</a></li>
</ul>
<p>Best of luck to you in your future Web Design projects!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/03/11/web-design-bootcamp-post-workshop-files/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ATA&#8217;s Auction at Receiver Gallery</title>
		<link>http://www.gilbertguerrero.com/2008/01/24/atas-auction-at-receiver-gallery/</link>
		<comments>http://www.gilbertguerrero.com/2008/01/24/atas-auction-at-receiver-gallery/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 17:00:44 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Artists' Television Access]]></category>

		<category><![CDATA[drawing]]></category>

		<category><![CDATA[group show]]></category>

		<category><![CDATA[Receiver Gallery]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/wp/?p=1</guid>
		<description><![CDATA[A rather mysterious drawing that I made is in a group show at Receiver Gallery.  The show is only up for a few days, January 23-26, 2008.  It&#8217;s a benefit for Artists&#8217; Television Access.  Please come by and bid on my drawing! The auction closing party is on Saturday.
Title: Portrait (Overworked)
Ink on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/01/portrait-overworked.jpg" title="2008, Gilbert Guerrero, â€œPortrait (Overworked)â€, Ink on Arches Paper"><img src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/01/portrait-overworked.thumbnail.jpg" alt="2008, Gilbert Guerrero, â€œPortrait (Overworked)â€, Ink on Arches Paper" style="margin: 0pt 1em 1em 0pt; float: left" /></a>A rather mysterious drawing that I made is in a group show at Receiver Gallery.  The show is only up for a few days, January 23-26, 2008.  It&#8217;s a benefit for Artists&#8217; Television Access.  Please come by and bid on my drawing! The auction closing party is on Saturday.</p>
<p>Title: <em>Portrait (Overworked)</em><br />
Ink on Arches paper, 2008, Gilbert Guerrero.</p>
<p style="clear: both">Receiver Gallery:<br />
1415 Valencia St. @ 25th St <a href="http://receivergallery.com/">http://receivergallery.com/</a></p>
<p>Preview &amp; Silent Auction<br />
Wed-Friday, January 23-25<br />
10 am-6 pm, free</p>
<p><strong>Reception &amp; Auction Closing Party</strong><br />
Saturday, January 26, 2008<br />
7 - 10pm (auction concludes at 8:30 pm)<br />
$10 admission (may be applied towards a purchase); Admission is free for <a href="http://www.atasite.org/membership/">Members</a>.</p>
<p>More info: <a href="http://www.atasite.org/calendar/?x=2741">http://www.atasite.org/calendar/?x=2741</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/01/24/atas-auction-at-receiver-gallery/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Winner of the 2007 Eyebeam Eco-Vis Challenge</title>
		<link>http://www.gilbertguerrero.com/2008/01/08/winner-of-the-2007-eyebeam-eco-vis-challenge/</link>
		<comments>http://www.gilbertguerrero.com/2008/01/08/winner-of-the-2007-eyebeam-eco-vis-challenge/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 01:45:51 +0000</pubDate>
		<dc:creator>Gilbert</dc:creator>
		
		<category><![CDATA[Exhibitions]]></category>

		<category><![CDATA[Eco-Vis Challenge]]></category>

		<category><![CDATA[Eyebeam]]></category>

		<category><![CDATA[New York]]></category>

		<category><![CDATA[Processing]]></category>

		<category><![CDATA[Web Application]]></category>

		<guid isPermaLink="false">http://www.gilbertguerrero.com/work/2008/01/08/winner-of-the-2007-eyebeam-eco-vis-challenge/</guid>
		<description><![CDATA[I&#8217;ve been working with The Studio for Urban Projects and recently we submitted In Popular Terms as part of a proposal for Eyebeam&#8217;s Eco-Vis Challenge.Â  And we won first prize!Â  In Popular Terms will be rethought and redesigned for the challenge.Â  The exhibition opens in New York City on March 6th.


About the Eco-Vis ChallengeÂ 
Winners Announced

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working with The Studio for Urban Projects and recently we submitted In Popular Terms as part of a proposal for Eyebeam&#8217;s Eco-Vis Challenge.Â  And we won first prize!Â  In Popular Terms will be rethought and redesigned for the challenge.Â  The exhibition opens in New York City on March 6th.</p>
<p><img src="http://www.gilbertguerrero.com/wp/wp-content/uploads/2008/01/ecovis.gif" alt="Eco-Vis Challenge" /></p>
<ul>
<li><a href="http://eyebeam.org/learning/learning.php?page=ecovis">About the Eco-Vis ChallengeÂ </a></li>
<li><a href="http://www.eyebeam.org/reblog/archives/2008/01/eyebeam_announces_winners_of_eco.html">Winners Announced</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.gilbertguerrero.com/2008/01/08/winner-of-the-2007-eyebeam-eco-vis-challenge/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
