<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Andrew Rohling&#039;s Blog</title>
	<atom:link href="http://andrewrohling.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewrohling.wordpress.com</link>
	<description>Web Design and Development, general tech stuff</description>
	<lastBuildDate>Tue, 22 Sep 2009 17:37:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='andrewrohling.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/7e6d147a57ad60951ccfc2acace23336?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Andrew Rohling&#039;s Blog</title>
		<link>http://andrewrohling.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://andrewrohling.wordpress.com/osd.xml" title="Andrew Rohling&#039;s Blog" />
	<atom:link rel='hub' href='http://andrewrohling.wordpress.com/?pushpress=hub'/>
		<item>
		<title>CSS Sprites and Photoshop SmartObjects!</title>
		<link>http://andrewrohling.wordpress.com/2009/09/15/sprites-and-photoshop-smartobjects/</link>
		<comments>http://andrewrohling.wordpress.com/2009/09/15/sprites-and-photoshop-smartobjects/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 19:49:20 +0000</pubDate>
		<dc:creator>andrewrohling</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://andrewrohling.wordpress.com/?p=34</guid>
		<description><![CDATA[The use of CSS sprites within a web page provide the developer with faster downloads and easier image generation and maintenance. Simply put rather than creating a flock of image slices for use throughout your web site, you create a fewer images that act like &#8216;sticker sheets&#8217;. The helps your site performance as it trades [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrohling.wordpress.com&amp;blog=6308449&amp;post=34&amp;subd=andrewrohling&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The use of CSS sprites within a web page provide the developer with faster downloads and easier image generation and maintenance. Simply put rather than creating a flock of image slices for use throughout your web site, you create a fewer images that act like &#8216;sticker sheets&#8217;. The helps your site performance as it trades many expensive requests and connections for small images with fewer connections for larger images. See the <a title="Firebug addon for the Firefox browser" href="http://getfirebug.com/">Firebug</a> extension <a title="YSlow - Firebug extension" href="http://developer.yahoo.com/yslow/">YSlow</a>.</p>
<p>In essence you map the areas within you page(s) that require images, compose the markup and CSS in such a was that you can look up your image regions in your master image(s) and set these regions as backgrounds. The syntax for referencing these is straight-forward and with tools like Firebug for Firefox tweaking the coordinates becomes trivial. An important fact to be remember is background images don&#8217;t print so keep any images that need to render at the printer out of your sprites and use the standard image tags in your markup.</p>
<div class="alignleft"><div id="attachment_42" class="wp-caption alignright" style="width: 175px"><img class="size-full wp-image-42" title="blog1" src="http://andrewrohling.files.wordpress.com/2009/09/blog1.png?w=450" alt="Vertical and horizontal images in a single sprite"   /><p class="wp-caption-text">Vertical and horizontal images in a single sprite</p></div>While your initial reaction may be to condense all images into a single sprite I&#8217;ve found that separating them out into logical groups helps in maintenance and allows your pages to scale much easier. In addition to the scalability bonuses there do exist some technical challenges that separation helps with.</div>
<p>At a minimum two sprites are required: a tall thin sprite that supports horizontal tiling and a sort long sprite that supports vertical tiling. I have also found that additional sprites can be helpful when supporting design elements and decisions such as the sliding-doors technique for buttons, icons for lists etc. As with anything there are trade offs with any approach you take. Creating multiple sprites can help with the maintenance of your site but will cause your pages to download another file which is one the issues we&#8217;re attempting to mitigate in the first place.</p>
<div id="attachment_54" class="wp-caption alignright" style="width: 139px"><img class="alignnone size-full wp-image-54" title="vert" src="http://andrewrohling.files.wordpress.com/2009/09/vert.png?w=450" alt="vert"   /><p class="wp-caption-text">Vertical sprite example showing support for vertical tiling/scaling</p></div>
<div id="attachment_55" class="wp-caption alignleft" style="width: 139px"><img class="alignnone size-full wp-image-55" title="horiz" src="http://andrewrohling.files.wordpress.com/2009/09/horiz.png?w=450" alt="horiz"   /><p class="wp-caption-text">Example of sprite supporting horizontal tiling/scalaing</p></div>
<div class="alignleft">
<div id="attachment_60" class="wp-caption alignright" style="width: 250px"><img class="alignnone size-full wp-image-60" title="layercopies" src="http://andrewrohling.files.wordpress.com/2009/09/layercopies.png?w=450" alt="layercopies"   /><p class="wp-caption-text">Sprite image using layers in Photoshop</p></div>
<p>Creating the above images in Photoshop is straight forward using layers and or layer groups. From this point a simple &#8216;Save for Web &amp; Devices&#8217; in Photoshop generates our sprite.</p>
<p>At this point I believe it&#8217;s clear that the usage of sprites not only reduces the amount of images created but also the overhead associated with the creation and evolution of your images. For the simplistic examples above each sprite represents 3 image slices that would normally need to be maintained, deployed, downloaded and inserted in the markup.</p></div>
<div class="alignleft">
<div id="attachment_61" class="wp-caption alignleft" style="width: 250px"><img class="alignnone size-full wp-image-61" title="smartobjects" src="http://andrewrohling.files.wordpress.com/2009/09/smartobjects.png?w=450" alt="smartobjects"   /><p class="wp-caption-text">SmartObjects in Photoshop</p></div>
<p>However Photoshop smart objects allow us to go one step further! In the layers panel above we see the characteristics of each layer merely copied twice. What happens if we choose to change the background color, layer affects (drop shadow, stroke etc) or shape? In our example each sprite only contains 3 layers so these changes shouldn&#8217;t be too painful. With a larger site this becomes tedious and time consuming.</p>
<p>With Photoshop SmartObjects we have a way to create linked clones thereby reducing our level of effort even further. By converting a layer to a SmartObject and then creating copies of that SmartObject we can make changes to a single instance of that collection and that change will be propagated across all associated or cloned SmartObjects.</p></div>
<div class="alignleft">While this technique does require some forethought and planning I believe its benefits speak for themselves in the long run.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrohling.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrohling.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrohling.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrohling.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrohling.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrohling.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrohling.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrohling.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrohling.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrohling.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrohling.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrohling.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrohling.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrohling.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrohling.wordpress.com&amp;blog=6308449&amp;post=34&amp;subd=andrewrohling&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrohling.wordpress.com/2009/09/15/sprites-and-photoshop-smartobjects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bd3aebdd1e99cfb2dd5d101b250374c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrohling</media:title>
		</media:content>

		<media:content url="http://andrewrohling.files.wordpress.com/2009/09/blog1.png" medium="image">
			<media:title type="html">blog1</media:title>
		</media:content>

		<media:content url="http://andrewrohling.files.wordpress.com/2009/09/vert.png" medium="image">
			<media:title type="html">vert</media:title>
		</media:content>

		<media:content url="http://andrewrohling.files.wordpress.com/2009/09/horiz.png" medium="image">
			<media:title type="html">horiz</media:title>
		</media:content>

		<media:content url="http://andrewrohling.files.wordpress.com/2009/09/layercopies.png" medium="image">
			<media:title type="html">layercopies</media:title>
		</media:content>

		<media:content url="http://andrewrohling.files.wordpress.com/2009/09/smartobjects.png" medium="image">
			<media:title type="html">smartobjects</media:title>
		</media:content>
	</item>
		<item>
		<title>RegularExpressions for working with JavaScript</title>
		<link>http://andrewrohling.wordpress.com/2009/02/16/regularexpressions-for-working-with-javascript/</link>
		<comments>http://andrewrohling.wordpress.com/2009/02/16/regularexpressions-for-working-with-javascript/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 15:15:10 +0000</pubDate>
		<dc:creator>andrewrohling</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Regular Expressions]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://andrewrohling.wordpress.com/?p=23</guid>
		<description><![CDATA[Wow. So I&#8217;ve been tasked to move 3 JavaScript function files into a single namespace and file. The combined files and functions came to: 2.5k lines of JavaScript, 210 functions and 15 variable declarations. So by taking a base regular expression that matches: - new lines starting with the word function followed by 1 or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrohling.wordpress.com&amp;blog=6308449&amp;post=23&amp;subd=andrewrohling&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wow. So I&#8217;ve been tasked to move 3 JavaScript function files into a single namespace and file. The combined files and functions came to: 2.5k lines of JavaScript, 210 functions and 15 variable declarations.</p>
<p>So by taking a base regular expression that matches:<br />
- new lines starting with the word function followed by 1 or more of a-z capitols and lowercase, hyphens and  underscores followed by zero or more spaces<br />
- <strong>^function [A-Za-z0-9-_]+[\w]*?</strong></p>
<p><strong><br />
</strong></p>
<p>Add handles with &#8216;<em>()</em>&#8216; so we can reference specific areas of our matches<br />
- <strong>^(</strong>function<strong>) (</strong>[A-Za-z0-9-_]<strong>)</strong>+[\w]*?<br />
<em>$1&#8211;^               $2&#8211;^</em></p>
<p>Create an expression that uses these references<br />
- <strong>UTILITIES.$2=$1</strong></p>
<p>And voila!</p>
<p>function checkParameters( p0, p1)</p>
<p>becomes</p>
<p>UTILITIES.checkParameters = function (p0, p1)</p>
<p>Nice!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrohling.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrohling.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrohling.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrohling.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrohling.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrohling.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrohling.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrohling.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrohling.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrohling.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrohling.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrohling.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrohling.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrohling.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrohling.wordpress.com&amp;blog=6308449&amp;post=23&amp;subd=andrewrohling&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrohling.wordpress.com/2009/02/16/regularexpressions-for-working-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bd3aebdd1e99cfb2dd5d101b250374c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrohling</media:title>
		</media:content>
	</item>
		<item>
		<title>It&#8217;s a bird, it&#8217;s a plane, it&#8217;s a PLAN!</title>
		<link>http://andrewrohling.wordpress.com/2009/02/05/its-a-bird-its-a-plane-its-a-plan/</link>
		<comments>http://andrewrohling.wordpress.com/2009/02/05/its-a-bird-its-a-plane-its-a-plan/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 15:13:44 +0000</pubDate>
		<dc:creator>andrewrohling</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://andrewrohling.wordpress.com/?p=8</guid>
		<description><![CDATA[So I&#8217;m getting the hang of Twitter (or beginning to see its value if you will). This blog is slowly gaining some momentum and will be moved from WordPress to my own domain shortly. My thought is with the use of Twitter and my blog I can start generating enough content to justify a web [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrohling.wordpress.com&amp;blog=6308449&amp;post=8&amp;subd=andrewrohling&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m getting the hang of <a href="http://twitter.com/">Twitter</a> (or beginning to see its value if you will). This blog is slowly gaining some momentum and will be moved from <a href="http://wordpress.com/">WordPress</a> to <a href="http://www.andrewsdomain.net/">my own domain</a> shortly. My thought is with the use of <a href="http://twitter.com/">Twitter</a> and my blog I can start generating enough content to justify a web site and thus have a canvas for some of the design ideas I have.</p>
<p>I also have a ton of pictures to post but that&#8217;s another can of worms.</p>
<p>I&#8217;m currently deciding how to handle source control for everything. I have <a href="http://subversion.tigris.org/">subversion</a> set up at home but would an external instance make more sense? I also need to look into the details of svn+ssh and see if its possible to access svn over ssh.</p>
<p>Exciting times.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrohling.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrohling.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrohling.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrohling.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrohling.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrohling.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrohling.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrohling.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrohling.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrohling.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrohling.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrohling.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrohling.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrohling.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrohling.wordpress.com&amp;blog=6308449&amp;post=8&amp;subd=andrewrohling&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrohling.wordpress.com/2009/02/05/its-a-bird-its-a-plane-its-a-plan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bd3aebdd1e99cfb2dd5d101b250374c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrohling</media:title>
		</media:content>
	</item>
		<item>
		<title>Here we go</title>
		<link>http://andrewrohling.wordpress.com/2009/01/29/here-we-go/</link>
		<comments>http://andrewrohling.wordpress.com/2009/01/29/here-we-go/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 14:26:41 +0000</pubDate>
		<dc:creator>andrewrohling</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://andrewrohling.wordpress.com/?p=5</guid>
		<description><![CDATA[Well after reading an article in the Washington Post&#8217;s print edition about linking a WordPress blog with Facebook and LinkedIn I decided to take the plunge. I&#8217;m still working out a strategy and direction for this thing but will most likely revolve around Web Development/Design and other sundry stuff. I&#8217;m still looking into Twitter and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrohling.wordpress.com&amp;blog=6308449&amp;post=5&amp;subd=andrewrohling&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well after reading an article in the <a href="http://www.washingtonpost.com/">Washington Post&#8217;s</a> print edition about linking a <a href="http://wordpress.com/">WordPress blog</a> with <a href="http://www.facebook.com/">Facebook</a> and <a href="http://www.linkedin.com/">LinkedIn</a> I decided to take the plunge. I&#8217;m still working out a strategy and direction for this thing but will most likely revolve around Web Development/Design and other sundry stuff.</p>
<p>I&#8217;m still looking into Twitter and figure it must have some great value that eludes me. This tool seems so popular and vital that I&#8217;m sure there must be some value for me in it. But then again everybody loved the Spice Girls too.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrohling.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrohling.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrohling.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrohling.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrohling.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrohling.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrohling.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrohling.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrohling.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrohling.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrohling.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrohling.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrohling.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrohling.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrohling.wordpress.com&amp;blog=6308449&amp;post=5&amp;subd=andrewrohling&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrohling.wordpress.com/2009/01/29/here-we-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bd3aebdd1e99cfb2dd5d101b250374c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrohling</media:title>
		</media:content>
	</item>
	</channel>
</rss>
