<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Tyler Sticka</title>
	
	<link>http://tylersticka.com</link>
	<description>Portfolio and journal of the award-winning designer, artist, speaker and educator specializing in web, icon and logo design, particularly in new media.</description>
	<lastBuildDate>Wed, 03 Mar 2010 19:25:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/tylersticka" /><feedburner:info uri="tylersticka" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Generating Flickr Short URLs with JavaScript</title>
		<link>http://feedproxy.google.com/~r/tylersticka/~3/8mmGIUuxJSk/</link>
		<comments>http://tylersticka.com/2010/03/flickr-shorturl-js/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 19:25:45 +0000</pubDate>
		<dc:creator>Tyler Sticka</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[portwiture]]></category>

		<guid isPermaLink="false">http://tylersticka.com/?p=2484</guid>
		<description><![CDATA[As of this past Saturday, users who click a &#8220;tweet this&#8221; link on an individual photo in Portwiture may notice a few extra characters available. By popular request, the app now takes advantage of Flickr&#8217;s URL shortening.
What&#8217;s unique about flic.kr URLs is that they are not directly tied to a database or fetch-able via the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://tylersticka.com/wp-content/uploads/flic-kr.gif" alt="" title="flic.kr" width="154" height="42" class="alignright size-full wp-image-2490" />As of this past Saturday, users who click a &#8220;tweet this&#8221; link on an individual photo in <a href="http://portwiture.com/" class="out">Portwiture</a> may notice a few extra characters available. By popular request, the app now takes advantage of <a href="http://www.flickr.com/services/api/misc.urls.html#short" class="out">Flickr&#8217;s URL shortening</a>.</p>
<p>What&#8217;s unique about flic.kr URLs is that they are not directly tied to a database or fetch-able via the API, but derived from a photo&#8217;s unique ID using a variation of base58 compression. This is actually pretty neat, as it sidesteps the need for an additional database query, resulting in a faster experience for the end user.</p>
<p>The only problem is that you, the developer, have to do the work to generate the darn thing. If you need to create it on the fly using JavaScript (as Portwiture does), you may be disappointed by the relative lack of JS code snippets in the <a href="http://www.flickr.com/groups/api/discuss/72157616713786392/" class="out">official base58 flic.kr dev discussion</a>.</p>
<p>Fear not! Using their PHP example, translating this functionality to JavaScript is a straightforward process.</p>
<p>The only function used therein with no direct JavaScript equivalent is <code>intval</code>. Luckily, the amazing <a href="http://phpjs.org/" class="out">php.js project</a> has us covered with <a href="http://phpjs.org/functions/intval:435" class="out">a translation</a>. Grab that function and include it in your source.</p>
<p>Now we simply rewrite the <code>base_encode</code> function, swapping out <code>strlen</code> for <code>.length</code>, <code>[]</code> for <code>.charAt()</code>, and so on.</p>
<pre><code>function base_encode(num, alphabet) {
	// http://tylersticka.com/
	// Based on the Flickr PHP snippet:
	// http://www.flickr.com/groups/api/discuss/72157616713786392/
	alphabet = alphabet || '123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ';
	var base_count = alphabet.length;
	var encoded = '';
	while (num >= base_count) {
		var div = num/base_count;
		var mod = (num-(base_count*intval(div)));
		encoded = alphabet.charAt(mod) + encoded;
		num = intval(div);
	}
	if (num) encoded = alphabet.charAt(num) + encoded;
	return encoded;
}</code></pre>
<p>Note that the default alphabet differs slightly from honest-to-goodness base58 encoding, omitting certain characters that are confusing in URLs (0 and O, I and l, etc.).</p>
<p>Assuming you&#8217;ve already fetched a Flickr photo ID, generating a short URL is now as simple as this:</p>
<pre><code>var shortURL = 'http://flic.kr/p/' + base_encode(4379822687);
alert(shortURL);
// Should alert 'http://flic.kr/p/7F2JGg'</code></pre>
<p>That&#8217;s all there is to it. Reversing the process is a bit trickier (you need to fetch the author&#8217;s name), but <a href="http://www.flickr.com/groups/api/discuss/72157616713786392/72157620931323757/" class="out">this Flickr discussion</a> should get you started.</p>
<p>Want a JavaScript file with <code>intval</code>, <code>base_encode</code>, <code>base_decode</code> and a few helper functions ready and raring to go? You&#8217;re one lucky son of a gun:</p>
<p><a href="http://tylersticka.com/wp-content/uploads/flickr-shorturl.js" class="download">Download flickr-shorturl.js <span class="version">1.0</span></a></p>
<img src="http://feeds.feedburner.com/~r/tylersticka/~4/8mmGIUuxJSk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tylersticka.com/2010/03/flickr-shorturl-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tylersticka.com/2010/03/flickr-shorturl-js/</feedburner:origLink></item>
		<item>
		<title>How WordPress 3.0 will rock your portfolio</title>
		<link>http://feedproxy.google.com/~r/tylersticka/~3/1S9oHohK38E/</link>
		<comments>http://tylersticka.com/2010/02/how-wordpress-3-0-will-rock-your-portfolio/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 22:15:52 +0000</pubDate>
		<dc:creator>Tyler Sticka</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wcpdx]]></category>
		<category><![CDATA[wordcamp]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://tylersticka.com/?p=2430</guid>
		<description><![CDATA[I couldn&#8217;t be happier that my WordCamp Portland 2009 presentation, WordPress-Powered Portfolios, will likely have the shortest shelf life of any presentation I&#8217;ve given. It&#8217;s a testament to the WordPress team (and open source projects in general) that the &#8220;hacks&#8221; I proposed only months ago have already blossomed into honest-to-goodness features.
In December, WordPress 2.9 introduced [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2431" title="Slide from WordPress-Powered Portfolios" src="http://tylersticka.com/wp-content/uploads/wcpdx_slide.gif" alt="" width="304" height="190" />I couldn&#8217;t be happier that my WordCamp Portland 2009 presentation, <a href="http://tylersticka.com/2009/09/wcpdx09/">WordPress-Powered Portfolios</a>, will likely have the shortest shelf life of any presentation I&#8217;ve given. It&#8217;s a testament to the WordPress team (and open source projects in general) that the &#8220;hacks&#8221; I proposed only months ago have already blossomed into honest-to-goodness features.</p>
<p>In December, WordPress 2.9 introduced support for <a href="http://tylersticka.com/2009/12/wp29thumbnails/">post thumbnails</a>, eliminating the need for my custom meta hack. WordPress 3.0 (which should be released around May) will solve the problem of secluding portfolio content from your blog with the introduction of custom post types.</p>
<p>Instead of corralling your portfolio content with tools like &#8220;category excluders&#8221; or relying solely on nested pages (as I suggested), you&#8217;ll soon be able to create a custom &#8220;portfolio&#8221; post type in a supported and predictable fashion.</p>
<p>As <a href="http://wpengineer.com/impressions-of-custom-post-type/" class="out">Frank Bültge details on the WP Engineer blog</a>, adding a whole new section to your WordPress sidebar will be a straightforward and extremely flexible process you can bake right into your theme. No crazy plugins or hackery required!</p>
<p>This change is exciting not only for the impact it will have on  sites like my own, but because it increases WordPress&#8217; prospects as a hardy CMS solution.</p>
<p>All that&#8217;s left to render my presentation <em>completely</em> obsolete is a more robust and customizable gallery solution. I&#8217;ll be crossing my fingers.</p>
<img src="http://feeds.feedburner.com/~r/tylersticka/~4/1S9oHohK38E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tylersticka.com/2010/02/how-wordpress-3-0-will-rock-your-portfolio/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://tylersticka.com/2010/02/how-wordpress-3-0-will-rock-your-portfolio/</feedburner:origLink></item>
		<item>
		<title>Some Welcome Variation In Our Increasingly Mobile World</title>
		<link>http://feedproxy.google.com/~r/tylersticka/~3/XPtxUrkryxw/</link>
		<comments>http://tylersticka.com/2010/02/mobile-variation/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 18:00:51 +0000</pubDate>
		<dc:creator>Tyler Sticka</dc:creator>
				<category><![CDATA[Interfaces]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[palm]]></category>
		<category><![CDATA[pre]]></category>
		<category><![CDATA[windows phone]]></category>

		<guid isPermaLink="false">http://tylersticka.com/?p=2398</guid>
		<description><![CDATA[The iPhone may be my favorite device of the last ten years. No other gizmo since the PC has so fundamentally altered the way I interact with the web and my social circle.
But the iPhone&#8217;s ubiquity in the mobile space scares the living daylights out of me.
It frightens me the same way I&#8217;m frightened by [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2410" title="Apple's iPhone, personified" src="http://tylersticka.com/wp-content/uploads/persona_iphone.jpg" alt="" width="211" height="292" />The iPhone may be my favorite device of the last ten years. No other gizmo since the PC has so fundamentally altered the way I interact with the web and my social circle.</p>
<p>But the iPhone&#8217;s ubiquity in the mobile space <em>scares the living daylights out of me</em>.</p>
<p>It frightens me the same way I&#8217;m frightened by the deceptive feeling of serenity that blankets me as I continue to surrender more and more of my data to Google (current buddy, future megalomaniac). The thought leaders at Apple have crafted an experience so warm and fuzzy it&#8217;s nearly impossible to escape its allure, even as it wallops all of its competitors.</p>
<p>I simultaneously sing the praises of the Semantic Web (often at the expense of rich media plugins such as Flash and Silverlight) while gleefully supporting dozens of apps delivered via the iPhone&#8217;s closed, draconian marketplace. The irony (hypocrisy?) therein is not lost on me.</p>
<p>It seems pretentious to avoid these products solely on insular, geeky principal, so I continue to champion competitors in hopes that a superior device will emerge or, at the very least, keep Apple under enough pressure and scrutiny to maintain their innovation and avoid sinking into mediocrity (<a href="http://en.wikipedia.org/wiki/EMac" class="out">remember?</a>).</p>
<p><img class="alignleft size-full wp-image-2412" title="Palm's Pre and Pixi, personified" src="http://tylersticka.com/wp-content/uploads/persona_palm.jpg" alt="" width="156" height="145" /><a href="http://tylersticka.com/2009/01/the-future-of-mobile-devices-is-now/">I had extremely high hopes for Palm&#8217;s WebOS</a>, but a still-floundering app ecosystem coupled with some truly strange hardware choices appear to have sabotaged its chances. <img class="alignright size-full wp-image-2414" title="Google's Android, personified" src="http://tylersticka.com/wp-content/uploads/persona_android.jpg" alt="" width="135" height="176" />While I have much more confidence in the Android OS as a powerful and capable mobile device standard (especially in the long-term), the platform seems troubled by a lack-of-consistency between devices and the same snore-inducing, incremental release cycle that eventually tempered my excitement for ambitious open source projects like Ubuntu.</p>
<p>It could just be my ignorance of the platform, but as the iPhone becomes increasingly capable at performing business tasks I begin to look upon Blackberry users as I did AOL users ten years ago—with a feeling of solicitude generally reserved for endangered species.</p>
<p>What we need is a platform with a distinctive and decidedly <em>un-</em>iPhone-like user experience (an iPhone killer <em>killer</em>), produced by a company with experience facilitating ecosystems yet still capable of supporting a wide range of hardware and service providers.</p>
<p>Did you just say <em>Windows</em>?</p>
<p><a href="http://tylersticka.com/wp-content/uploads/win7phone_01.jpg"><img class="alignnone size-full wp-image-2406" title="Windows Phone 7 Series, People Hub" src="http://tylersticka.com/wp-content/uploads/win7phone_01_512.jpg" alt="" width="520" height="327" /></a></p>
<p>That&#8217;s right, Microsoft showed off Windows Phone 7 Series this week, and <a href="http://channel9.msdn.com/posts/LauraFoy/First-Look-Windows-Phone-7-Series-Hands-on-Demo/" class="out">it looks great</a>. The minds responsible for the well-reviewed Zune HD have re-designed the mobile operating system from scratch. Designers like myself who admire the HD&#8217;s interface are thrilled, but considering the Zune&#8217;s marketshare could be <em>very generously</em> described as having a &#8220;lack of ubiquity,&#8221; it&#8217;s a brave (and admirable) move to hand them the keys to Microsoft&#8217;s mobile future.</p>
<p><img class="alignright size-full wp-image-2416" title="Windows Phone 7 Series, personified (so far)" src="http://tylersticka.com/wp-content/uploads/persona_win.jpg" alt="" width="133" height="189" />Instead of forcing the user into disparate applications specific to function (iPhone) or allowing the user to multi-task until their poor little phone grinds to a halt (Android), Windows 7 Phones establish contextual <em>hubs</em> of interest. If you want to see what your cousin has been up to this week, you don&#8217;t have to check email, Facebook, Twitter and chat in separate apps; simply tap &#8220;People,&#8221; then select your cousin&#8217;s profile. This style of traversing your media and social circle is extremely thoughtful and appears to be well-executed. I know it won&#8217;t please everyone, but I&#8217;m certain a percentage of the population will instantly prefer it.</p>
<p>The interface itself looks completely unique, at least if you&#8217;ve never used a Zune. Subtleties like highlights, shadows, soft corners and texture are completely absent, allowing only color, typography and your content to show through. While occasionally abrasive (especially in the calendar application), it&#8217;s a striking choice that&#8217;s extremely memorable and looks beautiful in motion.</p>
<p>It isn&#8217;t all sunshine and rainbows, though. The browser is still Internet Explorer, albeit the improved (but sluggish) version found in the Zune HD. Until Mobile IE supports the same sort of HTML5 features that have enabled web app developers to deliver rich mobile experiences to the iPhone and Android devices, Windows Phones will still be an obstacle in the evolution of the mobile web. Perhaps most depressingly, hardware actually supporting this OS probably won&#8217;t debut until <em>Christmas</em>, and who knows what may have changed by then.</p>
<p>Aside from the platform itself, what excites me most about this announcement is that another Apple competitor has finally shown they&#8217;re <em>awake</em>. Watching Apple merrily stomp ahead with Android slowly gaining ground and Palm off in the distance is becoming <em>tiresome</em>.</p>
<p>But an Apple/Google/Microsoft/Palm slugfest? I&#8217;d pay to see that.</p>
<img src="http://feeds.feedburner.com/~r/tylersticka/~4/XPtxUrkryxw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tylersticka.com/2010/02/mobile-variation/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://tylersticka.com/2010/02/mobile-variation/</feedburner:origLink></item>
		<item>
		<title>Fragments: Great Comics For a Great Cause</title>
		<link>http://feedproxy.google.com/~r/tylersticka/~3/S5Xnql9mZp8/</link>
		<comments>http://tylersticka.com/2010/02/fragments/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 18:30:12 +0000</pubDate>
		<dc:creator>Tyler Sticka</dc:creator>
				<category><![CDATA[Cartooning]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[comics]]></category>
		<category><![CDATA[fragments]]></category>
		<category><![CDATA[haiti]]></category>

		<guid isPermaLink="false">http://tylersticka.com/?p=2387</guid>
		<description><![CDATA[Fragments is a unique comic book anthology that donates its proceeds to those in need, but not without your help.
We&#8217;re now accepting submissions for comics and artwork to be featured in the first volume, benefiting the victims of the catastrophic earthquake in Haiti. If you&#8217;re an artist, please consider contributing. If you know an artist, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://fragmentscomic.org"><img class="alignright size-thumbnail wp-image-2388" title="Fragments" src="http://tylersticka.com/wp-content/uploads/heartballoon-150x150.jpg" alt="" width="150" height="150" /></a>Fragments is a unique comic book anthology that donates its proceeds to those in need, but not without your help.</p>
<p>We&#8217;re now accepting submissions for comics and artwork to be featured in the first volume, benefiting the victims of the catastrophic earthquake in Haiti. If you&#8217;re an artist, please consider contributing. If you know an artist, please direct their attention to this project.</p>
<p>With our combined creativity, we can make this an amazing book that actually <em>saves lives</em>.</p>
<p>For more information, please <a href="http://fragmentscomic.org/" class="out">visit the project&#8217;s web site</a> or follow <a href="http://twitter.com/FragmentsComic" class="atreply out">@FragmentsComic</a> on Twitter.</p>
<img src="http://feeds.feedburner.com/~r/tylersticka/~4/S5Xnql9mZp8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tylersticka.com/2010/02/fragments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tylersticka.com/2010/02/fragments/</feedburner:origLink></item>
		<item>
		<title>Spider-Man Drawings</title>
		<link>http://feedproxy.google.com/~r/tylersticka/~3/SohHRp0Hpt8/</link>
		<comments>http://tylersticka.com/2010/02/spider-man-drawings/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 21:00:23 +0000</pubDate>
		<dc:creator>Tyler Sticka</dc:creator>
				<category><![CDATA[Cartooning]]></category>
		<category><![CDATA[comics]]></category>
		<category><![CDATA[spider-man]]></category>
		<category><![CDATA[superheroes]]></category>

		<guid isPermaLink="false">http://tylersticka.com/?p=2362</guid>
		<description><![CDATA[My favorite superhero is, without question, Batman. His is the simplest premise with the richest psychological results.
But just as certainly, my favorite to draw is Spider-Man.
When I was a very young comics fan, I was drawn to John Romita&#8217;s flawless brushwork. But as I grew older, I became increasingly enamored with Steve Ditko&#8217;s Spidey. It [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tylersticka.com/wp-content/uploads/spidey_sketch.jpg"><img class="alignright size-medium wp-image-2363" title="Spider-Man sketch" src="http://tylersticka.com/wp-content/uploads/spidey_sketch-164x300.jpg" alt="" width="164" height="300" /></a>My favorite superhero is, without question, Batman. His is the simplest premise with the richest psychological results.</p>
<p>But just as certainly, my favorite to <em>draw</em> is Spider-Man.</p>
<p>When I was a very young comics fan, I was drawn to John Romita&#8217;s flawless brushwork. But as I grew older, I became increasingly enamored with Steve Ditko&#8217;s Spidey. It felt quirky, jittery, jerky. The opposite of graceful. In a world of sweeping capes, bold shapes and dynamic lines, Ditko&#8217;s Spider-Man (and to some extent, Peter Parker) was hopelessly broken and askew.</p>
<p>I would guess at least half of American cartoonists go through a phase of romanticizing superhero comics, and I was no different. I never thought I was very <em>good</em> at drawing superheroes, mind you, but they were really fun.</p>
<p>I recently stumbled upon some Spider-Man drawings I did as a freshman in college. It looks like I was reading a lot of comics by Sam Kieth and Humberto Ramos. I was obviously avoiding the &#8220;hassle&#8221; of rendering settings or backgrounds (something many young artists struggle with). But these drawings make me smile in spite of their flaws because I had so much <em>fun</em> making them.</p>
<p>And my Spider-Man is <em>definitely</em> quirky, jittery, jerky.</p>
<p><a href="http://tylersticka.com/wp-content/uploads/spidey_preview_01_web.jpg"><img class="alignnone size-full wp-image-2366" title="Spider-Man comics page" src="http://tylersticka.com/wp-content/uploads/spidey_preview_01_web_520.jpg" alt="" width="520" height="800" /></a></p>
<img src="http://feeds.feedburner.com/~r/tylersticka/~4/SohHRp0Hpt8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tylersticka.com/2010/02/spider-man-drawings/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://tylersticka.com/2010/02/spider-man-drawings/</feedburner:origLink></item>
		<item>
		<title>The iPad Is Not Revolutionary</title>
		<link>http://feedproxy.google.com/~r/tylersticka/~3/Ta-xieISvUw/</link>
		<comments>http://tylersticka.com/2010/01/the-ipad-is-not-revolutionary/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 21:45:28 +0000</pubDate>
		<dc:creator>Tyler Sticka</dc:creator>
				<category><![CDATA[Interfaces]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://tylersticka.com/?p=2371</guid>
		<description><![CDATA[Near the end of yesterday&#8217;s unveiling of the iPad (that&#8217;s really the name, cue middle school jokes), Steve Jobs presented this slide (Gizmodo):

While I cannot weigh in on the magical properties of the iPad until it flies from Hogwarts on its broomstick into the hands of perspirating Apple fanboys the world over (narrowly missing its [...]]]></description>
			<content:encoded><![CDATA[<p>Near the end of yesterday&#8217;s unveiling of the iPad (that&#8217;s really the name, cue middle school jokes), Steve Jobs presented this slide (<a href="http://live.gizmodo.com/#post-4626" class="out">Gizmodo</a>):</p>
<p><img class="alignnone size-full wp-image-2372" title="Steve Jobs presenting the iPad" src="http://tylersticka.com/wp-content/uploads/appletabletb599_sized.jpg" alt="Our most advanced technology in a magical &amp; revolutionary device at an unbelievable price." width="520" height="310" /></p>
<p>While I cannot weigh in on the <em>magical</em> properties of the iPad until it flies from Hogwarts on its broomstick into the hands of perspirating Apple fanboys the world over (narrowly missing its chance at catching the Golden Snitch), I believe we have enough information to contest how <em>revolutionary</em> it actually is.</p>
<p>Princeton&#8217;s <a href="http://wordnetweb.princeton.edu/perl/webwn?s=revolutionary" class="out">WordNet</a> defines revolutionary as &#8220;markedly new or introducing radical change.&#8221; How so?</p>
<p>The device uses an improved version of the iPhone OS, and its apps are written using the same SDK. Applications are accessed via a paginated grid of icons (as on the iPhone). Like the iPhone, only one application may run at a time with occasional, Apple-sanctioned exceptions (such as iTunes playback).</p>
<p><a href="http://tylersticka.com/wp-content/uploads/ipad.jpg"><img class="alignright size-medium wp-image-2375" title="iPad" src="http://tylersticka.com/wp-content/uploads/ipad-169x300.jpg" alt="" width="169" height="300" /></a>It connects to the web via WiFi or, if you pay for a premium model and a monthly subscription, a 3G connection (just like the iPhone or Kindle, minus the subscription fee in the latter case).</p>
<p>The hardware is essentially a cross between a first-generation iPhone and the top half of a unibody MacBook. The screen is capacitive multitouch, with an onscreen keyboard larger than that of the iPhone or Windows 7. The display size is 10 inches (about the size of an average netbook). The display resolution is 1024 by 768 pixels, the same as Lenovo&#8217;s Thinkpad X61 Tablet (released in 2007). It is roughly the same thickness as the MacBook Air.</p>
<p>The iPad introduces an iBooks store that sells basically the same catalog as Amazon and Barnes &amp; Noble offer for their respective e-readers, though slightly more expensive. The books are downloaded in ePub format, the standard for most reading devices with the exception of the Kindle.</p>
<p>The cheapest iPad model starts at $499, a few hundred dollars more expensive than a typical netbook. The most capable model is priced at $829, a couple hundred dollars more than a multitouch laptop.</p>
<h4>What&#8217;s &#8220;markedly new?&#8221;</h4>
<p>I anticipate many will respond &#8220;the product category,&#8221; but that&#8217;s a flimsy explanation at best. The iPad is basically a giant iPod Touch with optional 3G, no phone service, no camera and no additional storage. Apple continually questions the legitimacy of the netbook category, but they&#8217;re in a glass house on this one. If &#8220;giant iPod Touch with optional 3G&#8221; is a product category, then so is &#8220;cheap, tiny laptop&#8221; (also with optional 3G).</p>
<p>Even newly-introduced features like iBooks barely surpass the competition, largely through the use of superfluous interface niceties like page turns and three-dimensional bookshelves.</p>
<p>In nearly every respect, the iPad is a strictly <em>evolutionary</em> product. Cool-looking, probably fun to use, but not revolutionary in any sense.</p>
<h4>What could have been</h4>
<p>Like many, I had high hopes for the iPad. I was enamored with the possibility of the additional screen real estate coupled with multitouch and a 3G connection.</p>
<p><a title="SpiderGoof by Pasquale D'Silva, on Flickr" href="http://www.flickr.com/photos/darkmotion/3877849000/"><img class="alignright" src="http://farm3.static.flickr.com/2487/3877849000_62808ff583_m.jpg" alt="SpiderGoof" width="151" height="240" /></a>I thought for sure that iBooks would include support for periodicals. As nice as the iPad&#8217;s screen looks, what a waste for it to render page after page of black-and-white text! I want to flip through WIRED or Communication Arts on this thing. Steve Jobs is Disney&#8217;s largest shareholder, which just bought <em>Marvel Comics</em> for crying out loud! Support for the magazines and comics I love without having to wastefully plop them into the recycle bin each month would have made this a no-question purchase for me.</p>
<p>Video on the iPhone is impractical due to a dearth of storage space, with tiny screens banishing playback to the realm of mere novelty. The iPad has a gorgeous screen, but no additional storage and no subscription-based service or even Hulu/Netflix integration to circumvent it. In foregoing these possibilities, Apple may have inadvertently allowed a natural successor to the Apple TV pass them by.</p>
<p>I&#8217;m not shocked that they didn&#8217;t include a front-facing camera for video conferencing via iChat or Skype, but the exclusion of <em>any</em> camera at all is quite baffling.</p>
<h4>iPossibility</h4>
<p>While the iPhone innovated both as a device and as a platform, iPad&#8217;s future seems wholly staked in the latter. As mentioned earlier, it shares an operating system with the iPhone, and for good reason. As much as I love my tablet PC, traditional desktop paradigms do not translate gracefully to a touch interface. Apple wisely decided to force developers to create touch-friendly interfaces through a familiar SDK rather than offer clunky support for more open OS X applications. The unfortunate side effect of this is that the iPad&#8217;s usefulness is reliant on developers and the App Store approval process.</p>
<p>An iPad version of the Adobe Creative Suite would be a killer app for artists and designers, but creating a device-centric version of necessary scope would require a daunting amount of time and money to develop for a market largely dominated by 99-cent applications. This makes the future of these platform-specific productivity apps uncertain at best.</p>
<p>This doesn&#8217;t mean the iPad isn&#8217;t right for <em>anyone</em>. If you were planning on buying a netbook in addition to an e-reader and a 3G card for your laptop, the iPad is a usable and comparatively affordable convergence of all three. If you find desktop computers scary but enter a calm, trance-like state while using your iPhone, you might avoid a Mac or PC in favor of one of these puppies.</p>
<p>Otherwise, my verdict is to hold off. In a year or two we&#8217;ll likely see more revisions of the device, and developers will have either breathed life into the platform or let it die on the vine. Personally, I&#8217;m hoping for the former.</p>
<img src="http://feeds.feedburner.com/~r/tylersticka/~4/Ta-xieISvUw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tylersticka.com/2010/01/the-ipad-is-not-revolutionary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tylersticka.com/2010/01/the-ipad-is-not-revolutionary/</feedburner:origLink></item>
		<item>
		<title>HTML5 and CSS3 for the sake of tomfoolery</title>
		<link>http://feedproxy.google.com/~r/tylersticka/~3/NSg5i-ua4J8/</link>
		<comments>http://tylersticka.com/2010/01/html5-and-css3-for-the-sake-of-tomfoolery/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 21:00:04 +0000</pubDate>
		<dc:creator>Tyler Sticka</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[semantic web]]></category>

		<guid isPermaLink="false">http://tylersticka.com/?p=2353</guid>
		<description><![CDATA[One of the biggest disappointments I continually encounter when teaching web design is losing students to rich media plugins, most commonly Flash. These closed, proprietary sirens singing talented designers and developers out to sea rob the Semantic Web of some truly creative minds.
Students often look at the Web and see a minefield of limitations. Several [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2358" title="Flash (the bully)" src="http://tylersticka.com/wp-content/uploads/muscle-flash.jpg" alt="" width="200" height="214" />One of the biggest disappointments I continually encounter when teaching web design is losing students to rich media plugins, most commonly Flash. These closed, proprietary sirens singing talented designers and developers out to sea rob the Semantic Web of some truly creative minds.</p>
<p>Students often look at the Web and see a minefield of limitations. Several times I&#8217;ve approached students with stellar HTML/CSS/JavaScript-based work to ask about their career plans, only to hear &#8220;I&#8217;d rather pursue Flash work.&#8221; No matter how many times I offer tomorrow, many students are only interested in <em>now</em>.</p>
<p>I evangelize the Semantic Web clearly and passionately in my lectures, but arguments of principal, search engine optimization and accessibility often flounder in view of visually-engaging, rich web media. There is a fine line between designer and artist; in order to appeal to these minds, we must impress them on a more <em>visceral </em>level.</p>
<p>Given time, I think HTML5 and CSS3 are up to the task. My arsenal of compelling examples has been growing exponentially.</p>
<p>Mouse over the DVD cases when viewing <a href="http://forabeautifulweb.com/" class="out">For A Beautiful Web</a> in Safari 4 and you&#8217;ll encounter some gorgeous and purposeful rotation-based animation that degrades gracefully for less-abled browsers.</p>
<p>In Mac OS X Snow Leopard, Guillermo Esteves has recreated the <a href="http://ajaxian.com/archives/star-wars-html-and-css-a-new-hope" class="out">Star Wars Episode IV marquee</a> for Webkit users (perspective and all).</p>
<p>Firefox 3.6 introduces support for the File API, making <a href="http://hacks.mozilla.org/2009/12/uploading-files-with-xmlhttprequest/" class="out">drag-and-drop file selection</a> possible (thereby trumping Flash&#8217;s previously-superior selection capability).</p>
<p>Webkit users who opt-in to bleeding edge features can now experience <a href="http://gizmodo.com/5454115/first-youtube-now-vimeo-how-html5-could-finally-kill-flash-video" class="out">YouTube and Vimeo sans Flash players</a> using only HTML5&#8217;s built-in media support. The result is stunningly indistinguishable from Flash video playback.</p>
<p>These examples may appear to be small victories, but their importance cannot be overstated. We are watching the capabilities of HTML and CSS progress more rapidly (and with farther-reaching effect) than their rich media cousins. In a Web where the capabilities of Flash and HTML are roughly equivalent (or perhaps even lopsided), the choice will be abundantly clear.</p>
<p>Address all audiences via the Semantic Web, or keep playing in your sandbox. Which sounds more fulfilling to you?</p>
<img src="http://feeds.feedburner.com/~r/tylersticka/~4/NSg5i-ua4J8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tylersticka.com/2010/01/html5-and-css3-for-the-sake-of-tomfoolery/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://tylersticka.com/2010/01/html5-and-css3-for-the-sake-of-tomfoolery/</feedburner:origLink></item>
		<item>
		<title>Designing for the Greater Good, a new book showcasing the best in cause-related design</title>
		<link>http://feedproxy.google.com/~r/tylersticka/~3/hU-wPidWjik/</link>
		<comments>http://tylersticka.com/2010/01/designing-for-the-greater-good/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 23:00:55 +0000</pubDate>
		<dc:creator>Tyler Sticka</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Identity]]></category>
		<category><![CDATA[Print]]></category>
		<category><![CDATA[nonprofit]]></category>

		<guid isPermaLink="false">http://tylersticka.com/?p=2339</guid>
		<description><![CDATA[In just a few short days, Collins Design (an imprint of HarperCollins Publishers) will release Designing for the Great Good, a new book celebrating the best in marketing and design for nonprofit and organizations (incidentally the first of its kind).
I&#8217;m extremely pleased to be included in the publication. The logo I created for the Vancouver-based [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tylersticka.com/wp-content/uploads/DFGG_Cover_Web.jpg"><img class="size-thumbnail wp-image-2340 alignright" title="Designing for the Greater Good" src="http://tylersticka.com/wp-content/uploads/DFGG_Cover_Web-150x150.jpg" alt="" width="150" height="150" /></a>In just a few short days, Collins Design (an imprint of HarperCollins Publishers) will release <a href="http://designingforthegreatergood.com/" class="out">Designing for the Great Good</a>, a new book celebrating the best in marketing and design for nonprofit and organizations (incidentally the first of its kind).</p>
<p>I&#8217;m extremely pleased to be included in the publication. The logo I created for the Vancouver-based music and dance organization <a href="http://luceoministries.com/" class="out">Luceo</a> is featured therein. Luceo taught me to play an A, B and G on my guitar before I moved back to Oregon, so seeing their logo in print is extra special for me.</p>
<p>From the publisher&#8217;s press release:</p>
<blockquote><p>Created as a comprehensive resource for designers, creative professionals, marketers, corporate communications departments and nonprofit leaders, Designing for the Greater Good is based on authors Peleg Top and Jonathan Cleveland’s nearly 40 years of combined experience working with nonprofits and corporate communications departments across the country.</p>
<p>“After nearly a decade of studying cause marketing campaigns, I know that strong design is absolutely critical to success,” commented David Hessekiel, president, Cause Marketing Forum.  “As a unique showcase of campaigns that stand out from the crowd, Designing for the Greater Good is a valuable addition to the cause marketing literature.  This collection of work, often created in spite of low budgets and organizational impediments, should be an inspiration to creatives, nonprofit and corporate marketers alike.”</p></blockquote>
<p>The official release date is January 26th, but you can pre-order the book now from <a href="http://www.amazon.com/gp/product/0061765309?ie=UTF8&amp;tag=tylesticinted-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0061765309" class="out">Amazon</a>, <a href="http://search.barnesandnoble.com/Designing-for-the-Greater-Good/Peleg-Top/e/9780061765308/?itm=1&amp;USRI=designing+for+the+greater+good" class="out">Barnes &amp; Noble</a> and <a href="http://www.borders.com/online/store/TitleDetail?type=0&amp;catalogId=10001&amp;simple=1&amp;defaultSearchView=List&amp;keyword=designing+for+the+greater+good&amp;LogData=%5Bsearch%3A+94%2Cparse%3A+130%5D&amp;searchData=%7BproductId%3Anull%2Csku%3Anull%2Ctype%3A0%2Csort%3Anull%2CcurrPage%3A1%2CresultsPerPage%3A25%2CsimpleSearch%3Atrue%2Cnavigation%3A0%2CmoreValue%3Anull%2CcoverView%3Afalse%2Curl%3Arpp%3D25%26view%3D2%26all_search%3Ddesigning%2Bfor%2Bthe%2Bgreater%2Bgood%26type%3D0%26nav%3D0%26simple%3Dtrue%2Cterms%3A%7Ball_search%3Ddesigning+for+the+greater+good%7D%7D&amp;storeId=13551&amp;sku=0061765309&amp;ddkey=http:SearchResults" class="out">Borders</a>. I&#8217;d want a copy for my shelf even if I wasn&#8217;t in it!</p>
<p><a title="IMG_0508 by tylersticka, on Flickr" href="http://www.flickr.com/photos/tylersticka/4312529279/"><img class="alignright" src="http://farm3.static.flickr.com/2704/4312529279_76fb40f4b5_m.jpg" alt="IMG_0508" width="240" height="180" /></a><strong>Update (January 28):</strong> I received my copy today, and it looks amazing! The cover has a beautiful metallic finish to the type that has to be seen to be appreciated.</p>
<p>I&#8217;m very glad that my name is spelled correctly and even happier at how nice the logo looks (on page 227 if you&#8217;re curious). I am a bit puzzled as to why they listed my city as Newberg, Oregon. I&#8217;m sure Newberg is lovely, but seeing as I&#8217;ve never been there, my association with the town is grossly inaccurate.</p>
<img src="http://feeds.feedburner.com/~r/tylersticka/~4/hU-wPidWjik" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tylersticka.com/2010/01/designing-for-the-greater-good/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://tylersticka.com/2010/01/designing-for-the-greater-good/</feedburner:origLink></item>
		<item>
		<title>Abolishing “Click Here” on Thinkers &amp; Doers</title>
		<link>http://feedproxy.google.com/~r/tylersticka/~3/k2EKuCFQBAU/</link>
		<comments>http://tylersticka.com/2010/01/abolishing-click-here-on-thinkers-doers/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 04:14:56 +0000</pubDate>
		<dc:creator>Tyler Sticka</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[waggener edstrom]]></category>

		<guid isPermaLink="false">http://tylersticka.com/?p=2330</guid>
		<description><![CDATA[Most of you know that I&#8217;ve been a Senior Experience Designer at Waggener Edstrom since August, and today I began writing for their recently-redesigned Thinkers &#38; Doers blog.
My debut entry declares with gusto that It&#8217;s Time to Abolish &#8220;Click Here to&#8230;&#8221;. It should interest anyone who creates content for the web.
This is not a shift [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-2335" title="Step on Brakes to Stop" src="http://tylersticka.com/wp-content/uploads/steponbrakestostop-150x150.jpg" alt="" width="150" height="150" />Most of you know that I&#8217;ve been a Senior Experience Designer at <a href="http://waggeneredstrom.com/" class="out">Waggener Edstrom</a> since August, and today I began writing for their recently-redesigned <a href="http://blogs.waggeneredstrom.com/thinkers-and-doers" class="out">Thinkers &amp; Doers</a> blog.</p>
<p>My debut entry declares with gusto that <a href="http://blogs.waggeneredstrom.com/thinkers-and-doers/2010/01/its-time-to-abolish-click-here-to/" class="out">It&#8217;s Time to Abolish &#8220;Click Here to&#8230;&#8221;</a>. It should interest anyone who creates content for the web.</p>
<p>This is not a shift away from my journal here at good ol&#8217; Me Dot Com, but merely a chance to speak to a subtly different audience. If anything, it&#8217;s re-invigorated my passion for writing in general.</p>
<p>I encourage you to read <a href="http://blogs.waggeneredstrom.com/thinkers-and-doers/2010/01/its-time-to-abolish-click-here-to/" class="out">the post</a> and, if you dig it, let me know.</p>
<p>Oh, and stop writing &#8220;click here.&#8221; Sound good?</p>
<img src="http://feeds.feedburner.com/~r/tylersticka/~4/k2EKuCFQBAU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tylersticka.com/2010/01/abolishing-click-here-on-thinkers-doers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tylersticka.com/2010/01/abolishing-click-here-on-thinkers-doers/</feedburner:origLink></item>
		<item>
		<title>Ring in the new year with a little PHP</title>
		<link>http://feedproxy.google.com/~r/tylersticka/~3/cZuSnjxXCY4/</link>
		<comments>http://tylersticka.com/2010/01/ring-in-the-new-year-with-a-little-php/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 05:15:01 +0000</pubDate>
		<dc:creator>Tyler Sticka</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://tylersticka.com/?p=2324</guid>
		<description><![CDATA[I think this has happened to every web developer at one point or another: You complete and launch a site, revel in it&#8217;s glory, January 1st passes you by and suddenly, embarrassingly, the site proudly proclaims the previous year in the footer!
Ack! How&#8217;d you miss that? So unprofessional.
Many of you have probably used the following [...]]]></description>
			<content:encoded><![CDATA[<p>I think this has happened to every web developer at one point or another: You complete and launch a site, revel in it&#8217;s glory, January 1st passes you by and suddenly, embarrassingly, the site proudly proclaims the previous year in the footer!</p>
<p>Ack! How&#8217;d you miss that? <em>So</em> unprofessional.</p>
<p>Many of you have probably used the following solution to combat this troublesome oversight:</p>
<pre><code>&lt;?php echo date('Y'); ?&gt;</code></pre>
<p>In PHP, this displays the current year. But what if you want to intelligently display a span of time, regardless if your project launched this year or five years ago?</p>
<p>Here&#8217;s a fun little function my good friend (and ace developer) <a href="http://twitter.com/peterwooley" class="out">Peter Wooley</a> showed me some time ago:</p>
<pre><code>function copyrightYear($start,$between='-',$echo=true) {
	$current = date('Y');
	$result = $current &gt; $start ? $start.$between.$current : $start;
	if ($echo) echo $result;
	return $result;
}</code></pre>
<p>The first attribute (<code>$start</code>) is the launch date of your site, the first year of the date span. <code>$between</code> is what goes between the start and end year (when applicable). If you set <code>$echo</code> to false, the value will be returned instead of echoed.</p>
<p>So if your site debuted in 2009, you would use the following:</p>
<pre><code>&lt;?php copyrightYear(2009); ?&gt;</code></pre>
<p>If the year is 2009, it will echo &#8216;2009&#8242;. In 2010, it will echo &#8216;2009-2010&#8242;.</p>
<p>Now sit back and rest easy <em>next</em> New Year&#8217;s Day knowing your footers shan&#8217;t go out of date again!</p>
<img src="http://feeds.feedburner.com/~r/tylersticka/~4/cZuSnjxXCY4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tylersticka.com/2010/01/ring-in-the-new-year-with-a-little-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://tylersticka.com/2010/01/ring-in-the-new-year-with-a-little-php/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.427 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-03-08 02:20:55 -->
