<?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>Craig Pfau</title>
	<atom:link href="http://craigpfau.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://craigpfau.com</link>
	<description></description>
	<lastBuildDate>Mon, 20 Feb 2012 06:11:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PhoneGap iOS UIWebView and Safari.app Links</title>
		<link>http://craigpfau.com/2012/02/phonegap-ios-uiwebview-and-safari-app-links/</link>
		<comments>http://craigpfau.com/2012/02/phonegap-ios-uiwebview-and-safari-app-links/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 05:06:11 +0000</pubDate>
		<dc:creator>Craig Pfau</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://craigpfau.com/?p=925</guid>
		<description><![CDATA[When creating a PhoneGap jQuery Mobile project you have two options for opening links: UIWebView This is PhoneGap&#8217;s in app browser The draw back for me was that there is no navigation in UIWebView. Thus no way to navigate back to the app The upside for me was [...]]]></description>
			<content:encoded><![CDATA[<p>When creating a PhoneGap jQuery Mobile project you have two options for opening links:</p>
<ul>
<li><strong>UIWebView </strong>This is PhoneGap&#8217;s in app browser
<ul>
<li>The draw back for me was that there is no navigation in UIWebView. Thus no way to navigate back to the app</li>
<li>The upside for me was that I could use iFrames (out of necessity not out of want) using UIWebView</li>
</ul>
</li>
<li><strong>Safari.app </strong>As you can guess, this is iOS&#8217;s default browser
<ul>
<li>Links open in Safari and load as expected</li>
</ul>
</li>
</ul>
<div>When I was creating my project I had a bunch of external links that I was happy sending off to Safari but I had a 3rd party iFrame for a chat feature that needed to function within the app.  To just enable UIWebView for the single URL I used this code [<em>projectFolder</em> &gt; Classes &gt; <em>AppName</em>Delegate.m]</div>
<div></div>
<div class="codecolorer-container javascript default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br /></div></td><td><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">-</span> <span style="color: #009900;">&#40;</span>BOOL<span style="color: #009900;">&#41;</span> webView<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>UIWebView<span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>theWebView shouldStartLoadWithRequest<span style="color: #339933;">:</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#40;</span>NSURLRequest<span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>request navigationType<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>UIWebViewNavigationType<span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; navigationType<br />
<span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; NSURL <span style="color: #339933;">*</span>url <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span>request URL<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<br />
&nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#91;</span>url absoluteString<span style="color: #009900;">&#93;</span> rangeOfString<span style="color: #339933;">:</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #339933;">@</span><span style="color: #3366CC;">&quot;URLToOpenInUIWebView.com&quot;</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">location</span> <span style="color: #339933;">!=</span> NSNotFound<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">return</span> YES<span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #009900;">&#91;</span>self.<span style="color: #660066;">viewController</span> webView<span style="color: #339933;">:</span>theWebView <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; shouldStartLoadWithRequest<span style="color: #339933;">:</span>request <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; navigationType<span style="color: #339933;">:</span>navigationType<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span></div></td></tr></tbody></table></div>
<p>To enable external domains in PhoneGap you have to whitelist the URLs as of PhoneGap 1.0.<br />
To do this go to <em>projectFolder</em> &gt; Supporting Files &gt; PhoneGap.plist<br />
You should have a list of Key/Type/Values.  First check to see if ExternalHosts is one of the keys.  If it isn&#8217;t then right click the list and choose Add Row.  You&#8217;ll want it to look like ExternalHosts/Array/count (this is auto generated)<br />
Now that you have ExternalHosts you will want to add URLs to this array to whitelist.<br />
You can use the wildcard symbol * in this list.  So *.domainName.com would allow all subdomains.  There is nothing stopping you from using * or *.* to allow ALL URLs to be whitelisted.  I leave that to you.</p>
<p>I was using Xcode 4.2.1, OSX Lion 10.7.3, PhoneGap 1.4.1 and jQuery Mobile 1.0.1</p>
]]></content:encoded>
			<wfw:commentRss>http://craigpfau.com/2012/02/phonegap-ios-uiwebview-and-safari-app-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zombie Lane Gifting URLs Exploit</title>
		<link>http://craigpfau.com/2011/06/zombie-lane-gifting-urls-exploit/</link>
		<comments>http://craigpfau.com/2011/06/zombie-lane-gifting-urls-exploit/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 00:29:52 +0000</pubDate>
		<dc:creator>Craig Pfau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://craigpfau.com/?p=906</guid>
		<description><![CDATA[Zombie Lane (Facebook game) uses URLs to send in game items called Gifts. Therefore the game normally locks out specific items until the player has reached a specific character level. For instance a user should be level 30 before being able to send +7 energy to another [...]]]></description>
			<content:encoded><![CDATA[<p>Zombie Lane (Facebook game) uses URLs to send in game items called Gifts.</p>
<p>Therefore the game normally locks out specific items until the player has reached a specific character level.<br />
For instance a user should be level 30 before being able to send +7 energy to another user.  Using the URLs below allows you to circumvent this.</p>
<p>As of version 1.1.8 of the game this is still a security hole that has not been patched.</p>
<p>Originally I was pretty psyched to create an application that would allow other ZL players to easily do this as well.  The problem comes in the form of time.  Already wasted 3 hours making a solution specific to me (a single webpage with 32 ZL players that when I click on their 32&#215;32 pixel FB photo an individual page loads prompting 7 pop up windows to send all 7 items to that specific user).  So now I click on 32 images and some super crude Javascript window.open pop ups do the work for me.  Of course I had to tell my browser to allow pop ups and each browser has limits on the number of pop ups it will allow (Chrome allowed me to load 25 before it blocked further, Firefox 4 blocked after 20 and Internet Explorer 8 allowed me to open all 192 pages while almost freezing my 8GB RAM, 6 core computer).  I couldn&#8217;t find where to alter these limits.</p>
<p>If anyone is interested in making an app that would take advantage of these links would have to consider these points:</p>
<ol>
<li><strong>Facebook vanity / username URLs won&#8217;t work</strong><br />
&amp;recipient=some.name.that.you.chose won&#8217;t work.  So you&#8217;ll have to convert vanity names to UIDs.</li>
<li><strong>Possible TOS issues</strong><br />
I skimmed through both Facebook Developer TOS and Zombie Lane TOS and didn&#8217;t see anything that would be an issue.  After all these are using URLs that are publicly available.</li>
<li><strong>Pop Ups</strong><br />
To open the URLs you will need to use pop ups.  No one likes pop ups.  Every browser has pop up blockers enabled and it will be a hassle to have people unblock them.</li>
<li><strong>Storing User Facebook Friends</strong><br />
If you make it web based you are going to have to keep track of who people want to send to, otherwise they will have to enter this information every time.  So now you have to handle the privacy issue.  You can encode the data, but the average user is still going to be suspicious of your intent.</li>
<li><strong>Webbased vs Standalone</strong><br />
So PHP, Javascript, FBML, Ruby.  Now you need hosting or you have to have people trust a EXE.  Fun times.</li>
<li><strong>Digital Chocolate changes exploit in next version and you wasted a huge amount of time</strong><br />
THIS.</li>
</ol>
<p>So what do I suggest.  Just use the URLs for yourself for now.</p>
<p><a href="http://apps.facebook.com/zombielane/SendGift?gid=Shotgun&amp;request_type=GiftRequest&amp;recipient=580606262">Shotgun</a><br />
<a href="http://apps.facebook.com/zombielane/SendGift?gid=EnergyCola&amp;request_type=GiftRequest&amp;recipient=580606262">+3 Energy</a><br />
<a href="http://apps.facebook.com/zombielane/SendGift?gid=EnergyCola2&amp;request_type=GiftRequest&amp;recipient=580606262">+5 Energy</a><br />
<a href="http://apps.facebook.com/zombielane/SendGift?gid=EnergyCola3&amp;request_type=GiftRequest&amp;recipient=580606262">+7 Energy</a><br />
<a href="http://apps.facebook.com/zombielane/SendGift?gid=Blueprint&amp;request_type=GiftRequest&amp;recipient=580606262">Blueprint</a><br />
<a href="http://apps.facebook.com/zombielane/SendGift?gid=Grenade&amp;request_type=GiftRequest&amp;recipient=580606262">Grenade</a><br />
<a href="http://apps.facebook.com/zombielane/SendGift?gid=LandMine&amp;request_type=GiftRequest&amp;recipient=580606262">Land Mine</a></p>
<div id="_mcePaste"><strong>Shotgun</strong></div>
<div>http://apps.facebook.com/zombielane/SendGift?gid=Shotgun&amp;request_type=GiftRequest&amp;recipient=580606262</div>
<div><strong>Energy +3</strong></div>
<div>http://apps.facebook.com/zombielane/SendGift?gid=EnergyCola&amp;request_type=GiftRequest&amp;recipient=580606262</div>
<div><strong>Energy +5</strong></div>
<div>http://apps.facebook.com/zombielane/SendGift?gid=EnergyCola2&amp;request_type=GiftRequest&amp;recipient=580606262</div>
<div><strong>Energy +7</strong></div>
<div>http://apps.facebook.com/zombielane/SendGift?gid=EnergyCola3&amp;request_type=GiftRequest&amp;recipient=580606262</div>
<div><strong>Blueprint</strong></div>
<div>http://apps.facebook.com/zombielane/SendGift?gid=Blueprint&amp;request_type=GiftRequest&amp;recipient=580606262</div>
<div><strong>Grenade</strong></div>
<div>http://apps.facebook.com/zombielane/SendGift?gid=Grenade&amp;request_type=GiftRequest&amp;recipient=580606262</div>
<div><strong>Land Mine</strong></div>
<div>http://apps.facebook.com/zombielane/SendGift?gid=LandMine&amp;request_type=GiftRequest&amp;recipient=580606262</div>
<div>
How the links look.  Replace the &amp;recipient= at the end to the UID of your friend.</div>
<p>To find this I made this really quick.  Enter a vanity name and it will show you the user ID number.<br />
<script type="text/javascript">// <![CDATA[
    function convert() { 	  document.form.output.value = "graph.facebook.com/"+document.form.username.value +"?fields=id"; 	  window.location.href=('https://'+document.form.output.value); 	  }
// ]]&gt;</script></p>
<blockquote><form id="form" method="post">http://www.facebook.com/</p>
<input id="username" name="username" type="text" value="craig.g.pfau" />
<input id="Button" onclick="convert()" name="Button" type="button" value="Convert" />
<input name="output" type="hidden" /></form>
</blockquote>
<p>All that is left to do is to create a list of links that you can click on.  You&#8217;ll have to look into HTML or Javascript</p>
<p><strong>HTML Example</strong></p>
<p style="padding-left: 30px;">&lt;a href=&#8217;http://apps.facebook.com/zombielane/SendGift?gid=Shotgun&amp;request_type=GiftRequest&amp;recipient=580606262&#8242;&gt;Shotgun&lt;/a&gt;</p>
<p><strong>Javascript Pop Up Example</strong></p>
<p style="padding-left: 30px;">&lt;script language=&#8221;javascript&#8221;&gt;window.open(&#8216;http://apps.facebook.com/zombielane/SendGift?gid=Shotgun&amp;request_type=GiftRequest&amp;recipient=580606262&#8242;,&#8221;,&#8217;width=350,height=200&#8242;)&lt;/script&gt;</p>
<p style="padding-left: 30px;">
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigpfau.com/2011/06/zombie-lane-gifting-urls-exploit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tax Return Spending</title>
		<link>http://craigpfau.com/2011/05/tax-return-spending/</link>
		<comments>http://craigpfau.com/2011/05/tax-return-spending/#comments</comments>
		<pubDate>Mon, 23 May 2011 16:54:35 +0000</pubDate>
		<dc:creator>Craig Pfau</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://craigpfau.com/?p=897</guid>
		<description><![CDATA[Upgraded my computer a few weeks ago.  I had a Dual Core 2.2GHz, 4GB RAM with a Nvidia 8600 GTS graphics card.  My new computer is a AMD Phenom II X6 (6 cores), 8GB of RAM with a ATI Radeon HD 6670 1GB DDR5. I was also [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://craigpfau.com/wp-content/uploads/2011/05/desk.jpg" rel="lightbox[897]"><img class="size-full wp-image-898 alignnone" title="desk" src="http://craigpfau.com/wp-content/uploads/2011/05/desk.jpg" alt="" width="617" height="463" /></a></p>
<p>Upgraded my computer a few weeks ago.  I had a Dual Core 2.2GHz, 4GB RAM with a Nvidia 8600 GTS graphics card.  My new computer is a AMD Phenom II X6 (6 cores), 8GB of RAM with a ATI Radeon HD 6670 1GB DDR5.</p>
<p>I was also using an old wooden writing desk that my parents had bought when I was a teenager.  With my tax return I bought a new BENQ 20 inch LED LCD monitor (man they are thin) and a desk from Ikea.</p>
<p>All and all, I love my new work area.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigpfau.com/2011/05/tax-return-spending/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ordered Some Threadless Shirts</title>
		<link>http://craigpfau.com/2011/05/ordered-some-threadless-shirts/</link>
		<comments>http://craigpfau.com/2011/05/ordered-some-threadless-shirts/#comments</comments>
		<pubDate>Sat, 21 May 2011 03:55:34 +0000</pubDate>
		<dc:creator>Craig Pfau</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://craigpfau.com/?p=889</guid>
		<description><![CDATA[Today I purchased a few shirts from Threadless for $12 a piece.  I wouldn&#8217;t have even known about the sale if it wasn&#8217;t for a Facebook ad.  I find this interesting because it is the first time that an online ad has resulted in me purchasing something. [...]]]></description>
			<content:encoded><![CDATA[
<a rel='wp-prettyPhoto[gallery]' href='http://craigpfau.com/2011/05/ordered-some-threadless-shirts/cupid/' title='Cupid'><img width="150" height="150" src="http://craigpfau.com/wp-content/uploads/2011/05/Cupid-150x150.jpg" class="attachment-thumbnail" alt="Cupid" title="Cupid" /></a>
<a rel='wp-prettyPhoto[gallery]' href='http://craigpfau.com/2011/05/ordered-some-threadless-shirts/kitties/' title='Kitties'><img width="150" height="150" src="http://craigpfau.com/wp-content/uploads/2011/05/Kitties-150x150.jpg" class="attachment-thumbnail" alt="Kitties" title="Kitties" /></a>
<a rel='wp-prettyPhoto[gallery]' href='http://craigpfau.com/2011/05/ordered-some-threadless-shirts/narwhale/' title='Narwhale'><img width="150" height="150" src="http://craigpfau.com/wp-content/uploads/2011/05/Narwhale-150x150.jpg" class="attachment-thumbnail" alt="Narwhale" title="Narwhale" /></a>
<a rel='wp-prettyPhoto[gallery]' href='http://craigpfau.com/2011/05/ordered-some-threadless-shirts/squinjas/' title='Squinjas'><img width="150" height="150" src="http://craigpfau.com/wp-content/uploads/2011/05/Squinjas-150x150.jpg" class="attachment-thumbnail" alt="Squinjas" title="Squinjas" /></a>
<a rel='wp-prettyPhoto[gallery]' href='http://craigpfau.com/2011/05/ordered-some-threadless-shirts/stonejungle/' title='Stonejungle'><img width="150" height="150" src="http://craigpfau.com/wp-content/uploads/2011/05/Stonejungle-150x150.jpg" class="attachment-thumbnail" alt="Stonejungle" title="Stonejungle" /></a>
<a rel='wp-prettyPhoto[gallery]' href='http://craigpfau.com/2011/05/ordered-some-threadless-shirts/stopsmoking/' title='Stopsmoking'><img width="150" height="150" src="http://craigpfau.com/wp-content/uploads/2011/05/Stopsmoking-150x150.jpg" class="attachment-thumbnail" alt="Stopsmoking" title="Stopsmoking" /></a>

<p>Today I purchased a few shirts from Threadless for $12 a piece.  I wouldn&#8217;t have even known about the sale if it wasn&#8217;t for a Facebook ad.  I find this interesting because it is the first time that an online ad has resulted in me purchasing something.  I&#8217;m sure it won&#8217;t be the last, but I felt like sharing that online marketing does work, or at least it works on me apparently.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigpfau.com/2011/05/ordered-some-threadless-shirts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pixel Adventure</title>
		<link>http://craigpfau.com/2011/05/pixel-adventure/</link>
		<comments>http://craigpfau.com/2011/05/pixel-adventure/#comments</comments>
		<pubDate>Tue, 17 May 2011 06:25:35 +0000</pubDate>
		<dc:creator>Craig Pfau</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://craigpfau.com/?p=865</guid>
		<description><![CDATA[Up late playing with hair modifications on the base sprites. Its been awhile since I updated this blog.  Moved to St Albert, been working at a grocery store for the last six months while trying to find a job in anything computer related (programmer, technical support, QA, [...]]]></description>
			<content:encoded><![CDATA[<p>Up late playing with hair modifications on the base sprites.</p>
<p><a href="http://craigpfau.com/wp-content/uploads/2011/05/j2me_game_sprites_2011_extended.png" rel="lightbox[865]"><img class="size-large wp-image-866 alignnone" title="j2me_game_sprites_2011_extended" src="http://craigpfau.com/wp-content/uploads/2011/05/j2me_game_sprites_2011_extended-1024x564.png" alt="" width="595" height="327" /></a></p>
<p>Its been awhile since I updated this blog.  Moved to St Albert, been working at a grocery store for the last six months while trying to find a job in anything computer related (programmer, technical support, QA, etc).  Finished one of three courses remaining in my BSc.  The image above is from a project that will be used in the second last course.  That brings me to Pixel Adventure (I really suck at the naming &#8211; see Ninja Adventure).  It is a Java 2 ME game that will then be ported to Flash, where then it will be further extended into either a more robust J2ME game or more likely a better Flash game.  For those that are counting this course requires the creation of three &#8220;games&#8221;.  They are not full games mind you, they only require 2 levels, so its more about the mechanics/systems.</p>
<p>The first two games will involve basic platforming.  Walk, jump, collect things and have a timer count down.  Very simplistic.  The third game is to be extended but this means making more systems available.  Perhaps character customization (as you can see above I&#8217;ve been preparing for this, however haven&#8217;t decided if it will be used), highscores, inventory system, and moving platforms.  Stuff like that.</p>
<p>I personally like having assets to begin with so that I feel like I&#8217;m bringing these characters to life and creating a world for them to navigate.  I simply can&#8217;t bring myself to use placeholder sprites (ex. a black box).  I realize that is a bad way to go about things, but perhaps its just my lack of experience in game programming that makes me think this way.</p>
<p>Either way, I hope to update progress on Pixel Adventure throughout its development.</p>
<p><a href="http://craigpfau.com/wp-content/uploads/2011/05/new_pixel_peoples11.png" rel="lightbox[865]"><img class="alignnone size-full wp-image-916" title="new_pixel_peoples1" src="http://craigpfau.com/wp-content/uploads/2011/05/new_pixel_peoples11.png" alt="" width="564" height="234" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://craigpfau.com/2011/05/pixel-adventure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daddio&#8217;s</title>
		<link>http://craigpfau.com/2010/08/daddios/</link>
		<comments>http://craigpfau.com/2010/08/daddios/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 20:32:47 +0000</pubDate>
		<dc:creator>Craig Pfau</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://craigpfau.com/?p=822</guid>
		<description><![CDATA[This is a before and after shot of the Daddio&#8217;s Pizzeria face lift. Daddio&#8217;s Pizzeria is a local pizza shop located on 68th avenue in Grande Prairie, Alberta. You can check out their site at daddios.ca]]></description>
			<content:encoded><![CDATA[<p>This is a before and after shot of the Daddio&#8217;s Pizzeria face lift.</p>
<p><a href="http://craigpfau.com/wp-content/uploads/2010/08/daddios_before.jpg" rel="lightbox[822]"><img class="size-medium wp-image-823 alignnone" title="daddios_before" src="http://craigpfau.com/wp-content/uploads/2010/08/daddios_before-300x200.jpg" alt="" width="270" height="180" /></a><a href="http://craigpfau.com/wp-content/uploads/2010/08/daddios_new.jpg" rel="lightbox[822]"><img class="alignnone size-medium wp-image-824 alignnone" title="daddios_new" src="http://craigpfau.com/wp-content/uploads/2010/08/daddios_new-300x200.jpg" alt="" width="270" height="180" /></a></p>
<p>Daddio&#8217;s Pizzeria is a local pizza shop located on 68th avenue in Grande Prairie, Alberta.<br />
You can check out their site at <a href="http://www.daddios.ca">daddios.ca</a></p>
]]></content:encoded>
			<wfw:commentRss>http://craigpfau.com/2010/08/daddios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logo Design: Another Two Logo Entries</title>
		<link>http://craigpfau.com/2010/06/another-two-logo-entries/</link>
		<comments>http://craigpfau.com/2010/06/another-two-logo-entries/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 21:15:27 +0000</pubDate>
		<dc:creator>Craig Pfau</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://craigpfau.com/?p=816</guid>
		<description><![CDATA[These are my two newest entries.  The second one looks reminiscent of Team Canada in my opinion.  This is the last day for logo entries and I&#8217;m losing for the first day since the competition started.  Hoping that these new entries get a few votes.]]></description>
			<content:encoded><![CDATA[<p><a href="http://craigpfau.com/wp-content/uploads/2010/06/submission-2.png" rel="lightbox[816]"><img class="alignnone size-medium wp-image-817" title="submission-2" src="http://craigpfau.com/wp-content/uploads/2010/06/submission-2-295x300.png" alt="" width="266" height="270" /></a><a href="http://craigpfau.com/wp-content/uploads/2010/06/submission-3.png" rel="lightbox[816]"><img class="alignnone size-medium wp-image-818" title="submission-3" src="http://craigpfau.com/wp-content/uploads/2010/06/submission-3-295x300.png" alt="" width="236" height="240" /></a></p>
<p>These are my two newest entries.  The second one looks reminiscent of Team Canada in my opinion.  This is the last day for logo entries and I&#8217;m losing for the first day since the competition started.  Hoping that these new entries get a few votes.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigpfau.com/2010/06/another-two-logo-entries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logo Design Entry: GP Roller Derby Association</title>
		<link>http://craigpfau.com/2010/06/logo-design-entry-gp-roller-derby-association/</link>
		<comments>http://craigpfau.com/2010/06/logo-design-entry-gp-roller-derby-association/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 19:33:17 +0000</pubDate>
		<dc:creator>Craig Pfau</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://craigpfau.com/?p=810</guid>
		<description><![CDATA[This was my entry for a logo for the Grande Prairie Roller Derby Association.  A new club in Grande Prairie that was looking for a logo on their Facebook page.  Logo was submitted free of charge and the contest was determined by number of &#8220;likes&#8221;. Originally wanted [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="gprollerderby1" rel="lightbox[pics810]" href="http://craigpfau.com/wp-content/uploads/2010/06/gprollerderby1.jpg"><img class="attachment wp-att-812   aligncenter" src="http://craigpfau.com/wp-content/uploads/2010/06/gprollerderby1.thumbnail.jpg" alt="gprollerderby1" width="400" height="240" /></a></p>
<p>This was my entry for a logo for the Grande Prairie Roller Derby Association.  A new club in Grande Prairie that was looking for a logo on their Facebook page.  Logo was submitted free of charge and the contest was determined by number of &#8220;likes&#8221;.</p>
<p>Originally wanted to have a silhouette look to the logo, however roller derby skaters are never in a pose that works with a silhouette.  There is always a leg behind something or arms/hands that pierce the body figure.</p>
<p>Here is a side by side with another look I was playing with:</p>
<p><a title="temp" rel="lightbox[pics810]" href="http://craigpfau.com/wp-content/uploads/2010/06/temp.jpg"><img class="attachment wp-att-813 alignleft" src="http://craigpfau.com/wp-content/uploads/2010/06/temp.thumbnail.jpg" alt="temp" width="240" height="235" /></a>The final product is a combination of these two looks.  Basically at this point I was trying to completely strip any identification of the roller derby woman used.  I think that in the end it is indistinguishable, however if you had a photo of the woman side by side, it would be easy to know who she is.</p>
<p>Overall I think it was a fun little Photoshop experiment.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigpfau.com/2010/06/logo-design-entry-gp-roller-derby-association/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SIM: Microsoft Deep Zoom</title>
		<link>http://craigpfau.com/2010/06/sim-microsoft-deep-zoom/</link>
		<comments>http://craigpfau.com/2010/06/sim-microsoft-deep-zoom/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 17:09:37 +0000</pubDate>
		<dc:creator>Craig Pfau</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[sim]]></category>

		<guid isPermaLink="false">http://craigpfau.com/?p=807</guid>
		<description><![CDATA[Deep Zoom has made my project a little easier. It takes care of all of the panning and zooming.  It also dynamically loads the image so that things load quickly. Check out the results here]]></description>
			<content:encoded><![CDATA[<p><a title="Microsoft_deep_zoom" rel="lightbox[pics807]" href="http://craigpfau.com/wp-content/uploads/2010/06/Microsoft_deep_zoom.jpg"><img class="attachment wp-att-808 alignleft" src="http://craigpfau.com/wp-content/uploads/2010/06/Microsoft_deep_zoom.jpg" alt="Microsoft_deep_zoom" width="150" height="116" /></a>Deep Zoom has made my project a little easier.</p>
<p>It takes care of all of the panning and zooming.  It also dynamically loads the image so that things load quickly.</p>
<p>Check out the results <a href="http://craigpfau.com/projectgp/gpzoomtest/Test.html" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://craigpfau.com/2010/06/sim-microsoft-deep-zoom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SIM: WDP Quality Scaling</title>
		<link>http://craigpfau.com/2010/06/sim-wdp-quality-scaling/</link>
		<comments>http://craigpfau.com/2010/06/sim-wdp-quality-scaling/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 19:40:22 +0000</pubDate>
		<dc:creator>Craig Pfau</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[interactive map]]></category>
		<category><![CDATA[sim]]></category>
		<category><![CDATA[wdp]]></category>

		<guid isPermaLink="false">http://craigpfau.com/?p=804</guid>
		<description><![CDATA[With the release of Microsoft Expression Studio 4 and some push to start up the project again, I&#8217;ve been working on file size constraints and looking at flattening files instead of working with strictly XAML for rendering.  Today I graphed some information that I thought was interesting. [...]]]></description>
			<content:encoded><![CDATA[<p>With the release of Microsoft Expression Studio 4 and some push to start up the project again, I&#8217;ve been working on file size constraints and looking at flattening files instead of working with strictly XAML for rendering.  Today I graphed some information that I thought was interesting.</p>
<p><strong>The following graph is for my project only, so take the information with a grain of salt!</strong></p>
<p><a title="wdpgraph" rel="lightbox[pics804]" href="http://craigpfau.com/wp-content/uploads/2010/06/wdpgraph.png"><img class="attachment wp-att-805 alignleft" src="http://craigpfau.com/wp-content/uploads/2010/06/wdpgraph.png" alt="wdpgraph" width="481" height="289" /></a> That sure scales up immensely after 80%.  Guess for my uses 80% will have to do.</p>
<p>I love graphs <img src='http://craigpfau.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://craigpfau.com/2010/06/sim-wdp-quality-scaling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: craigpfau.com @ 2012-02-22 14:02:36 -->
