<?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>benpackard.org &#187; Ben</title>
	<atom:link href="https://www.benpackard.org/blog/?author=1&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>https://www.benpackard.org/blog</link>
	<description></description>
	<lastBuildDate>Mon, 30 Mar 2015 12:23:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.2</generator>
	<item>
		<title>New York and Philly Pizza</title>
		<link>https://www.benpackard.org/blog/?p=144</link>
		<comments>https://www.benpackard.org/blog/?p=144#comments</comments>
		<pubDate>Mon, 30 Mar 2015 12:22:39 +0000</pubDate>
		<dc:creator><![CDATA[Ben]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.benpackard.org/blog/?p=144</guid>
		<description><![CDATA[New York and Philadelphia versions of Is Pizza Half Price are now up. A couple of nice write-ups.]]></description>
				<content:encoded><![CDATA[<p><a href="http://ispizzahalfprice.com/nyc">New York</a> and <a href="http://ispizzahalfprice.com/philly">Philadelphia</a> versions of Is Pizza Half Price are now up. A couple of <a href="http://www.broadstreethockey.com/2015/3/24/8284735/is-pizza-half-price-website-is-a-necessary-public-service">nice</a> <a href="https://buzzonbroad.com/buzz-on-broad/website-pizza-half-price-philly/">write-ups</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.benpackard.org/blog/?feed=rss2&#038;p=144</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Zooming, Blurring Profile Photo by Tweetbot</title>
		<link>https://www.benpackard.org/blog/?p=125</link>
		<comments>https://www.benpackard.org/blog/?p=125#comments</comments>
		<pubDate>Wed, 19 Nov 2014 15:15:25 +0000</pubDate>
		<dc:creator><![CDATA[Ben]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.benpackard.org/blog/?p=125</guid>
		<description><![CDATA[This was originally published to CocoaCovers.com in March 2014. That website is now deceased, so I am re-posting the content (this single post) to benpackard.org. Tweetbot is a Twitter client by Tapbots. It is full of thoughtful, playful interactions. One of my favorite details is the zooming header image effect when you scroll a user&#8217;s profile: [&#8230;]]]></description>
				<content:encoded><![CDATA[<pre>This was originally published to CocoaCovers.com in March 2014. That website is now deceased, so I am re-posting the content (this single post) to benpackard.org.</pre>
<p><a href="http://tapbots.com/software/tweetbot/">Tweetbot</a> is a Twitter client by Tapbots. It is full of thoughtful, playful interactions. One of my favorite details is the zooming header image effect when you scroll a user&#8217;s profile:</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/original.gif"><img class="aligncenter wp-image-134 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/original.gif" alt="original" width="320" height="569" /></a></p>
<p>It&#8217;s a neat way to handle the extra canvas exposed by the elasticity of the scrolling behavior, which can otherwise look a little awkward when the uppermost content is a photo or some other visually busy element. This is especially true when a toolbar is present &#8211; Safari is a good example of the default behavior:</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/safari-scroll.gif"><img class="aligncenter wp-image-135 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/safari-scroll.gif" alt="safari-scroll" width="320" height="236" /></a></p>
<p>There&#8217;s nothing egregious about this interaction; it&#8217;s just a little clumsy-looking. A big gray box, smack in the middle of the more artfully crafted toolbar and content. Tweetbot turns this same scenario into an opportunity to delight the user.</p>
<h2 id="markdown-header-whats-hapenning">What&#8217;s Hapenning</h2>
<p>There are three silmultaneous animations occurring as the user scrolls. First, and most obviously, the image expands to fill the available space. Note that the image maintains its aspect ratio, though &#8211; it never stretches. Also, if the background image happens to be taller than the content, the hidden edges of the photo are fully revealed before any scaling takes place.</p>
<p>We also have the gradual fade-out of the user&#8217;s profile information, and the un-blurring of the image. If you look carefully, the image also brightens as it is revealed &#8211; presumably to ensure enough contrast with the white text in its resting state.</p>
<h2 id="markdown-header-my-cover">My Cover</h2>
<p>Let&#8217;s start by creating two main views inside a scrollview. The &#8216;profile view&#8217; will hold the circular photo and all of the user info. I&#8217;ve given it a gray background for now so its easy to identify. Below the profile view, the &#8216;content view&#8217; is just a screenshot from the app since we&#8217;re not going to be implementing that part.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/two-subviews.gif"><img class="aligncenter wp-image-137 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/two-subviews.gif" alt="two-subviews" width="318" height="546" /></a></p>
<p>Next, we place the header image underneath the profile view. The trick here is to make the image its own independent view in the scroller &#8211; a <em>sibling</em> of the profile view, not a child. This will let us adjust it with much more freedom since it won&#8217;t be constrained by the bounds of the profile view.</p>
<p>Also note that I&#8217;ve used an image that is taller than the profile view so that we can test the zooming action works correctly later.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/background-added.png"><img class="aligncenter wp-image-129 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/background-added.png" alt="background-added" width="292" height="315" /></a></p>
<p>Now we will start animating the zoom. First, we need to re-position the image as the user scrolls to make sure that the photo is always vertically centered between the bottom of the toolbar and the top of the content view. Remember that the profile view doesn&#8217;t grow in height &#8211; it just moves down the page with the rest of the content. So the center of the image actually moves <em>away</em> from the center of the profile view as the user scrolls. Since I&#8217;m a fan of autolayout (we do exist), I added an <code>NSLayoutConstraint</code> that does exactly that. For every two pixels of scrolling, one pixel of vertical adjustment is required to maintain a vertical center alignment.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/centering.gif"><img class="aligncenter wp-image-131 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/centering.gif" alt="centering" width="320" height="235" /></a></p>
<p>Now lets get the zoom working. We can add another constraint here to set the size of the image view to match the native proportions of the image itself. Just like before, this gives us a constant to tweak as the user scrolls.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/stretching.gif"><img class="aligncenter wp-image-136 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/stretching.gif" alt="stretching" width="320" height="237" /></a></p>
<p>Its a start, but the image is stretching. This is easily rectified using one more layout constraint to maintain the original aspect ratio.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/aspect-ratio.gif"><img class="aligncenter wp-image-128 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/aspect-ratio.gif" alt="aspect-ratio" width="320" height="234" /></a></p>
<p>Much better.</p>
<p>Next we need to blur and darken the image, and only reveal it incrementally. If we place a blurred and darkened copy of the image into the view heirarchy we can just update its transparency. I found a nice implementation of the necessary image adjustments by <a href="https://github.com/bryanjclark/ios-darken-image-with-cifilter">Brian Clark</a> and slotted my new image into place above the real photo.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/blurred-layer.gif"><img class="aligncenter wp-image-130 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/blurred-layer.gif" alt="blurred-layer" width="317" height="232" /></a></p>
<p>The blurry image is constrained to maintain the same position and size of the original photo. Now we can simply fade out both the profile info and the blurry image to reveal the photo.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/almost.gif"><img class="aligncenter wp-image-127 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/almost.gif" alt="almost" width="318" height="276" /></a></p>
<p>We&#8217;re almost there. But we&#8217;re still missing that nice detail from the original &#8211; the hidden top and bottom slivers of the image should be revealed before any zooming takes place. This is accomplished by comparing the height of the image with that of the profile view and storing an &#8216;overlap&#8217; value that represents how much of the photo is hidden. Only once the user has scrolled beyond that value does the scaling begin.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/final.gif"><img class="aligncenter wp-image-132 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/final.gif" alt="final" width="320" height="569" /></a></p>
<h2 id="markdown-header-in-the-wild">In the Wild</h2>
<p>I added this same detail into my baseball app <a href="http://nohitteralerts.com/">No-Hitter Alerts</a>, though I didn&#8217;t need the blurring behavior since the image is a known quantity and doesn&#8217;t obscure the text.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/11/no-hitter-alerts.gif"><img class="aligncenter wp-image-141 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/11/no-hitter-alerts.gif" alt="no-hitter-alerts" width="300" height="511" /></a></p>
<h2 id="markdown-header-the-tab">The Tab</h2>
<p>The source code for this implementation can be found on <a href="https://github.com/benpackard/BENTweetbotHeader">GitHub</a>. Thanks for reading!</p>
<h4 id="markdown-header-update">Update</h4>
<p><a href="https://twitter.com/bryanjclark">Brian Clark</a> improved his image darkening implementation after I posted this article. Thanks to him, and to <a href="https://twitter.com/Blubser">Lukas Spieß</a> for updating the <a href="https://github.com/benpackard/BENTweetbotHeader">demo project</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.benpackard.org/blog/?feed=rss2&#038;p=125</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Food Files 2.0</title>
		<link>https://www.benpackard.org/blog/?p=114</link>
		<comments>https://www.benpackard.org/blog/?p=114#comments</comments>
		<pubDate>Fri, 17 Oct 2014 01:22:34 +0000</pubDate>
		<dc:creator><![CDATA[Ben]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.benpackard.org/blog/?p=114</guid>
		<description><![CDATA[A long overdue update. More than an update, in fact; a full re-write. Food Files was my first ever app and it was a lot of fun to revisit the design choices and the implementation I settled on the first time around. Available for free on the App Store.]]></description>
				<content:encoded><![CDATA[<p>A long overdue update. More than an update, in fact; a full re-write.</p>
<p>Food Files was my first ever app and it was a lot of fun to revisit the design choices and the implementation I settled on the first time around.</p>
<p>Available for free on the <a title="Food Files on the App Store" href="https://itunes.apple.com/us/app/food-files/id571068653?ls=1&amp;mt=8">App Store</a>.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/10/food-files-all.png"><img class="aligncenter wp-image-115 size-large" src="http://www.benpackard.org/blog/wp-content/uploads/2014/10/food-files-all-1024x731.png" alt="Food Files Screenshots" width="474" height="338" /></a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.benpackard.org/blog/?feed=rss2&#038;p=114</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scored 1.0.4</title>
		<link>https://www.benpackard.org/blog/?p=108</link>
		<comments>https://www.benpackard.org/blog/?p=108#comments</comments>
		<pubDate>Thu, 16 Oct 2014 14:38:16 +0000</pubDate>
		<dc:creator><![CDATA[Ben]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.benpackard.org/blog/?p=108</guid>
		<description><![CDATA[A new version of Scored is now available on the App Store.  A few features added in the last couple of releases:  Added a &#8216;Today&#8217; widget &#8211; view live scores and today&#8217;s results directly from your Today screen. Support for iOS 8 and iPhones 6/6+ New alert sound Redsk*ns mode Teams can now be swipe-deleted [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>A new version of Scored is now available on the <a title="Scored on the App Store" href="https://itunes.apple.com/us/app/id876577750?ls=1&amp;mt=8">App Store</a>.  A few features added in the last couple of releases:</p>
<ul>
<li> Added a &#8216;Today&#8217; widget &#8211; view live scores and today&#8217;s results directly from your Today screen.</li>
<li>Support for iOS 8 and iPhones 6/6+</li>
<li>New alert sound</li>
<li>Redsk*ns mode</li>
<li>Teams can now be swipe-deleted directly from the settings screen</li>
</ul>
<p>The app also has a new icon designed by <a title="Behance" href="https://www.behance.net/shahriaremil">Shahriar Emil</a>.</p>
<p><a href="http://scoredapp.com"><img class="aligncenter wp-image-109 size-medium" src="http://www.benpackard.org/blog/wp-content/uploads/2014/10/Scored-App-Icon-300x300.png" alt="Scored App Icon" width="300" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.benpackard.org/blog/?feed=rss2&#038;p=108</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modal Buddy and Slender Seven</title>
		<link>https://www.benpackard.org/blog/?p=100</link>
		<comments>https://www.benpackard.org/blog/?p=100#comments</comments>
		<pubDate>Tue, 07 Oct 2014 15:57:06 +0000</pubDate>
		<dc:creator><![CDATA[Ben]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.benpackard.org/blog/?p=100</guid>
		<description><![CDATA[A couple of apps I&#8217;ve developed recently: Modal Buddy &#8211; a fun, effective way to learn and practice modal guitar scales and take your soloing to the next level. Slender Seven &#8211; healthy and delicious recipes using seven ingredients or less. These were both very different clients from a requirements perspective. The guys at Ninebuzz had [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>A couple of apps I&#8217;ve developed recently:</p>
<ul>
<li><a title="Modal Buddy" href="https://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;cad=rja&amp;uact=8&amp;ved=0CCAQFjAA&amp;url=https%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Fmodal-buddy-guitar-jam-tool%2Fid889181515%3Fmt%3D8&amp;ei=sgw0VOrUGpGRsQTy14GIBw&amp;usg=AFQjCNE_618Mp6F53D6FfGKKJusLN8XthQ&amp;sig2=EGGmEXbjc3R8GMk-SJBinw">Modal Buddy</a> &#8211; a fun, effective way to learn and practice modal guitar scales and take your soloing to the next level.</li>
<li><a title="Slender Seven" href="https://itunes.apple.com/us/app/slender-seven/id915378084?mt=8">Slender Seven</a> &#8211; healthy and delicious recipes using seven ingredients or less.</li>
</ul>
<p>These were both very different clients from a requirements perspective. The guys at Ninebuzz had a very specific concept in mind and comprehensive design documents ready to go. Nikki at Slender Seven gave me free reign to build the app I thought best met her requirements and we worked together on defining the right user experience. I enjoy both approaches and both apps turned out great.</p>
<p>Screenshots of each can also be found on my <a title="Portfolio" href="http://benpackard.org">portfolio page</a>.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/10/mb.png"><img class="aligncenter wp-image-117 size-thumbnail" src="http://www.benpackard.org/blog/wp-content/uploads/2014/10/mb-150x150.png" alt="Modal Buddy Icon" width="150" height="150" /></a> <a href="http://www.benpackard.org/blog/wp-content/uploads/2014/10/sls.png"><img class="aligncenter wp-image-118 size-thumbnail" src="http://www.benpackard.org/blog/wp-content/uploads/2014/10/sls-150x150.png" alt="Slender Seven Icon" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.benpackard.org/blog/?feed=rss2&#038;p=100</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>London</title>
		<link>https://www.benpackard.org/blog/?p=91</link>
		<comments>https://www.benpackard.org/blog/?p=91#comments</comments>
		<pubDate>Wed, 09 Jul 2014 19:07:28 +0000</pubDate>
		<dc:creator><![CDATA[Ben]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.benpackard.org/blog/?p=91</guid>
		<description><![CDATA[From time to time I am asked for travel tips by friends visiting  London. Instead of recycling the same email I have started pointing people to this page.]]></description>
				<content:encoded><![CDATA[<p>From time to time I am asked for travel tips by friends visiting  London. Instead of recycling the same email I have started pointing people to <a href="http://benpackard.org/london">this page</a>.</p>
<p><a href="http://benpackard.org/london"><img class="aligncenter wp-image-93 size-full" src="http://www.benpackard.org/blog/wp-content/uploads/2014/07/Screen-Shot-2014-07-09-at-3.07.53-PM.png" alt="Screen Shot 2014-07-09 at 3.07.53 PM" width="799" height="351" /></a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.benpackard.org/blog/?feed=rss2&#038;p=91</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scored &#8211; a Better Sports App</title>
		<link>https://www.benpackard.org/blog/?p=88</link>
		<comments>https://www.benpackard.org/blog/?p=88#comments</comments>
		<pubDate>Tue, 20 May 2014 16:44:59 +0000</pubDate>
		<dc:creator><![CDATA[Ben]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.benpackard.org/blog/?p=88</guid>
		<description><![CDATA[Yesterday I launched Scored, a new sports app for the iPhone. I am frustrated by the amount of cruft that comes with sports apps &#8211; lots of visual noise, obnoxious ads, etc. I want a fast, clean sports app. When I want to check a score, I shouldn&#8217;t have to wait while a Godzilla ad downloads [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Yesterday I launched <a href="http://scoredapp.com">Scored</a>, a new sports app for the iPhone. I am frustrated by the amount of cruft that comes with sports apps &#8211; lots of visual noise, obnoxious ads, etc. I want a fast, clean sports app. When I want to check a score, I shouldn&#8217;t have to wait while a Godzilla ad downloads and then scroll through some jerky spaceship-inspired design.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/05/four-iphones.png"><img class="aligncenter size-large wp-image-89" src="http://www.benpackard.org/blog/wp-content/uploads/2014/05/four-iphones-1024x618.png" alt="Scored for iPhone" width="474" height="286" /></a></p>
<p>Scored is available now on the <a href="https://itunes.apple.com/us/app/id876577750?ls=1&amp;mt=8">App Store</a> or you can read little more about it <a href="http://scoredapp.com">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.benpackard.org/blog/?feed=rss2&#038;p=88</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pizzametrics</title>
		<link>https://www.benpackard.org/blog/?p=84</link>
		<comments>https://www.benpackard.org/blog/?p=84#comments</comments>
		<pubDate>Wed, 16 Apr 2014 21:35:26 +0000</pubDate>
		<dc:creator><![CDATA[Ben]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.benpackard.org/blog/?p=84</guid>
		<description><![CDATA[The newest version of the Is Pizza Half Price app &#8211; now with 100% more added bar charts. Available now on the App Store and free as always.]]></description>
				<content:encoded><![CDATA[<p>The newest version of the <a title="Is Pizza Half Price - the app" href="http://ispizzahalfprice.com/app" target="_blank">Is Pizza Half Price app</a> &#8211; now with 100% more added bar charts.</p>
<p>Available now on the <a title="App Store" href="https://itunes.apple.com/us/app/id739773372?ls=1&amp;mt=8" target="_blank">App Store</a> and free as always.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/04/mzl.fgbfefug.png"><img class="aligncenter size-full wp-image-85" alt="Pizzametrics" src="http://www.benpackard.org/blog/wp-content/uploads/2014/04/mzl.fgbfefug.png" width="640" height="960" /></a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.benpackard.org/blog/?feed=rss2&#038;p=84</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A DC Sporting Year Measured in Pizza</title>
		<link>https://www.benpackard.org/blog/?p=70</link>
		<comments>https://www.benpackard.org/blog/?p=70#comments</comments>
		<pubDate>Fri, 11 Apr 2014 19:28:57 +0000</pubDate>
		<dc:creator><![CDATA[Ben]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.benpackard.org/blog/?p=70</guid>
		<description><![CDATA[Exactly one year ago I created IsPizzaHalfPrice.com. I consider this to be my most enduring and noble contribution to the progress of humanity. To celebrate, I went digging into the pizza database. Here&#8217;s what I found. Overall, there is some pretty consistent half-price pizza to be had throughout the year. As you might expect, the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Exactly one year ago I created <a title="Is Pizza Half Price?" href="http://ispizzahalfprice.com" target="_blank">IsPizzaHalfPrice.com</a>. I consider this to be my most enduring and noble contribution to the progress of humanity.</p>
<p>To celebrate, I went digging into the pizza database. Here&#8217;s what I found.</p>
<p>Overall, there is some pretty consistent half-price pizza to be had throughout the year. As you might expect, the probability of half-price pizza increases when all participating teams are in season. We are pretty much at Peak Pizza right now, with six qualifying days already in the first week and a half of April.</p>
<p><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/04/iOS-Simulator-Screen-shot-Apr-11-2014-2.42.53-PM.png"><img class="aligncenter size-large wp-image-71" alt="DC Pizza Days by Month" src="http://www.benpackard.org/blog/wp-content/uploads/2014/04/iOS-Simulator-Screen-shot-Apr-11-2014-2.42.53-PM-1024x576.png" width="474" height="266" /></a></p>
<p>Breaking down the stats by franchise tells a surprisingly accurate story of each team&#8217;s season. The Nationals start slowly, surge at the end of the season, but drop off the chart before October arrives. The Wizards wobble but finally make it stick over .500 with a hot March. The Caps seem to have been weirdly consistent, but consistently average.</p>
<p><img class="aligncenter size-large wp-image-73" alt="Nats" src="http://www.benpackard.org/blog/wp-content/uploads/2014/04/Nats-1024x576.png" width="474" height="266" /><img class="aligncenter size-large wp-image-74" alt="Wiz" src="http://www.benpackard.org/blog/wp-content/uploads/2014/04/Wiz-1024x576.png" width="474" height="266" /><a href="http://www.benpackard.org/blog/wp-content/uploads/2014/04/Caps.png"><img class="aligncenter size-large wp-image-72" alt="Caps" src="http://www.benpackard.org/blog/wp-content/uploads/2014/04/Caps-1024x576.png" width="474" height="266" /></a></p>
<p>All kidding aside, I&#8217;m pretty giddy about the response the website and the accompanying <a title="Is Pizza Half Price - the App" href="http://ispizzahalfprice.com/app" target="_blank">free iOS app</a> have received over the last year. Thanks to everyone who visited and passed on your kind comments. Here&#8217;s to a pizza-filled Nats season and Wizards post-season.</p>
<p><em>Nerdy chart note: Don&#8217;t try to add up the numbers for each team and expect them to total the overall stats &#8211; on some days, multiple teams qualified for half-price pizza. What a waste!</em></p>
]]></content:encoded>
			<wfw:commentRss>https://www.benpackard.org/blog/?feed=rss2&#038;p=70</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cocoa Covers</title>
		<link>https://www.benpackard.org/blog/?p=61</link>
		<comments>https://www.benpackard.org/blog/?p=61#comments</comments>
		<pubDate>Tue, 01 Apr 2014 16:25:36 +0000</pubDate>
		<dc:creator><![CDATA[Ben]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.benpackard.org/blog/?p=61</guid>
		<description><![CDATA[I really enjoyed recreating the Dark Sky scrolling animation and have plans for a few more interactions I would like to attempt. I am going to start collecting these at a new website, CocoaCovers.com. I consider these &#8216;covers&#8217; in the sense that they are tributes to the originals. I&#8217;m hoping that they will be received [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I really enjoyed recreating the Dark Sky scrolling <a title="The Dark Sky Staggered Slide-in Animation" href="http://www.benpackard.org/blog/?p=36">animation</a> and have plans for a few more interactions I would like to attempt. I am going to start collecting these at a new website, <a title="CocoaCovers.com" href="http://CocoaCovers.com">CocoaCovers.com</a>.</p>
<p>I consider these &#8216;covers&#8217; in the sense that they are tributes to the originals. I&#8217;m hoping that they will be received in that same spirit and not considered rip-offs. I&#8217;m picking small, delightful moments to recreate from some of my favorite apps and sometimes adding my own twist.  I have no access to the original source code and I&#8217;m not trying to peek under any covers for clues &#8211; these are my own interpretations of modern classics.</p>
<p>It really does remind me of the way I would learn to play a song on guitar before the internet was prevalent. Pressing an ear against the speaker, slack-jawed and confused.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.benpackard.org/blog/?feed=rss2&#038;p=61</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
