<?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>GhostRunner Productions</title>
	<atom:link href="http://grproductions.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://grproductions.wordpress.com</link>
	<description>Bring Awesome. Deliver Awesome. Something. Something.</description>
	<lastBuildDate>Fri, 30 Apr 2010 14:34:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='grproductions.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/e9d74a2c97774e28df2e8a5ad9d8b73f?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>GhostRunner Productions</title>
		<link>http://grproductions.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://grproductions.wordpress.com/osd.xml" title="GhostRunner Productions" />
	<atom:link rel='hub' href='http://grproductions.wordpress.com/?pushpress=hub'/>
		<item>
		<title>&#8220;Pop&#8221; Wave</title>
		<link>http://grproductions.wordpress.com/2010/04/30/pop-wave/</link>
		<comments>http://grproductions.wordpress.com/2010/04/30/pop-wave/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 14:34:24 +0000</pubDate>
		<dc:creator>EAbrams</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Evan&#039;s Blog]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[advise]]></category>
		<category><![CDATA[after]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[expression]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[motion]]></category>
		<category><![CDATA[pop]]></category>
		<category><![CDATA[scale]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://grproductions.wordpress.com/?p=415</guid>
		<description><![CDATA[I call this little number the pop wave. Looks pretty simple right? Just some things popping on across the frame in a controlled wave, and the off, and then on and ungulate before off again right? Wrong! This is some pretty cool stuff going on back there. I&#8217;ll break it down for you. There&#8217;s only [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=415&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I call this little number the pop wave. Looks pretty simple right? Just some things popping on across the frame in a controlled wave, and the off, and then on and ungulate before off again right? Wrong! This is some pretty cool stuff going on back there.</p>
<span style="text-align:center; display: block;"><a href="http://grproductions.wordpress.com/2010/04/30/pop-wave/"><img src="http://img.youtube.com/vi/W13YECdpAHI/2.jpg" alt="" /></a></span>
<p>I&#8217;ll break it down for you. There&#8217;s only one thing changing here, and it&#8217;s a linear wipe. That&#8217;s right only a handful of key frames for this awesomeness! The rest is expressions. Those little lines of joy/frustration that make magic out of mole hills.</p>
<p>So the linear wipe, which arguably has some severe alterations to it (feather, fractal noise and the like) is the control layer. What it controls is the individual objects on top which are in comps so they can be swapped out with ease. The expressions are on the rotation for a random seed, and the scale to get that sweet pop.</p>
<p>The random rotation is just a random see generator frozen over time and a random number expression. That&#8217;s all that needs be said about that. Each copy made will have a unique number associated with it so cmd+d away!</p>
<p>The second is arguably the most complex thing I&#8217;ve dissected. It&#8217;s called the sampleimage(). Basically it takes a point on a layer and spits out the R,G,B, and Alpha. You can link that up to variables, and I prefer to make lots of variables in this, to make the function relevant. here&#8217;s how it looks for me:</p>
<p>targetLayer = thisComp.layer(&#8220;Control&#8221;);<br />
samplePoint = transform.position;<br />
sampleRadius = [1,1];<br />
t =110* targetLayer.sampleImage(samplePoint, sampleRadius);<br />
[t[1], t[1]]</p>
<p>Break it down!</p>
<p>This is applied to the scale parameter of the individual objects. The first line is a variable, you can call it anything but it will be the layer you want the sampleImage to sample or look at, it&#8217;s a &#8220;what?&#8221; qyestion. The next is the samplePoint, again you can call it x or y, and it&#8217;s going to be a place holder for where on layer you want to look it&#8217;s displayed as [x,y]. The Next is the sampleRadius or how big the sample point should be. I think it&#8217;s a circle that eminates from a point up and down the firs character and left and right the second character, so mine was 1,1 but the size is really 2 by 2. Now we put it together calling up an arbitrary variable t. and making it all come into the sampleImage telling it to:</p>
<p>110 times &#8220;on this layer&#8221;.sampleImage(&#8220;here&#8221;, &#8220;this big&#8221;);</p>
<p>Why 110? because the values this thing will make are from 0 to 1, a percentage basically. The 110 makes a value of 1 or pure white (R=1, B=1, G=1, A=1). The value is actually [1,1,1,1] and you can get something from it however you want really but I wanted to make the t 110 when it&#8217;s all the way on and 0 when it&#8217;s all the way off.</p>
<p>The final line is putting it all to work in the scale parameter that is displayed as [#, #]. In this case it&#8217;s the first part, [0] of the four part output. t[0] is the Red value. So the variable reads ["how much red", "how much red"]</p>
<p>That&#8217;s that, the layer now references what&#8217;s at the same spot on the control layer and changes it&#8217;s scale from 0 to 110 depending on the colour value. Then that layer animates, which is easy to control and preview before you get hundreds of objects doing the &#8220;pop&#8221; wave.</p>
<p>Also if you just copy paste my code you won&#8217;t be learning so be sure you write it out and understand it best you can to make the most of it later on. Ususally when it would break during my coding it was because I was not giving it the right kind of variable, class 2 versus scalar for example as it can get confusing. If you have any questions, comments, or jeers let me know.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grproductions.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grproductions.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grproductions.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grproductions.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grproductions.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grproductions.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grproductions.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grproductions.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grproductions.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grproductions.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grproductions.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grproductions.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grproductions.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grproductions.wordpress.com/415/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=415&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grproductions.wordpress.com/2010/04/30/pop-wave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7df41d9d691b5546859e0fd7690addd5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">EAbrams</media:title>
		</media:content>
	</item>
		<item>
		<title>Particles or Character Animation</title>
		<link>http://grproductions.wordpress.com/2010/04/25/particles-or-character-animation/</link>
		<comments>http://grproductions.wordpress.com/2010/04/25/particles-or-character-animation/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 13:16:04 +0000</pubDate>
		<dc:creator>EAbrams</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Evan&#039;s Blog]]></category>
		<category><![CDATA[after]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[bear]]></category>
		<category><![CDATA[bream]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[expression]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[ink]]></category>
		<category><![CDATA[laser]]></category>
		<category><![CDATA[molar]]></category>
		<category><![CDATA[particles]]></category>
		<category><![CDATA[sea]]></category>
		<category><![CDATA[splat]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[vector]]></category>
		<category><![CDATA[wiggle]]></category>

		<guid isPermaLink="false">http://grproductions.wordpress.com/?p=409</guid>
		<description><![CDATA[So I was at it again, another two 10sec outputs of some effects work. The first: an ink spray using expressions, some particles, a little of that fake 3d text and some images of ink splats. The think here is to ramp up the inherited velocity to really throw the ink from a single source [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=409&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I was at it again, another two 10sec outputs of some effects work.</p>
<p>The first: an ink spray using expressions, some particles, a little of that fake 3d text and some images of ink splats. The think here is to ramp up the inherited velocity to really throw the ink from a single source when it get going faster by linking the speed to other properties as a controller. It looks kind of like that symbiot suit from Spiderman. I mean the cartoon not the mistake of comic to film adaptations. That was a jewel in the Fox Saturday morning cartoon crown.</p>
<span style="text-align:center; display: block;"><a href="http://grproductions.wordpress.com/2010/04/25/particles-or-character-animation/"><img src="http://img.youtube.com/vi/40sI_A2KJPE/2.jpg" alt="" /></a></span>
<p>Second: I was torn between which I wanted to focus on for the next &#8220;do x of y&#8221; grinding projects. To that end I made this second video with character animation. If you recall, we made a pretty strange and punchline-less video of a Molar Bear. I might as well embed that here so you know what I mean.</p>
<span style="text-align:center; display: block;"><a href="http://grproductions.wordpress.com/2010/04/25/particles-or-character-animation/"><img src="http://img.youtube.com/vi/djo2bPTBHpo/2.jpg" alt="" /></a></span>
<p>Now this goes under a heading that could either be &#8220;Mispronounced Words That Are Still Real Words in Picture Form&#8221; or &#8220;Rejected Pokemon Names&#8221;. However I envision a time when such poorly thought out and non idiomatic phrases like &#8220;Made out like bandits&#8221; are also give visual form. For those who don&#8217;t know, the phrase is supposed to be &#8220;made off like bandits&#8221; when people get away with something big and are gleeful about it. But I say the other one wherein two thieves make a big score and then score big&#8230; with each other&#8230; with tongue and hair action. To that end fire up the Laser Bream!</p>
<span style="text-align:center; display: block;"><a href="http://grproductions.wordpress.com/2010/04/25/particles-or-character-animation/"><img src="http://img.youtube.com/vi/_wMi4XShpw8/2.jpg" alt="" /></a></span>
<p>This is about 12 illustrator layers that all come to make the deadliest  catch of all. A little key frames, some expressions (mostly time and  wiggles) I think the wiggle my be the best expression ever invented. You  pair that up with a slide control for both the magnitude and the  frequency and you are in business. Both projects used that same  technique somewhere can you tell where in each?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grproductions.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grproductions.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grproductions.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grproductions.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grproductions.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grproductions.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grproductions.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grproductions.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grproductions.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grproductions.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grproductions.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grproductions.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grproductions.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grproductions.wordpress.com/409/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=409&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grproductions.wordpress.com/2010/04/25/particles-or-character-animation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7df41d9d691b5546859e0fd7690addd5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">EAbrams</media:title>
		</media:content>
	</item>
		<item>
		<title>More 3d Projections</title>
		<link>http://grproductions.wordpress.com/2010/04/19/more-3d-projections/</link>
		<comments>http://grproductions.wordpress.com/2010/04/19/more-3d-projections/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 22:51:27 +0000</pubDate>
		<dc:creator>EAbrams</dc:creator>
				<category><![CDATA[Evan&#039;s Blog]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[2d]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[after]]></category>
		<category><![CDATA[animate]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[iamge]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[projectiong]]></category>
		<category><![CDATA[protfolio]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://grproductions.wordpress.com/?p=402</guid>
		<description><![CDATA[So I thought I would just do 3d projection until I tired of it, then consider it added to my tool kit. I&#8217;m taking on my after effects training like grinding in WoW. So to become a better after effects guy I&#8217;m going to give myself quests like &#8220;create X of Y&#8221; and bring them [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=402&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I thought I would just do 3d projection until I tired of it, then consider it added to my tool kit. I&#8217;m taking on my after effects training like grinding in WoW. So to become a better after effects guy I&#8217;m going to give myself quests like &#8220;create X of Y&#8221; and bring them to the blog. To that end I&#8217;ve created a few more 3d projections to get a handle on the technique and uploaded them to youtube.</p>
<p>The first I wanted to make a transition that would illustrate that I was making it into 3d. So I took the grid I was using to eyeball the placement and anaimated it on to a duplicate set of surfaces. Then a little transparency strobe, some linear wipes, and a little green tint I think give it a little matrix like feel. Like a computer is building the scene, which it is, only not at all that way. I love how so many movies show computers doing things that computers don&#8217;t do. Like coding in a 3d program (I&#8217;m looking at you swordfish). And though it is possible to code in almost every damn thing these days, it&#8217;s not always the best. Also CSI can eat it for their computer lies.</p>
<span style="text-align:center; display: block;"><a href="http://grproductions.wordpress.com/2010/04/19/more-3d-projections/"><img src="http://img.youtube.com/vi/5pHWwuxqzAc/2.jpg" alt="" /></a></span>
<p>Next up I thought i would map some text to a 3d surface and try another way of scamming some depth from these shots. So for the text I just copy/pasted the orientation and position properties of a surface to a text layer and pushed the text out a few px. Then moved them around and rotated to fit like they could have been painted. In the future I&#8217;ll likely have something animated since it&#8217;s as easy as repeating the same process with a nested 2d comp. Now for the doors they are recessed into the building and to get that little recess i would have had to make two walls and a roof for each like a little mini hallway, or done some trickery with a little script. By referencing the layer above I set a few copies of a masked surface to offset by 5 on the z and then just hit command D and made a few till it fit the depth I wanted. You can you that to make some quick 3-d text with depth too if you can&#8217;t afford a 3d app or CS5.</p>
<span style="text-align:center; display: block;"><a href="http://grproductions.wordpress.com/2010/04/19/more-3d-projections/"><img src="http://img.youtube.com/vi/0N2o1tbAMdI/2.jpg" alt="" /></a></span>
<p>Lastly I was noticing something intersting when I had textured planes and a small appature on my camera. By jacking up the blur I found it looked like shooting a miniature with the depth of field being so tight. So I thought I would apply that. I checked out some stock images on Stock Exchange (<a href="http://www.sxc.hu/">http://www.sxc.hu/</a>) and broke it down using the regular technique. Then I lined up some text and did a little move from title to title and a little particle action to boot. Everyone likes particles, especially dusty ones. I don&#8217;t think theyturned out like I would have hoped but I really havn&#8217;t taxed myself to learn more about the cc particle world yet and I likely should. Particles I find look the best when you layer many systems together and blend them, but that takes rendering power that don&#8217;thave when I&#8217;m already cranking out an extrapolated scene and asking the camera to look cooler.</p>
<span style="text-align:center; display: block;"><a href="http://grproductions.wordpress.com/2010/04/19/more-3d-projections/"><img src="http://img.youtube.com/vi/-BxTK3oyAvA/2.jpg" alt="" /></a></span>
<p>So that rounds out my 3d projection phase. I think that should be enough to get everyone damn bored with making photos into 3d scenes. I&#8217;ve also included the photos below for your reference so you know where they came from if that&#8217;s at all interesting to anyone besides other after effects nerds. Also if you would like to have a go at duplicating my stuff let me know and I&#8217;ll see if I can guide you along in making this work for you.</p>

<a href='http://grproductions.wordpress.com/2010/04/19/more-3d-projections/1257613_54567676/' title='Warehouse - original'><img data-attachment-id='403' data-orig-size='2800,1763' data-liked='0'width="150" height="94" src="http://grproductions.files.wordpress.com/2010/04/1257613_54567676.jpg?w=150&#038;h=94" class="attachment-thumbnail" alt="Warehouse - original" title="Warehouse - original" /></a>
<a href='http://grproductions.wordpress.com/2010/04/19/more-3d-projections/b2020l20storage203-96125456_large/' title='Storage-original'><img data-attachment-id='404' data-orig-size='1280,950' data-liked='0'width="150" height="111" src="http://grproductions.files.wordpress.com/2010/04/b2020l20storage203-96125456_large.jpg?w=150&#038;h=111" class="attachment-thumbnail" alt="Storage-original" title="Storage-original" /></a>
<a href='http://grproductions.wordpress.com/2010/04/19/more-3d-projections/elevator-original/' title='elevator-original'><img data-attachment-id='405' data-orig-size='1280,960' data-liked='0'width="150" height="112" src="http://grproductions.files.wordpress.com/2010/04/elevator-original.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="elevator-original" title="elevator-original" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grproductions.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grproductions.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grproductions.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grproductions.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grproductions.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grproductions.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grproductions.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grproductions.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grproductions.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grproductions.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grproductions.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grproductions.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grproductions.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grproductions.wordpress.com/402/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=402&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grproductions.wordpress.com/2010/04/19/more-3d-projections/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7df41d9d691b5546859e0fd7690addd5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">EAbrams</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/04/1257613_54567676.jpg?w=150" medium="image">
			<media:title type="html">Warehouse - original</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/04/b2020l20storage203-96125456_large.jpg?w=150" medium="image">
			<media:title type="html">Storage-original</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/04/elevator-original.jpg?w=150" medium="image">
			<media:title type="html">elevator-original</media:title>
		</media:content>
	</item>
		<item>
		<title>More Dicking About</title>
		<link>http://grproductions.wordpress.com/2010/04/09/more-dicking-about/</link>
		<comments>http://grproductions.wordpress.com/2010/04/09/more-dicking-about/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 22:57:31 +0000</pubDate>
		<dc:creator>EAbrams</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Evan&#039;s Blog]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[fx]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[particles]]></category>
		<category><![CDATA[production]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://grproductions.wordpress.com/?p=399</guid>
		<description><![CDATA[Well I had more free time in my hands and thought I would hit up some particle tutorials. I&#8217;m not sure how long I&#8217;ll keep doing tutorials though. I should just spend a week screwing about with one project or one theme and call it a self guided lesson of something. To that end I&#8217;ll [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=399&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well I had more free time in my hands and thought I would hit up some particle tutorials. I&#8217;m not sure how long I&#8217;ll keep doing tutorials though. I should just spend a week screwing about with one project or one theme and call it a self guided lesson of something. To that end I&#8217;ll be seeing what I can do by concentrating on the particle generation available to me and see what I can make of it.</p>
<p>Here&#8217;s last night&#8217;s work:</p>
<span style="text-align:center; display: block;"><a href="http://grproductions.wordpress.com/2010/04/09/more-dicking-about/"><img src="http://img.youtube.com/vi/YvIyy9WDPzY/2.jpg" alt="" /></a></span>
<p>Soon I should start thinking about making a GR intro movie so people can get a little video resume of the company. I think that would combine some text elements and 3d space pretty well. Throw in some stills of the crew and what they do, should look pretty sharp if I have enough good techniques down before I start it up.</p>
<p>My next project should be some drawing for our animation. We&#8217;ve got the audio already to go pretty much, so it&#8217;s just a matter of getting down to it and drawing some old school character designs for cheap animation.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grproductions.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grproductions.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grproductions.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grproductions.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grproductions.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grproductions.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grproductions.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grproductions.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grproductions.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grproductions.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grproductions.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grproductions.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grproductions.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grproductions.wordpress.com/399/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=399&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grproductions.wordpress.com/2010/04/09/more-dicking-about/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7df41d9d691b5546859e0fd7690addd5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">EAbrams</media:title>
		</media:content>
	</item>
		<item>
		<title>GRMedia Logo</title>
		<link>http://grproductions.wordpress.com/2010/04/05/grmedia-logo/</link>
		<comments>http://grproductions.wordpress.com/2010/04/05/grmedia-logo/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 15:39:30 +0000</pubDate>
		<dc:creator>EAbrams</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Evan&#039;s Blog]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://grproductions.wordpress.com/?p=390</guid>
		<description><![CDATA[So Tim and I have been going back and forth on some logo ideas. It started out something like this: But then I had one good one: And Tim called me up at my other job to exclaim how he thought it looked like an Elephant, and wanted more elephantine qualities about it. I think [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=390&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So Tim and I have been going back and forth on some logo ideas. It started out something like this:</p>
<div id="attachment_393" class="wp-caption aligncenter" style="width: 460px"><a href="http://grproductions.files.wordpress.com/2010/04/grp_logo2-01.png"><img class="size-full wp-image-393" title="GRP_logo2-01" src="http://grproductions.files.wordpress.com/2010/04/grp_logo2-01.png?w=450&#038;h=582" alt="" width="450" height="582" /></a><p class="wp-caption-text">Many terrible Proofs</p></div>
<p>But then I had one good one:</p>
<div id="attachment_394" class="wp-caption aligncenter" style="width: 460px"><a href="http://grproductions.files.wordpress.com/2010/04/grp_logo2-02.png"><img class="size-full wp-image-394" title="GRP_logo2-02" src="http://grproductions.files.wordpress.com/2010/04/grp_logo2-02.png?w=450&#038;h=158" alt="It's better than nothing!" width="450" height="158" /></a><p class="wp-caption-text">It&#39;s better than nothing!</p></div>
<p>And Tim called me up at my other job to exclaim how he thought it looked like an Elephant, and wanted more elephantine qualities about it. I think when I asked him why more elephant he countered with: &#8220;Why is Linux a Penguin?&#8221;</p>
<p>To that end new proofs were created:</p>
<div id="attachment_392" class="wp-caption aligncenter" style="width: 460px"><a href="http://grproductions.files.wordpress.com/2010/04/gr_logo_elephant.png"><img class="size-full wp-image-392" title="GR_logo_elephant" src="http://grproductions.files.wordpress.com/2010/04/gr_logo_elephant.png?w=450&#038;h=493" alt="" width="450" height="493" /></a><p class="wp-caption-text">Elephant proof!</p></div>
<p>I liked the bottom one but Tim did not and wanted the top one but with the MEDIA underneath and the P removed. At this point I balked for a while, became obsorbed in something else and now it&#8217;s the easter weekend and I can present to you the logo as I think Tim wanted it&#8230; also with some things I&#8217;ve always thought a logo needs. But don&#8217;t take my word for it.</p>
<div id="attachment_391" class="wp-caption aligncenter" style="width: 460px"><a href="http://grproductions.files.wordpress.com/2010/04/gr_logo_elephant-02.png"><img class="size-full wp-image-391" title="GR_logo_elephant-02" src="http://grproductions.files.wordpress.com/2010/04/gr_logo_elephant-02.png?w=450&#038;h=398" alt="" width="450" height="398" /></a><p class="wp-caption-text">I think this is what Tim wanted?</p></div>
<span style="text-align:center; display: block;"><a href="http://grproductions.wordpress.com/2010/04/05/grmedia-logo/"><img src="http://img.youtube.com/vi/qis9u1BfIrk/2.jpg" alt="" /></a></span>
<p>I know this is what I wanted.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grproductions.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grproductions.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grproductions.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grproductions.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grproductions.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grproductions.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grproductions.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grproductions.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grproductions.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grproductions.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grproductions.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grproductions.wordpress.com/390/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grproductions.wordpress.com/390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grproductions.wordpress.com/390/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=390&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grproductions.wordpress.com/2010/04/05/grmedia-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7df41d9d691b5546859e0fd7690addd5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">EAbrams</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/04/grp_logo2-01.png" medium="image">
			<media:title type="html">GRP_logo2-01</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/04/grp_logo2-02.png" medium="image">
			<media:title type="html">GRP_logo2-02</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/04/gr_logo_elephant.png" medium="image">
			<media:title type="html">GR_logo_elephant</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/04/gr_logo_elephant-02.png" medium="image">
			<media:title type="html">GR_logo_elephant-02</media:title>
		</media:content>
	</item>
		<item>
		<title>Making one thing into another thing</title>
		<link>http://grproductions.wordpress.com/2010/03/28/making-one-thing-into-another-thing/</link>
		<comments>http://grproductions.wordpress.com/2010/03/28/making-one-thing-into-another-thing/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 01:06:12 +0000</pubDate>
		<dc:creator>EAbrams</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Evan&#039;s Blog]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://grproductions.wordpress.com/?p=385</guid>
		<description><![CDATA[For my last trick you saw me make a photo of sexy James Bond into a sexy vector image of maybe James Bond. For my next trick, ladies and gentlemen, I&#8217;ll need the assistance of a still photo again. Is there one in the audience? And now I will wave my magic wand&#8230; And presto! [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=385&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For my last trick you saw me make a photo of sexy James Bond into a sexy vector image of maybe James Bond. For my next trick, ladies and gentlemen, I&#8217;ll need the assistance of a still photo again. Is there one in the audience?</p>
<p style="text-align:center;">
<div id="attachment_386" class="wp-caption aligncenter" style="width: 334px"><a href="http://grproductions.files.wordpress.com/2010/03/office-hallway.jpg"><img class="size-full wp-image-386  " title="office-hallway" src="http://grproductions.files.wordpress.com/2010/03/office-hallway.jpg?w=450" alt=""   /></a><p class="wp-caption-text">Thank you! Right this way my dear!</p></div>
<p>And now I will wave my magic wand&#8230;</p>
<span style="text-align:center; display: block;"><a href="http://grproductions.wordpress.com/2010/03/28/making-one-thing-into-another-thing/"><img src="http://img.youtube.com/vi/Uq6IOQIc2zI/2.jpg" alt="" /></a></span>
<p>And presto! It&#8217;s 3 dimensional.</p>
<p>One more tool in the Swiss Army knife that is the animation department of GhostRunner Productions.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grproductions.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grproductions.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grproductions.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grproductions.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grproductions.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grproductions.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grproductions.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grproductions.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grproductions.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grproductions.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grproductions.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grproductions.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grproductions.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grproductions.wordpress.com/385/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=385&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grproductions.wordpress.com/2010/03/28/making-one-thing-into-another-thing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7df41d9d691b5546859e0fd7690addd5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">EAbrams</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/03/office-hallway.jpg" medium="image">
			<media:title type="html">office-hallway</media:title>
		</media:content>
	</item>
		<item>
		<title>more things from Evan&#8217;s sketchbook</title>
		<link>http://grproductions.wordpress.com/2010/01/23/more-things-from-evans-sketchbook/</link>
		<comments>http://grproductions.wordpress.com/2010/01/23/more-things-from-evans-sketchbook/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 04:00:08 +0000</pubDate>
		<dc:creator>EAbrams</dc:creator>
				<category><![CDATA[Evan&#039;s Blog]]></category>
		<category><![CDATA[007]]></category>
		<category><![CDATA[12 ounce mouse]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[Archer]]></category>
		<category><![CDATA[ATHF]]></category>
		<category><![CDATA[bond]]></category>
		<category><![CDATA[connery]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[fx]]></category>
		<category><![CDATA[illustrater]]></category>
		<category><![CDATA[james]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[sean]]></category>
		<category><![CDATA[Sketch]]></category>
		<category><![CDATA[sketchbook]]></category>

		<guid isPermaLink="false">http://grproductions.wordpress.com/?p=376</guid>
		<description><![CDATA[Well I&#8217;ve been all about Archer on FX. New episodes Thursdays, or Fridays usually from the torrent sites. Their production blog mentions how they make their style for the show so I thought I would have a crack at a famous spy that we all know and love and want to be. I know I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=376&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well I&#8217;ve been all about Archer on FX. New episodes Thursdays, or Fridays usually from the torrent sites. Their production blog mentions how they make their style for the show so I thought I would have a crack at a famous spy that we all know and love and want to be. I know I do. Also Sean was a real looker back in the day and makes me more confident about my whole chest hair thing.</p>
<p style="text-align:center;">
<div id="attachment_377" class="wp-caption aligncenter" style="width: 414px"><a href="http://grproductions.files.wordpress.com/2010/01/bondarcherstyle.png"><img class="size-full wp-image-377 " title="Bond(archerstyle)" src="http://grproductions.files.wordpress.com/2010/01/bondarcherstyle.png?w=450" alt=""   /></a><p class="wp-caption-text">There&#39;s something I want to get off your chest. (it&#39;s your top)</p></div>
<p style="text-align:left;">The best part about this image is that it&#8217;s all blocked out and ready for animation already, so that&#8217;s cool too. Just needs some more phonemes. It was drawn from an original here:</p>
<div class="wp-caption aligncenter" style="width: 489px"><img class=" " title="Sean Connery - James Bond" src="http://www.atbar.com/wp-content/uploads/05_03_2008_170331_timfea_u1506289.jpg" alt="" width="479" height="637" /><p class="wp-caption-text">Damn I wish I was that dashing. Maybe if I roll around in Mrs. Dash.</p></div>
<p>Hopefully we&#8217;ll get some scripts I can animate, making assets like this is an easy work-flow, clean lines, and fast as long as I can get reference photos. Problem is I&#8217;m still terrible with backgrounds, I suppose that&#8217;s what&#8217;s up next, or I&#8217;ll use some photoshop cheapness and 12 ounce mouse that shit up.</p>
<p>If you don&#8217;t know about 12 Ounce Mouse you should. It has inspired my animation because it proves you don&#8217;t need to be able to draw, or animate, or write, or voice act to get on TV and entertain people. Actually any Adult Swim program makes me think I&#8217;m not making animations because I&#8217;m just lazy. These are good, quality programs made on shoestrings and skeleton crews and somehow they also got paid for what they did, so that&#8217;s cool too.</p>
<p>To that end I&#8217;m writing something now and it&#8217;s gone to get done in this type of style here. I&#8217;m getting a lot more comfortable going this route so I think it&#8217;s time to apply it to a script.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grproductions.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grproductions.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grproductions.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grproductions.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grproductions.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grproductions.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grproductions.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grproductions.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grproductions.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grproductions.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grproductions.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grproductions.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grproductions.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grproductions.wordpress.com/376/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=376&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grproductions.wordpress.com/2010/01/23/more-things-from-evans-sketchbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7df41d9d691b5546859e0fd7690addd5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">EAbrams</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/01/bondarcherstyle.png" medium="image">
			<media:title type="html">Bond(archerstyle)</media:title>
		</media:content>

		<media:content url="http://www.atbar.com/wp-content/uploads/05_03_2008_170331_timfea_u1506289.jpg" medium="image">
			<media:title type="html">Sean Connery - James Bond</media:title>
		</media:content>
	</item>
		<item>
		<title>Yet Another Reason Why Timothy Hates The Religious Right</title>
		<link>http://grproductions.wordpress.com/2010/01/19/yet-another-reason-why-timothy-hates-the-religious-right/</link>
		<comments>http://grproductions.wordpress.com/2010/01/19/yet-another-reason-why-timothy-hates-the-religious-right/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 20:10:27 +0000</pubDate>
		<dc:creator>Timothy D Riel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grproductions.wordpress.com/?p=371</guid>
		<description><![CDATA[Yet another reason why I hate the religious right: Solar Powered Bibles It&#8217;s like if, in order to help the victims, Sony sent 300 PSP&#8217;s with demo game discs to ease their suffering, since they must be incredibly bored what with all the blown-to-smithereens stuff. Food, water, shelter. That&#8217;s what these people need. Not portable preacher/pulpit kits.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=371&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yet another reason why I hate the religious right:</p>
<p><a href="http://www.news.com.au/breaking-news/earthquake-survivors-get-solar-powered-bibles/story-e6frfku0-1225821184929" target="_blank"><span style="font-weight:normal;">Solar Powered Bibles</span></a></p>
<p><span style="font-weight:normal;"><span style="font-weight:normal;">It&#8217;s like if, in order to help the victims, Sony sent 300 PSP&#8217;s with demo game discs to ease their suffering, since they must be incredibly bored what with all the blown-to-smithereens stuff.</span></span></p>
<p>Food, water, shelter. That&#8217;s what these people need. Not portable preacher/pulpit kits.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grproductions.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grproductions.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grproductions.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grproductions.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grproductions.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grproductions.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grproductions.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grproductions.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grproductions.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grproductions.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grproductions.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grproductions.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grproductions.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grproductions.wordpress.com/371/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=371&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grproductions.wordpress.com/2010/01/19/yet-another-reason-why-timothy-hates-the-religious-right/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f2c182eb560521214b41ba8c8d00a67?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timothygr</media:title>
		</media:content>
	</item>
		<item>
		<title>Tim&#8217;s Panda Bear / GR Tie-in shirt.</title>
		<link>http://grproductions.wordpress.com/2010/01/17/tims-panda-bear-gr-tie-in-shirt/</link>
		<comments>http://grproductions.wordpress.com/2010/01/17/tims-panda-bear-gr-tie-in-shirt/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 18:10:38 +0000</pubDate>
		<dc:creator>Timothy D Riel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grproductions.wordpress.com/?p=368</guid>
		<description><![CDATA[I love the Zazzle me thing that Evan discovered. I also love the scary panda graphic he designed. I also, also love GhostRunner. I have combined them.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=368&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I love the Zazzle me thing that Evan discovered. I also love the scary panda graphic he designed. I also, also love GhostRunner.</p>
<p>I have combined them.</p>
<p><a href="http://grproductions.files.wordpress.com/2010/01/designall.jpg"><img class="alignnone size-full wp-image-369" title="A!S Panda Shirt" src="http://grproductions.files.wordpress.com/2010/01/designall.jpg?w=450" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grproductions.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grproductions.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grproductions.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grproductions.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grproductions.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grproductions.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grproductions.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grproductions.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grproductions.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grproductions.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grproductions.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grproductions.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grproductions.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grproductions.wordpress.com/368/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=368&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grproductions.wordpress.com/2010/01/17/tims-panda-bear-gr-tie-in-shirt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f2c182eb560521214b41ba8c8d00a67?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timothygr</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/01/designall.jpg" medium="image">
			<media:title type="html">A!S Panda Shirt</media:title>
		</media:content>
	</item>
		<item>
		<title>Zazzle me this batman!</title>
		<link>http://grproductions.wordpress.com/2010/01/14/zazzle-me-this-batman/</link>
		<comments>http://grproductions.wordpress.com/2010/01/14/zazzle-me-this-batman/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 18:29:28 +0000</pubDate>
		<dc:creator>EAbrams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grproductions.wordpress.com/?p=359</guid>
		<description><![CDATA[So if Ghostrunner is ever to be legit we need matching shirts. Preferably gold shirts but any will do really. In my search for a suitable company to bring those about back before Christmas I came across this place called CafePress.com. They&#8217;re alright I suppose, but frustrated with their archaic menus I looked for alternatives. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=359&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So if Ghostrunner is ever to be legit we need matching shirts. Preferably gold shirts but any will do really. In my search for a suitable company to bring those about back before Christmas I came across this place called CafePress.com. They&#8217;re alright I suppose, but frustrated with their archaic menus I looked for alternatives. To that end I found Zazzle.ca. I much prefer Zazzle for their Canadian pricing and graphic placement widget. Now that I&#8217;m terribly bored I thought I would try my hand at making a shirt (just as a non GR affiliated practice so as not to tarnish our sterling almost virginal internet rep) so without much ado, <a href="http://www.zazzle.ca/panda_attack_tshirt-235982350216479799">here it is</a>.</p>
<div id="attachment_363" class="wp-caption aligncenter" style="width: 370px"><a href="http://grproductions.files.wordpress.com/2010/01/panda_attack.png"><img class="size-full wp-image-363 " title="Growling Panda" src="http://grproductions.files.wordpress.com/2010/01/panda_attack.png?w=450" alt=""   /></a><p class="wp-caption-text">I for one would enjoy having this happy creature on a shirt for day to day and maybe evening wear.</p></div>
<p>It&#8217;s a neat site but I don&#8217;t know if it can make anyone money. Seems a little cluttered for actual revenue generation. Also it&#8217;s the internet for goodness sake, if it&#8217;s not a pipe dream it&#8217;s not on the internet. But we will have to see how the things go. It takes more promotional work than I care to spam out there to generate any sales on such sites, but it beats shooting more zombies on the wii all afternoon because now I feel mildly adventurous and useful.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grproductions.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grproductions.wordpress.com/359/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grproductions.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grproductions.wordpress.com/359/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grproductions.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grproductions.wordpress.com/359/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grproductions.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grproductions.wordpress.com/359/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grproductions.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grproductions.wordpress.com/359/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grproductions.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grproductions.wordpress.com/359/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grproductions.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grproductions.wordpress.com/359/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grproductions.wordpress.com&amp;blog=9046036&amp;post=359&amp;subd=grproductions&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grproductions.wordpress.com/2010/01/14/zazzle-me-this-batman/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7df41d9d691b5546859e0fd7690addd5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">EAbrams</media:title>
		</media:content>

		<media:content url="http://grproductions.files.wordpress.com/2010/01/panda_attack.png" medium="image">
			<media:title type="html">Growling Panda</media:title>
		</media:content>
	</item>
	</channel>
</rss>
