<?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>Mark Hamilton.info</title>
	<atom:link href="http://www.markhamilton.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markhamilton.info</link>
	<description>Developer blog of Mark Hamilton</description>
	<lastBuildDate>Fri, 18 May 2012 18:38:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Cool Things Happening in Medicine Lately</title>
		<link>http://www.markhamilton.info/2011/09/cool-things-happening-in-medicine-lately/</link>
		<comments>http://www.markhamilton.info/2011/09/cool-things-happening-in-medicine-lately/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 13:15:25 +0000</pubDate>
		<dc:creator>Mark Hamilton</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[anticancer]]></category>
		<category><![CDATA[antiviral]]></category>
		<category><![CDATA[cancer]]></category>
		<category><![CDATA[draco]]></category>
		<category><![CDATA[MDMA]]></category>
		<category><![CDATA[mit]]></category>
		<category><![CDATA[Roundup]]></category>

		<guid isPermaLink="false">http://www.markhamilton.info/?p=298</guid>
		<description><![CDATA[I was beginning to wonder if I would ever see any major medical advances in my lifetime, due to the lack of any trend in this area lately. Designing Ecstacy (MDMA) to reduce the psychoactive effect and increase the cancer fighting potential: http://healthland.time.com/2011/08/23/could-a-form-of-ecstasy-fight-cancer/ MIT&#8217;s DRACO antiviral drug could prove to be a cure for HIV, [...]]]></description>
			<content:encoded><![CDATA[<p>I was beginning to wonder if I would ever see any major medical advances in my lifetime, due to the lack of any trend in this area lately.</p>
<ul>
<li>Designing Ecstacy (MDMA) to reduce the psychoactive effect and increase the cancer fighting potential:<br />
<a href="http://healthland.time.com/2011/08/23/could-a-form-of-ecstasy-fight-cancer/">http://healthland.time.com/2011/08/23/could-a-form-of-ecstasy-fight-cancer/</a></li>
<li>MIT&#8217;s DRACO antiviral drug could prove to be a cure for HIV, AIDS, and the common cold:<br />
<a href="http://web.mit.edu/newsoffice/2011/antiviral-0810.html">http://web.mit.edu/newsoffice/2011/antiviral-0810.html</a></li>
<li>More information on DRACO:<br />
<a href="http://en.wikipedia.org/wiki/DRACO_(antiviral)">http://en.wikipedia.org/wiki/DRACO_(antiviral)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.markhamilton.info/2011/09/cool-things-happening-in-medicine-lately/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Game Rendering Techniques in a Common Desktop Application</title>
		<link>http://www.markhamilton.info/2011/08/using-game-rendering-techniques-in-a-common-desktop-application/</link>
		<comments>http://www.markhamilton.info/2011/08/using-game-rendering-techniques-in-a-common-desktop-application/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 03:39:44 +0000</pubDate>
		<dc:creator>Mark Hamilton</dc:creator>
				<category><![CDATA[Producteev]]></category>

		<guid isPermaLink="false">http://www.markhamilton.info/?p=273</guid>
		<description><![CDATA[The Producteev Windows application uses some interesting techniques—some of the same ones employed by modern 3D video games—to render a lot of the visual elements. These elements were designed from scratch by our in-house designer and they&#8217;re a lot more resource-intensive than the bland native elements that the Windows API provides. In order to accommodate [...]]]></description>
			<content:encoded><![CDATA[<p>The Producteev Windows application uses some interesting techniques—some of the same ones employed by modern 3D video games—to render a lot of the visual elements. These elements were designed from scratch by our in-house designer and they&#8217;re a lot more resource-intensive than the bland native elements that the Windows API provides. In order to accommodate for the extra pressure they put on your computer, a lot of optimizing and tweaking was needed to get them to display smoothly.</p>
<p><span id="more-273"></span></p>
<h2>Composition</h2>
<div id="attachment_287" class="wp-caption alignright" style="width: 160px"><img class="size-thumbnail wp-image-287" title="Composition with Alpha blending" src="http://www.markhamilton.info/wp-content/uploads/2011/08/Composition-150x150.png" alt="" width="150" height="150" /><p class="wp-caption-text">Composition with Alpha blending</p></div>
<p>Composited images are several images laid on top of each other. Afterwards, special effects can be applied to alter the way the final image looks. This can be done by tweaking colors, drawing or distorting shapes, or blurring. It&#8217;s usually done with witchcraft, but I&#8217;m told some math may be involved as well. In order to blend colors for instance, a technique called alpha blending is used to find a weighted average between two colors you want to mix. This technique can be used to fade smoothly between two different images. In video games there&#8217;s too many examples of compositing to name, but you&#8217;ll likely see composited images as pieces on a heads-up display or as a decal on a wall.</p>
<p>How it&#8217;s used: This is used frequently in Producteev for Windows. You can consider the entire window a composition since there&#8217;s a lot of casual instances where multiple images will be overlaid. More specifically, I&#8217;ve used compositing to draw pieces of your task list in the background and then store these in memory (this is another technique called caching, since the application does the work ahead of time then stores it for later for quick access.) Subtle visual effects are then applied to give the application a smoother feel.</p>
<h2>Culling</h2>
<div id="attachment_288" class="wp-caption alignright" style="width: 160px"><img class="size-thumbnail wp-image-288" title="Culling" src="http://www.markhamilton.info/wp-content/uploads/2011/08/Culling-150x150.png" alt="" width="150" height="150" /><p class="wp-caption-text">Objects within the green viewport are drawn, the rest are discarded.</p></div>
<p>Culling is the concept of selecting only what needs to be shown on the screen (as opposed to recklessly drawing everything.) While it may seem obvious to only draw the parts that will be shown, it is the application&#8217;s job to take care of this. Sometimes rather complex algorithms need to be used to determine what will be drawn, but it&#8217;s well worth it in the long run. In 3D games this is a vital technique because at any given moment you&#8217;ll only be drawing a small portion of the entire game world.</p>
<p>How it&#8217;s used: This technique is used in the filter and task areas of the application. If you have 1,000 tasks in your list, rather than drawing all 1,000, it will calculate which ones actually fit in the window (depending on the size of the Producteev window and number of tasks, this can account for as little as 1% of the tasks.) Only drawing the tasks that are visible prevents overdrawing, a situation that will slow the application to a crawl as the program senselessly overworks itself.</p>
<h2>Partitioning and Indexing</h2>
<div id="attachment_283" class="wp-caption alignright" style="width: 243px"><a href="http://www.markhamilton.info/wp-content/uploads/2011/08/Partitioning.png"><img class="size-medium wp-image-283" title="Partitioning (Click for larger)" src="http://www.markhamilton.info/wp-content/uploads/2011/08/Partitioning-233x300.png" alt="" width="233" height="300" /></a><p class="wp-caption-text">(Some objects hidden) When you&#39;re working with thousands of objects, you can cut down on the number of decisions being made by organizing the data in a tree, and only going down paths where conditions are met. In this case, 9 calculations had to be made.</p></div>
<p>These terms describe a way to separate the data to make it easier for your computer to search through it. A simple analogy would be an old card catalog in a library. If you knew your book&#8217;s title started with the letter A, there&#8217;s no reason to search through B-Z in the catalog. Games work slightly differently, instead categorizing things spatially; that is, you can quickly determine if an object is in front of- or behind another one by logically looking at it&#8217;s index, rather than doing a bunch of mathematical calculations on every wall in the entire level.</p>
<p>How it&#8217;s used: In much the same way a card catalog works, it categorizes tasks, users, and other data by certain criteria. That way, when you want to search by the creator of the task, it takes an instant to look through a small set of tasks, rather than half a minute to look through all of them.</p>
<h2>Anti-aliasing</h2>
<p>This technique trades speed for visuals by making graphics look softer. Since your monitor is made out of a bunch of square dots called pixels, diagonal lines, circles, and round edges can appear to have sharp, jagged edges. In order to smooth these out, adjacent pixels work together to round off the harsh transition.</p>
<div id="attachment_284" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.markhamilton.info/wp-content/uploads/2011/08/Antialiasing.png"><img class="size-medium wp-image-284" title="Antialiasing (Click for larger)" src="http://www.markhamilton.info/wp-content/uploads/2011/08/Antialiasing-300x208.png" alt="" width="300" height="208" /></a><p class="wp-caption-text">Demonstration of how the use of antialiasing smooths jagged lines on a screen.</p></div>
<p>Other techniques are in the works to squeeze some more performance out of the application, but that&#8217;s another blog post for now. Peace.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhamilton.info/2011/08/using-game-rendering-techniques-in-a-common-desktop-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# Producteev API Library Update (v0.1.1)</title>
		<link>http://www.markhamilton.info/2011/07/c-sharp-producteev-api-library-update-v0-1-1/</link>
		<comments>http://www.markhamilton.info/2011/07/c-sharp-producteev-api-library-update-v0-1-1/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 20:08:24 +0000</pubDate>
		<dc:creator>Mark Hamilton</dc:creator>
				<category><![CDATA[Producteev]]></category>

		<guid isPermaLink="false">http://www.markhamilton.info/?p=257</guid>
		<description><![CDATA[I&#8217;ve updated the C# API library for accessing Producteev.com and made a dedicated page for getting updates on it. http://www.markhamilton.info/projects/pdtvapi/]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-258" title="Producteev Logo" src="http://www.markhamilton.info/wp-content/uploads/2011/07/Grey_logo.png" alt="" width="64" height="64" />I&#8217;ve updated the C# API library for accessing Producteev.com and made a dedicated page for getting updates on it.</p>
<p><a href="http://www.markhamilton.info/projects/pdtvapi/">http://www.markhamilton.info/projects/pdtvapi/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhamilton.info/2011/07/c-sharp-producteev-api-library-update-v0-1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Producteev API Library in C#.net</title>
		<link>http://www.markhamilton.info/2011/06/producteev-api-wrapper-in-c-net/</link>
		<comments>http://www.markhamilton.info/2011/06/producteev-api-wrapper-in-c-net/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 18:06:57 +0000</pubDate>
		<dc:creator>Mark Hamilton</dc:creator>
				<category><![CDATA[Producteev]]></category>

		<guid isPermaLink="false">http://www.markhamilton.info/?p=231</guid>
		<description><![CDATA[Released under MIT open source license. Feel free to use this in any of your projects free of charge. I will be regularly updating it. http://markhamilton.info/src/pdtvapi-0.1.zip &#160; Update: For the latest version and documentation, you can check out the dedicated PDTV Library Page]]></description>
			<content:encoded><![CDATA[<p>Released under MIT open source license. Feel free to use this in any of your projects free of charge. I will be regularly updating it.</p>
<p><a href="http://markhamilton.info/src/pdtvapi-0.1.zip">http://markhamilton.info/src/pdtvapi-0.1.zip</a></p>
<p>&nbsp;</p>
<p><strong>Update:</strong> For the latest version and documentation, you can check out the dedicated <a title="Producteev API Library" href="http://www.markhamilton.info/projects/pdtvapi/">PDTV Library Page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhamilton.info/2011/06/producteev-api-wrapper-in-c-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programming Is&#8230;</title>
		<link>http://www.markhamilton.info/2011/01/programming-is/</link>
		<comments>http://www.markhamilton.info/2011/01/programming-is/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 22:41:13 +0000</pubDate>
		<dc:creator>Mark Hamilton</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.markhamilton.info/?p=194</guid>
		<description><![CDATA[Programming is all about knowing when to boil the orange sponge donkey across the phillipines with an orangutang gorilla crossed with a ham sandwich to the fourth power of twelve across the nile with an awful headache from the previous night when all of alfred’s naughty jalapeno peppers frog-marched the nordic elves across the loom-lined [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Programming is all about knowing when to boil the orange sponge donkey across the phillipines with an orangutang gorilla crossed with a ham sandwich to the fourth power of twelve across the nile with an awful headache from the previous night when all of alfred’s naughty jalapeno peppers frog-marched the nordic elves across the loom-lined geronimo induced swamp donkey over and above the fortran fortified kilomanjaro fence past the meticulously crafted anti disgusting sponge cake scenario where all the hats doth quoteth the milk which is not unlike the super werewolf from the infinite realm of ninja-step. it’s hard to define, really.</p></blockquote>
<p><a href="http://www.joshmillard.com/2008/06/12/found-poetry/">http://www.joshmillard.com/2008/06/12/found-poetry/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhamilton.info/2011/01/programming-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Home Basic &#8211; Backgrounds</title>
		<link>http://www.markhamilton.info/2010/12/windows-7-home-basic-backgrounds/</link>
		<comments>http://www.markhamilton.info/2010/12/windows-7-home-basic-backgrounds/#comments</comments>
		<pubDate>Tue, 21 Dec 2010 06:25:05 +0000</pubDate>
		<dc:creator>Mark Hamilton</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.markhamilton.info/?p=169</guid>
		<description><![CDATA[Does Windows 7 Home Basic not have the ability to change backgrounds by default, or is this something that the OEM has done? I&#8217;m kinda&#8217; baffled to be honest with you. All traces of changing your background have been removed from context menus. Maybe this is just a super slimmed down version of the OS [...]]]></description>
			<content:encoded><![CDATA[<p>Does Windows 7 Home Basic not have the ability to change backgrounds by default, or is this something that the OEM has done?</p>
<p style="text-align: left;"><img class="size-medium wp-image-170 aligncenter" title="Control Panel - Appearance" src="http://www.markhamilton.info/wp-content/uploads/2010/12/cpanel-300x210.png" alt="" width="300" height="210" /></p>
<p style="text-align: left;">I&#8217;m kinda&#8217; baffled to be honest with you. All traces of changing your background have been removed from context menus. Maybe this is just a super slimmed down version of the OS just for Netbooks.</p>
<p style="text-align: left;">Edit: After placing my foot in my mouth, I realized that this is Windows 7 Starter, not home basic. And no, I can&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhamilton.info/2010/12/windows-7-home-basic-backgrounds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chilling at WordCamp MSP 2010</title>
		<link>http://www.markhamilton.info/2010/12/chilling-at-wordcamp-msp-2010/</link>
		<comments>http://www.markhamilton.info/2010/12/chilling-at-wordcamp-msp-2010/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 04:38:36 +0000</pubDate>
		<dc:creator>Mark Hamilton</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.markhamilton.info/?p=161</guid>
		<description><![CDATA[I liked meeting and talking with the other developers.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.markhamilton.info/wp-content/uploads/2010/12/IMAG0107.jpg"><img class="size-medium wp-image-162 aligncenter" title="Best Buy Headquarters" src="http://www.markhamilton.info/wp-content/uploads/2010/12/IMAG0107-300x200.jpg" alt="" width="300" height="200" /></a></p>
<p>I liked meeting and talking with the other developers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhamilton.info/2010/12/chilling-at-wordcamp-msp-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Long Island</title>
		<link>http://www.markhamilton.info/2010/11/long-island/</link>
		<comments>http://www.markhamilton.info/2010/11/long-island/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 07:59:23 +0000</pubDate>
		<dc:creator>Mark Hamilton</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.markhamilton.info/?p=132</guid>
		<description><![CDATA[It&#8217;s been a few years since I&#8217;ve been back home. I&#8217;m hoping I can get an excuse to go back again in the next few months. Here&#8217;s some pictures of me with friends and family. I love all of you!]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a few years since I&#8217;ve been back home. I&#8217;m hoping I can get an excuse to go back again in the next few months. Here&#8217;s some pictures of me with friends and family. I love all of you!</p>

<a href='http://www.markhamilton.info/2010/11/long-island/100_0744/' title='Me and Bosco'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0744-150x150.jpg" class="attachment-thumbnail" alt="Me and Bosco" title="Me and Bosco" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0747/' title='Trent hugging Grandma'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0747-150x150.jpg" class="attachment-thumbnail" alt="Trent hugging Grandma" title="Trent hugging Grandma" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0716/' title='Chillin&#039;'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0716-150x150.jpg" class="attachment-thumbnail" alt="Chillin&#039;" title="Chillin&#039;" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0740/' title='Bosco'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0740-150x150.jpg" class="attachment-thumbnail" alt="Bosco" title="Bosco" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0739/' title='Trent and Trains'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0739-150x150.jpg" class="attachment-thumbnail" alt="Trent and Trains" title="Trent and Trains" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0738/' title='Trent and Shalimar'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0738-150x150.jpg" class="attachment-thumbnail" alt="Trent and Shalimar" title="Trent and Shalimar" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0703/' title='&quot;Oh noetry!&quot;'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0703-150x150.jpg" class="attachment-thumbnail" alt="&quot;Oh noetry!&quot;" title="&quot;Oh noetry!&quot;" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0725/' title='Happy Trent'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0725-150x150.jpg" class="attachment-thumbnail" alt="Happy Trent" title="Happy Trent" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0682/' title='Dad and Lauren'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0682-150x150.jpg" class="attachment-thumbnail" alt="Dad and Lauren" title="Dad and Lauren" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0692/' title='Trent and Great Grandma'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0692-150x150.jpg" class="attachment-thumbnail" alt="Trent and Great Grandma" title="Trent and Great Grandma" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0752/' title='&quot;Nyeeer&quot;'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0752-150x150.jpg" class="attachment-thumbnail" alt="&quot;Nyeeer&quot;" title="&quot;Nyeeer&quot;" /></a>
<a href='http://www.markhamilton.info/2010/11/long-island/100_0680/' title='Trent and Lauren'><img width="150" height="150" src="http://www.markhamilton.info/wp-content/uploads/2010/11/100_0680-150x150.jpg" class="attachment-thumbnail" alt="Trent and Lauren" title="Trent and Lauren" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.markhamilton.info/2010/11/long-island/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A self-titled album you should check out</title>
		<link>http://www.markhamilton.info/2010/11/a-self-titled-album-you-should-check-out/</link>
		<comments>http://www.markhamilton.info/2010/11/a-self-titled-album-you-should-check-out/#comments</comments>
		<pubDate>Sat, 06 Nov 2010 02:43:19 +0000</pubDate>
		<dc:creator>Mark Hamilton</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.markhamilton.info/?p=120</guid>
		<description><![CDATA[I keep coming back to it. Mutemath &#8211; Mutemath]]></description>
			<content:encoded><![CDATA[<p>I keep coming back to it.</p>
<p style="text-align: center;"><img class="alignnone" title="Mutemath" src="https://images-na.ssl-images-amazon.com/images/I/51t2cw-BmrL._SL75_.jpg" alt="" width="75" height="66" /></p>
<p style="text-align: center;"><a href="http://www.amazon.com/gp/product/B00122BEWI?ie=UTF8&amp;tag=markhami-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=B00122BEWI">Mutemath &#8211; Mutemath</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhamilton.info/2010/11/a-self-titled-album-you-should-check-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You&#8217;re a designer when&#8230;</title>
		<link>http://www.markhamilton.info/2010/11/youre-a-designer-when/</link>
		<comments>http://www.markhamilton.info/2010/11/youre-a-designer-when/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 02:08:16 +0000</pubDate>
		<dc:creator>Mark Hamilton</dc:creator>
				<category><![CDATA[Web Clippings]]></category>

		<guid isPermaLink="false">http://www.markhamilton.info/?p=117</guid>
		<description><![CDATA[You know that if you ask for more copy it will be sent as a .jpeg; if you ask for images they will be sent as PowerPoint presentations; if you ask for a vector logo, it’ll come in the form of a .gif – all from their website. Courtesy of http://www.youreadesignerwhen.co.nr/]]></description>
			<content:encoded><![CDATA[<blockquote><p>You know that if you ask for more copy it will be sent as a .jpeg; if you ask for images they will be sent as PowerPoint presentations; if you ask for a vector logo, it’ll come in the form of a .gif – all from their website.</p></blockquote>
<p>Courtesy of <a href="http://www.youreadesignerwhen.co.nr/">http://www.youreadesignerwhen.co.nr/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markhamilton.info/2010/11/youre-a-designer-when/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

