<?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>Jes.Gs v2.0 &#187; Resources</title>
	<atom:link href="http://www.jes.gs/tag/resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jes.gs</link>
	<description>The Portfolio and Blog of Minneapolis Web Designer Jessica C. Green</description>
	<lastBuildDate>Sat, 21 Jan 2012 19:56:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Ice Cream Icons!</title>
		<link>http://www.jes.gs/resources/ice-cream-icons/</link>
		<comments>http://www.jes.gs/resources/ice-cream-icons/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 07:34:06 +0000</pubDate>
		<dc:creator>Jess G.</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://dumpster-fairy.com/?p=288</guid>
		<description><![CDATA[Ice cream icons made in Illustrator CS4. Free for non-commercial use.]]></description>
			<content:encoded><![CDATA[<p><a class="thickbox" title="Ice Cream Icons!" href="http://dumpster-fairy.com/wp-content/uploads/2009/07/ice-cream-graphics-01-1024x724.jpg"><img class="alignnone size-medium wp-image-286" title="ice-cream-graphics-01" src="http://dumpster-fairy.com/wp-content/uploads/2009/07/ice-cream-graphics-01-300x212.jpg" alt="ice-cream-graphics-01" width="300" height="212" /></a></p>
<p>These were released on dA about a week ago. I figured I&#8217;d post them here for download as well. The set contains 53 alpha-transparency PNGs, the largest of which is 335x341pixels. I&#8217;ve chosen to license this set under a Creative Commons license: <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Attribution-Noncommercial-Share Alike</a>.</p>
<p>Download: <a href="http://www.jes.gs/wp-content/uploads/2009/07/ice-cream-graphics.zip">Ice Cream icons (zip)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jes.gs/resources/ice-cream-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP and XML: LightGallery</title>
		<link>http://www.jes.gs/general/php-and-xml-lightgallery/</link>
		<comments>http://www.jes.gs/general/php-and-xml-lightgallery/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 03:47:00 +0000</pubDate>
		<dc:creator>Jess G.</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://dumpster-fairy.com/?p=247</guid>
		<description><![CDATA[Light-weight Image Gallery script powered by PHP and XML.]]></description>
			<content:encoded><![CDATA[<p>LightGallery is a new light-weight gallery script that I wrote as an answer to &#8220;weightier&#8221; scripts like Gallery and Coppermine. LightGallery does not require MySQL to run; however it <em>does</em> require <strong>PHP 5</strong> and the <strong>GD library</strong>.<span id="more-247"></span> A short example of LightGallery in action can be seen <a href="http://dumpster-fairy.com/gallery/">here</a>. You can also download the script <a href="http://www.jes.gs/wp-content/uploads/2009/03/gallery.zip">here</a>.</p>
<p>How to use LightGallery? First off, start by inserting this code at the top of any page you&#8217;d like to display your gallery:</p>
<p>Followed by:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$path</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'/path/to/my/images/folder'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$thmb_size</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'thumb-height thumb-width'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$gallery</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Gallery<span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #339933;">,</span> <span style="color: #000088;">$thmb_size</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$gallery</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Output</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><code>$path</code> is obviously the full path pointing to the directory where your images reside. Replace <strong>thumb-height</strong> and <strong>thumb-width</strong> with the desired height and width of your thumbnail. The beauty of LightGallery is that it is one PHP Class that can be used as many times as need be. If you need to create a new gallery, all you have to do is create a new directory, upload your images to that directory and create a new Gallery object with <code>$path</code> set to that path.</p>
<p><strong>Some limitations include</strong>:<br />
The gallery directory has to be one level below the root directory where <code>gallery.php</code> resides. Another limitation is that LightGallery uses jQuery and ThickBox and ThickBox is hard-coded into LightGallery, though I plan to change that at a later date.</p>
<p><strong>Tips</strong>:<br />
If you want your thumbnails to display tool-tips and have captions in ThickBox, edit the <code>album.xml</code> file that is created in the directory where your images reside. Specifically edit the  and  tags so that they contain your desired title and description. Another planned edition to LightGallery is a single-user backend to allow easy editing of titles, descriptions and possibly deletion of images.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jes.gs/general/php-and-xml-lightgallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manga+Press Coming!</title>
		<link>http://www.jes.gs/general/mangapress-coming/</link>
		<comments>http://www.jes.gs/general/mangapress-coming/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 20:46:38 +0000</pubDate>
		<dc:creator>Jess G.</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[mangapress]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dumpster-fairy.com/?p=160</guid>
		<description><![CDATA[New Wordpress plugin for managing comics.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a comic manager plugin since the beginning of this year. After many starts and stops and road-blocks, I&#8217;m happy to announce that in time for 2009, I will be releasing my comic manager plugin for WordPress called <strong>Manga+Press</strong>!</p>
<p>Stay tuned for details!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jes.gs/general/mangapress-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snowflake Brushes</title>
		<link>http://www.jes.gs/resources/snowflake-brushes-for-photoshop-cs2-and-higher/</link>
		<comments>http://www.jes.gs/resources/snowflake-brushes-for-photoshop-cs2-and-higher/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 02:59:44 +0000</pubDate>
		<dc:creator>Jess G.</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[brushes]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[snowflakes]]></category>
		<category><![CDATA[textures]]></category>

		<guid isPermaLink="false">http://dumpster-fairy.com/?p=149</guid>
		<description><![CDATA[Snowflake brushes for Photoshop CS2 and higher. Just in time for the holidays!]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-152" title="Snowflake Brushes for Photoshop" src="http://dumpster-fairy.com/wp-content/uploads/2008/12/snowflakebrushes02-300x288.jpg" alt="" width="300" height="288" /><br />
These brushes were originally created in Photoshop CS2. I&#8217;m not sure how well or even if they&#8217;ll work with earlier versions, but they should work in CS3 and CS4.</p>
<p>Download: <a href="http://www.jes.gs/wp-content/uploads/2008/12/snowflakes.zip">snowflakes.zip</a></p>
<p>Enjoy, and Happy Holidays!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jes.gs/resources/snowflake-brushes-for-photoshop-cs2-and-higher/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Gel Styles</title>
		<link>http://www.jes.gs/resources/web-20-gel-styles/</link>
		<comments>http://www.jes.gs/resources/web-20-gel-styles/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 04:55:18 +0000</pubDate>
		<dc:creator>Jess G.</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[asl]]></category>
		<category><![CDATA[gel]]></category>
		<category><![CDATA[glassy]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[styles]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://dumpster-fairy.com/?p=87</guid>
		<description><![CDATA[A set of Web 2.0 Gel styles for Photoshop CS and higher.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-88" title="gel_thmb" src="http://www.jes.gs/wp-content/uploads/2008/11/gel_thmb.jpg" alt="" width="180" height="135" /></p>
<p>Here is a set of Gel Styles for Photoshop (*.asl format) available for download at Deviant Art [<a href="http://ardathksheyna.deviantart.com/art/Gel-Styles-and-Outlines-23252763">link</a>]. Just click on the link that says &#8216;<strong>download</strong>&#8216; on the left-hand side of the preview screen. I originally created these styles in Photoshop CS, and they&#8217;ve worked all the way up to CS3. I recently bought Photoshop CS4 but I haven&#8217;t had the chance to test them out.</p>
<p><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/"><img style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/us/88x31.png" alt="Creative Commons License" /></a><br />
<span>Web 2.0 Gel Styles for Photoshop</span> by <a rel="cc:attributionURL" href="http://ardathksheyna.deviantart.com/art/Gel-Styles-and-Outlines-23252763">Jessica C. Green</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.<br />
Permissions beyond the scope of this license may be available at <a rel="cc:morePermissions" href="http://ardathksheyna.deviantart.com/art/Gel-Styles-and-Outlines-23252763">http://ardathksheyna.deviantart.com/art/Gel-Styles-and-Outlines-23252763</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jes.gs/resources/web-20-gel-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

