<?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>Rich Hauck's Blog &#187; webdesign</title>
	<atom:link href="http://blog.mandalatv.net/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mandalatv.net</link>
	<description></description>
	<lastBuildDate>Thu, 08 Jul 2010 14:18:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Going HTML 5 Over Flash</title>
		<link>http://blog.mandalatv.net/2010/06/going-html-5-over-flash/</link>
		<comments>http://blog.mandalatv.net/2010/06/going-html-5-over-flash/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 08:41:46 +0000</pubDate>
		<dc:creator>Rich Hauck</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.mandalatv.net/?p=859</guid>
		<description><![CDATA[Designing my own portfolio has always been one of the most time-consuming projects because I, like any other designer, become my own harshest critic. While I still intend to redo my company&#8217;s site in Flash, I decided in the meantime to redo my portfolio in an iPhone-friendly format by using only HTML, CSS, and Javascript [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.mandalatv.net/wp-content/uploads/2010/06/hauck-interactive.jpg"><img class="size-full wp-image-873 aligncenter" title="hauck-interactive" src="http://blog.mandalatv.net/wp-content/uploads/2010/06/hauck-interactive.jpg" alt="" width="600" height="380" /></a></p>
<p>Designing my own portfolio has always been one of the most time-consuming projects because I, like any other designer, become my own harshest critic.</p>
<p>While I still intend to redo my company&#8217;s site in Flash, I decided in the meantime to redo my portfolio in an iPhone-friendly format by using only HTML, CSS, and Javascript (For those that might have come across my guest post on <a href="http://www.fathomstudio.com/#news">Fathom&#8217;s blog</a>, I&#8217;m sure this must come off as an about-face). I didn&#8217;t really use HTML 5-specific tags like &lt;header&gt;, &lt;footer&gt;, etc., since my site needed to remain accessible, and I relied heavily on <a href="http://www.jquery.com/">JQuery</a> for the animation. Up until this point, I&#8217;ve read the complaints for and against both Flash and HTML 5, but this gave me the opportunity to guinea pig my own site and experience the issues firsthand.</p>
<h2>Development Environment Differences</h2>
<p>The first big difference I noticed was the work environment. JavaScript wasn&#8217;t really intended as an object-oriented language, and the work process felt much messier than building the site in classes (ala ActionScript). Furthermore, since many of the divs were hidden on page load, I felt that I wasn&#8217;t able to quickly preview elements during development. I ended up relying heavily on the Firefox <a href="http://getfirebug.com/">Firebug</a> plugin and going back-and-forth between the browser and the code.</p>
<h2>Search Engine Accessibility</h2>
<p>From a search engine standpoint, the differences between the two technologies feels somewhat of a wash. Both sites would have a page title and meta tags, so there&#8217;s no big advantage for either here. On the plus side for HTML, absolutely everything can be interpreted by all major search engines. Had I done the site in Flash, only Google would have been able to partially parse the SWF file. <span class="strike">On the other hand, I couldn&#8217;t take advantage of separate URL paths or page titles like I could with Flash (with the addition of the <a href="http://www.asual.com/swfaddress/">SWFAddress</a>). the only way I could have done this would be to force a page refresh&#8211;an interruption in the experience I really didn&#8217;t want to occur.</span> Actually, Asual has the <a href="http://www.asual.com/jquery/address/">JQuery Address</a> plug-in, which does the same thing as SWFAddress. Thanks @kweerious.</p>
<h2>Font Options</h2>
<p><a href="http://blog.mandalatv.net/wp-content/uploads/2010/06/metalled-with.jpg"><img class="aligncenter size-full wp-image-874" title="metalled-with" src="http://blog.mandalatv.net/wp-content/uploads/2010/06/metalled-with.jpg" alt="" width="600" height="366" /></a><br />
The decision of HTML over Flash heavily impacted my font choices as well, since HTML pages are reliant upon client machines having the font installed. Flash, on the other hand, can simply embed the font. Granted, there&#8217;s alternatives, like <a href="http://www.mikeindustries.com/blog/sifr">SiFR</a> and <a href="http://cufon.shoqolate.com/generate/">Cufón</a>, however, I didn&#8217;t want to use Flash replacement text and don&#8217;t like the fact that Cufón doesn&#8217;t allow for text selection (neither of these options, by the way, seem to be intended for extensive font use).</p>
<p>Another option is to use the <a href="http://www.alistapart.com/articles/cssatten">@font-face</a> call with the <a href="http://en.wikipedia.org/wiki/Web_Open_Font_Format">Web Open Font Format</a> (WOFF). This format places font files on the server for the HTML page to reference, and is currently the frontrunner for inclusion in the HTML 5 spec. WOFF is certainly the most elegant (see the recently-designed splash page I completed for metalledwith for example), however, because the font files are available on the server, the file can easily be downloaded illegally. Not wanting to infringe upon the license I have for Futura and not wanting to make all of the text into images, i simply used a safe system font (Trebuchet).</p>
<h2>Browser Inconsistencies</h2>
<p>A good front end designer ensures that their Website renders consistently across a variety of browsers. In the case of Flash, there&#8217;s really no need to test, as the plug-in ensures consistency across browsers and platforms. In my case, Internet Explorer protested to using transparent PNG files, so it required additional code. Furthermore, while the code I used to generate an image reflection is proven to work in IE7, it didn&#8217;t want to work with how I built the reflection into the JQuery <a href="http://jquery.malsup.com/cycle/">Cycle</a> plug-in. I&#8217;m sure there would have been a way to make it work, but frankly, I didn&#8217;t feel it was worth the time&#8211;besides, IE users should already be accustomed to limitations.</p>
<h2>Performance</h2>
<p>Performance-wise, I was a little surprised to see that the animations were sluggish on the iPad and iPhone in comparison to their desktop counterparts. Granted, JQuery isn&#8217;t the fastest JavaScript framework on the market, but I was expecting at least slightly better performance compared to how Flash performs on Android devices. Overall, I suppose it only reinforced my agreement with Apple that intense animations in Flash would yield poor performance on their mobile devices.</p>
<p>My biggest issue with the end product, though, is how the site downloads. I&#8217;ve seen it before&#8211;JavaScript-based sites can&#8217;t preload animations or elements well, and therefore animations start playing before all of the elements have downloaded. The reason for this is because the HTML page attempts to download all of the elements contained in it&#8211;even if they are set not to display.</p>
<p>I&#8217;m a firm believer that you don&#8217;t tax the user with downloading content they haven&#8217;t requested, so I tried implementing the <a href="http://www.appelsiini.net/projects/lazyload">LazyLoader</a> plug-in to ease the site download. I honestly don&#8217;t have complete faith in this plugin, but fortunately, the site is relatively small. Regardless, Flash currently blows HTML out of the water with its programmatic ability to queue and download content without requiring a page refresh.</p>
<h2>Conclusion</h2>
<p>I&#8217;m sure that the development tools will continue to evolve and I&#8217;m not claiming that my implementation of the all the various plug-ins was constructed in perfect harmony (anyone out there, please correct me if there&#8217;s a better approach). In the end, this endeavor opened my eyes to some of the things JavaScript can replace Flash for, but HTML 5&#8242;s inability to create a length presentation (without a page refresh or complete asset download) makes me believe that Flash isn&#8217;t going anywhere for a long time.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mandalatv.net/2010/06/going-html-5-over-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hauck Interactive Is No Longer Hauck Within Reach!</title>
		<link>http://blog.mandalatv.net/2010/06/hauck-interactive-is-no-longer-hauck-within-reach/</link>
		<comments>http://blog.mandalatv.net/2010/06/hauck-interactive-is-no-longer-hauck-within-reach/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 08:33:17 +0000</pubDate>
		<dc:creator>Rich Hauck</dc:creator>
				<category><![CDATA[advertising]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.mandalatv.net/?p=860</guid>
		<description><![CDATA[It&#8217;s inevitable; every designer does it at some point in their career. They create something. They efficiently solve their design problem. Then, they later realize it looks almost exactly like something someone else hsd already done. Such was the case when I came up with the logo for my company in 2006. Yes, it was [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.mandalatv.net/wp-content/uploads/2010/06/hii-new-logo.gif"><img class="size-full wp-image-861 aligncenter" title="hii-new-logo" src="http://blog.mandalatv.net/wp-content/uploads/2010/06/hii-new-logo.gif" alt="" width="550" height="261" /></a></p>
<p>It&#8217;s inevitable; every designer does it at some point in their career.</p>
<p>They create something. They efficiently solve their design problem. Then, they later realize it looks <em>almost exactly</em> like something someone else hsd already done. Such was the case when I came up with the logo for my company in 2006. Yes, it was just different enough to serve its purpose, though a few industry friends always made it a point to never let me forget that I&#8217;m not in the high-end furniture industry.</p>
<p>Four years and several dead ends later, I&#8217;m proud to have a more unique nameplate, I was a little sad to push the Trebuchet font out the door for the far more common Futura, but overall, i think the new logo is a big improvement over the original.</p>
<p>Now, I just have to find out what to do with all those outdated business cards . . .</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mandalatv.net/2010/06/hauck-interactive-is-no-longer-hauck-within-reach/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CPAUG Meeting: Photoshop Actions and CS5 Suite Raffle</title>
		<link>http://blog.mandalatv.net/2010/06/cpaug-meeting-photoshop-actions-and-cs5-suite-raffle/</link>
		<comments>http://blog.mandalatv.net/2010/06/cpaug-meeting-photoshop-actions-and-cs5-suite-raffle/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 17:08:51 +0000</pubDate>
		<dc:creator>Rich Hauck</dc:creator>
				<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.mandalatv.net/?p=856</guid>
		<description><![CDATA[I&#8217;ll be hosting a discussion on using Photoshop to improve one&#8217;s pictures (I like the word discussion since class is out for the semester). What&#8217;s probably bigger incentive for everyone is that there will be a raffle for a copy of Photoshop CS5. Event details here.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be hosting a discussion on using Photoshop to improve one&#8217;s pictures (I like the word discussion since class is out for the semester). What&#8217;s probably bigger incentive for everyone is that there will be a raffle for a copy of Photoshop CS5.</p>
<p><a href="http://cenpennaug.blogspot.com/2010/06/june-meeting-photoshop-actions-and-cs5.html">Event details here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mandalatv.net/2010/06/cpaug-meeting-photoshop-actions-and-cs5-suite-raffle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Weave is now Firefox Sync</title>
		<link>http://blog.mandalatv.net/2010/05/firefox-weave-is-now-firefox-sync/</link>
		<comments>http://blog.mandalatv.net/2010/05/firefox-weave-is-now-firefox-sync/#comments</comments>
		<pubDate>Thu, 20 May 2010 17:22:01 +0000</pubDate>
		<dc:creator>Rich Hauck</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[weave]]></category>

		<guid isPermaLink="false">http://blog.mandalatv.net/?p=853</guid>
		<description><![CDATA[http://dknite.wordpress.com/2010/05/19/firefox-sync-1-3-is-coming/ The name&#8217;s not as cool, but it definitely is more concise. Weave&#8217;s something I&#8217;ve been watching since the Nokia N900 came out, and I&#8217;m hoping it finds its way into the Webkit/iPhone OS world. UPDATE: Looks like I&#8217;m getting my wish.]]></description>
			<content:encoded><![CDATA[<p><a href="http://dknite.wordpress.com/2010/05/19/firefox-sync-1-3-is-coming/">http://dknite.wordpress.com/2010/05/19/firefox-sync-1-3-is-coming/</a></p>
<p>The name&#8217;s not as cool, but it definitely is more concise. Weave&#8217;s something I&#8217;ve been watching since the Nokia N900 came out, and I&#8217;m hoping it finds its way into the Webkit/iPhone OS world.</p>
<p>UPDATE: <a href="http://blog.mozilla.com/blog/2010/05/26/firefox-home-coming-soon-to-the-iphone/">Looks like I&#8217;m getting my wish</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mandalatv.net/2010/05/firefox-weave-is-now-firefox-sync/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why HTML 5 isn&#8217;t ready for prime time</title>
		<link>http://blog.mandalatv.net/2010/05/why-html-5-isnt-ready-for-prime-time/</link>
		<comments>http://blog.mandalatv.net/2010/05/why-html-5-isnt-ready-for-prime-time/#comments</comments>
		<pubDate>Tue, 04 May 2010 15:32:55 +0000</pubDate>
		<dc:creator>Rich Hauck</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[ipad apple flash html5]]></category>

		<guid isPermaLink="false">http://blog.mandalatv.net/?p=845</guid>
		<description><![CDATA[I recently had a client inquire about the feasibility of replacing some of their Flash content with HTML 5 (they&#8217;re a very large organization and require supporting a variety of browsers). Of course, the inquiry spawned from the iPad. Here&#8217;s an excerpt of my response&#8211;I thought it&#8217;d be valuable to share. Universal browser support is [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had a client inquire about the feasibility of replacing some of their Flash content with HTML 5 (they&#8217;re a very large organization and require supporting a variety of browsers). Of course, the inquiry spawned from the iPad. Here&#8217;s an excerpt of my response&#8211;I thought it&#8217;d be valuable to share.</p>
<ol>
<li><strong>Universal browser support is not here yet.</strong><br />
You&#8217;ll notice that Internet Explorer versions 6,7, and 8 support nearly nothing of HTML 5. You&#8217;ll also notice that these tests don&#8217;t account for older versions of Firefox or Safari, neither of which are likely to provide as much support as their current editions.</p>
<p><a href="http://www.deepbluesky.com/blog/-/browser-support-for-css3-and-html5_72/">http://www.deepbluesky.com/blog/-/browser-support-for-css3-and-html5_72/</a><br />
<a href="http://findmebyip.com/litmus/#target-selector">http://findmebyip.com/litmus/#target-selector</a><br />
<a href="http://html5test.com/">http://html5test.com/</a></li>
<li><strong>HTML 5 Tools don&#8217;t yet exist, and the community is still young.</strong><br />
HTML editing software hasn&#8217;t been updated/created to accurately write and validate HTML 5. Granted, HTML 5 can be written by hand, but the workaround to unilaterally support modern browsers has not been fully discovered or documented.</li>
<li><strong style="text-decoration: line-through;">HTML 5 will not be finalized until 2022.</strong> <strong>See comments below.</strong><br />
I have no doubt that browsers will continually progress with supporting the market&#8217;s ongoing &#8220;definition&#8221; of HTML5, however, since the W3C&#8217;s (the governing organization behind the Web) current roadmap doesn&#8217;t finalize the spec until 2022, much can change in that time. Based on past history, HTML 5 could drastically change&#8211;or even be completely abandoned.</p>
<p><a href="http://www.webmonkey.com/2008/09/html_5_won_t_be_ready_until_2022dot_yes__2022dot/">http://www.webmonkey.com/2008/09/html_5_won_t_be_ready_until_2022dot_yes__2022dot/</a><br />
<a href="http://blogs.techrepublic.com.com/programming-and-development/?p=718">http://blogs.techrepublic.com.com/programming-and-development/?p=718</a></li>
</ol>
<p>Personally, I own an iPad, and am excited by the potential of HTML 5, and while I do a significant amount of Flash development, I look forward to HTML 5 replacing certain tasks that Flash Player had to fill. That said, HTML 5 is not yet a valid solution for mainstream Websites, especially when <a href="http://www.adobe.com/products/player_census/flashplayer/version_penetration.html">Flash Player runs on ~99% of Web browsers</a> (including mobile devices besides Apple&#8217;s). Also, while I agree with many of the points on <a href="http://www.apple.com/hotnews/thoughts-on-flash/">Steve Jobs’ open letter</a>, Apple’s financial incentives of eliminating Flash and Java games to emphasize the iTunes store are hard to overlook.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mandalatv.net/2010/05/why-html-5-isnt-ready-for-prime-time/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tufte Seminar</title>
		<link>http://blog.mandalatv.net/2010/03/tufte-seminar/</link>
		<comments>http://blog.mandalatv.net/2010/03/tufte-seminar/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 06:18:14 +0000</pubDate>
		<dc:creator>Rich Hauck</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.mandalatv.net/?p=817</guid>
		<description><![CDATA[I recently attended Presenting Data and Information, a day-long seminar by Edward Tufte. I suppose, for starters, that I&#8217;m rather surprised at how few people know who Tufte is. Of course, the ones that do recognize the name know him for his recent White House appointment, his distaste for PowerPoint, and his invention of Sparklines. [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_818" class="wp-caption alignright" style="width: 260px"><a href="http://blog.mandalatv.net/wp-content/uploads/2010/03/tufte-box.jpg"><img class="size-full wp-image-818 " title="tufte-box" src="http://blog.mandalatv.net/wp-content/uploads/2010/03/tufte-box.jpg" alt="Tufte Box" width="250" height="311" /></a><p class="wp-caption-text">They give you a handy box for the four hardcover books you get with attending the seminar. </p></div>
<p>I recently attended <a href="http://www.edwardtufte.com/tufte/courses">Presenting Data and Information</a>, a day-long seminar by Edward Tufte.</p>
<p>I suppose, for starters, that I&#8217;m rather surprised at how few people know who Tufte is. Of course, the ones that do recognize the name know him for his recent <a href="http://www.whitehouse.gov/the-press-office/president-obama-announces-more-key-administration-posts-3510">White House appointment</a>, his <a href="http://www.boingboing.net/2010/03/20/militant-arm-of-the.html">distaste for PowerPoint</a>, and his invention of <a href="http://en.wikipedia.org/wiki/Sparkline">Sparklines</a>.</p>
<p>A common question I get from people after attending the seminar is &#8220;Was it worth it?&#8221; At $380 a pop, it&#8217;s definitely not cheap (add another $170 in train tickets for me on a sleep-deprived Friday), and judging from the number of attendees (estimating 400 at the NYC seminar), I wouldn&#8217;t be surprised if the pulled in a cozy six figures after expenses.</p>
<p>Sugarcoating aside, it&#8217;s a scheme to sell books (You receive four of Tufte&#8217;s books). Thing is, they&#8217;re four excellent books, and Tufte utilizes them as high-resolution graphics for his presentation. As soon as you sit down, you&#8217;re given a reading assignment&#8211;several pages and a few chapters&#8211;prior to the presentation beginning.</p>
<p>During the presentation, I found myself often looking up, expecting slide show images to accompany the topics, but often found that wasn&#8217;t the case. The epiphany for me, however, was the reminder that people do learn differently, and that a handout prior to any presentation allows students to absorb the material in a variety of ways. Tufte&#8217;s comment that people can read faster than you can speak somehow reminded me of my grad school days studying neurolinguistics.</p>
<div id="attachment_819" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.mandalatv.net/wp-content/uploads/2010/03/tufte.jpg"><img class="size-full wp-image-819" title="tufte" src="http://blog.mandalatv.net/wp-content/uploads/2010/03/tufte.jpg" alt="" width="300" height="349" /></a><p class="wp-caption-text">I can&#39;t say I&#39;ve ever had a bookcover autographed before.</p></div>
<p>I also collected a few new favorite quotes&#8211; &#8220;<em>No matter how beautiful your interface is, it&#8217;d be more beautiful if there were less of it</em>&#8221; and &#8220;<em>Design is a resource problem, not a creative act</em>&#8220;.</p>
<p>So, was it worth it? I&#8217;d say yes, though I must admit that I attended based on reputation and never picked up any of his books before. Of course, all of the material is pretty much in the books, anyway, So buying the books by themselves offers a much cheaper alternative.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mandalatv.net/2010/03/tufte-seminar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad? iPhone? The Future of Adobe Flash (from a Flash Designer/Developer)</title>
		<link>http://blog.mandalatv.net/2010/02/ipad-iphone-the-future-of-adobe-flash-from-a-flash-designerdeveloper/</link>
		<comments>http://blog.mandalatv.net/2010/02/ipad-iphone-the-future-of-adobe-flash-from-a-flash-designerdeveloper/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 07:38:31 +0000</pubDate>
		<dc:creator>Rich Hauck</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.mandalatv.net/?p=807</guid>
		<description><![CDATA[There&#8217;s been a lot of talk regarding the future of Adobe Flash thanks to the blockade generated by Apple on the iPad and iPhone. It&#8217;s been covered extensively by the news media and blogs, but I figured as a Flash developer/designer, I&#8217;d chime in. To paint a picture of my stance, I will say that: [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been a lot of talk regarding the future of Adobe Flash thanks to the blockade generated by Apple on the iPad and iPhone. It&#8217;s been covered extensively by the news media and blogs, but I figured as a Flash developer/designer, I&#8217;d chime in.</p>
<p>To paint a picture of my stance, I will say that:</p>
<ol>
<li><strong>I hope open-source <a href="http://www.theora.org/">OGG</a> format replaces Flash video.</strong> Flash has standardized a ubiquitous video format for the Web, and it&#8217;s wonderful evolution we can&#8217;t deny. Gone are the days of multiple encodings for Quicktime, Real Player, and Windows Media, and I doubt supervision excluding a for-profit company would have succeeded. That said, I think the Web has evolved, and the fact that <a href="http://news.zdnet.com/2100-9595_22-318208.html">HTML 5 has dropped OGG</a> as the definitive format is a politically-driven mistake. We, as the creators of the Web, should be embracing an open video format.
</li>
<li style="text-align: left;"><strong>I&#8217;m not an Adobe fanboy. </strong>Flash provides a format of expression unlike any other, and while I admit that Flash work is my bread-and-butter (and that I&#8217;m coincidentally wearing Adobe-branded apparel as I write this), I recognize Adobe is a company that answers to its shareholders. Frankly, their <a href="http://www.openscreenproject.org/">Open Screen Project</a> and claims of <a href="http://blogs.adobe.com/flashplatform/2010/01/enabling_innovation_isnt_magic.html">Flash being an &#8220;open&#8221; platform</a> register strictly as propaganda to me, and I felt the need to point out this stance because of the opinions I&#8217;ve encountered at some Adobe user groups.
</li>
<li><strong>I don&#8217;t believe HTML 5 is the Messiah. </strong>I support universal formats that ensure consistency between browsers. However, formats, while well-intentioned, don&#8217;t always reach the Web&#8211;they are ultimately dictated by the market. If that wasn&#8217;t the case, we&#8217;d all be discussing XHTML 2.0 instead of HTML 5 and be visiting .MOBI sites instead of using Webkit on our phones.</li>
<li><strong>Flash isn&#8217;t going anywhere.</strong> Flash is used for more than just the Web&#8211;it&#8217;s great for standalone applications, and its games can&#8217;t be successfully emulated with HTML + JS. Furthermore, it allows for data without browser refreshing, and provides a more media-rich interactive experience. Regarding standards, see #3.</li>
<li><strong>I want to see Flash Player on the iPad and the iPhone, but I believe this responsibility falls to Adobe.</strong></li>
</ol>
<p>I think something many in the Flash community fail to realize is that <strong>Flash Player doesn&#8217;t play well on mobile</strong>, and it&#8217;s not exclusive to Apple products. I know firsthand, as I considered purchasing a Nokia N900 as a result of Apple&#8217;s embargo. I checked out Flash Player 9.4 on the N900&#8242;s browser while stopping in at NYC&#8217;s Nokia Store, and the performance was nothing short of atrocious. YouTube videos were so choppy that they weren&#8217;t viewable, and simple Flash sites crashed the browser.</p>
<p>I should mention that the N900 is powered by the same ARM Cortex-A8 processor as the iPhone 3GS (the 3GS is underclocked to 600 Mhz). Sure, there are videos of Google&#8217;s Nexus One playing Flash Player 10.1, however, I wouldn&#8217;t be surprised if the Nexus One&#8217;s Snapdragon 1 GHz processor is concealing Flash Player&#8217;s inherent memory issues.</p>
<p>Reinforcement for this argument is <a href="http://lifehacker.com/5458511/firefox-mobile-10-rc3-available-for-maemo-disables-flash-by-default">Mozilla&#8217;s decision to drop Flash Player support</a> for their mobile Firefox browser just prior to launch. I&#8217;m still amazed that this hasn&#8217;t garnered as much press as the iPad announcement.</p>
<p>This brings me back to the title of this topic&#8211;the Future of Adobe Flash.</p>
<p>Personally, I wonder if Adobe might have lost its way. Their community support is excellent, and I use their industry-standard tools every day, however, they&#8217;ve seemingly become obsessed with supporting a proprietary platform instead of focusing on building excellent tools, and their evangelists seem to point outward for blame rather than looking within. As I mentioned in #5, I want to see Flash Player arrive on all of Apple&#8217;s products, however, I think this falls upon Adobe improving the player&#8217;s performance. As for my predictions:</p>
<ol>
<li><strong>Flash Player goes truly open source and somehow gets included in the HTML 5 spec.</strong> Sadly, this is unlikely, as Adobe licenses proprietary video codecs for HE-AAC and h.264. More importantly, it&#8217;d likely affect Adobe&#8217;s bottom line.</li>
<li><strong>Adobe publishes an API for Actionscript that supports gestures.</strong> <a href="http://gestureworks.com/">Gestureworks</a> is already providing this, and Adobe&#8217;s <a href="http://www.adobe.com/devnet/flash/articles/multitouch_gestures.html">not far behind</a>. Personally, I&#8217;m holding my breath for official Flash SWF support.</li>
<li><strong>Adobe starts building applications that publish content for HTML 5 and mobile platforms.</strong></li>
</ol>
<p>Obviously, #1 and #2 are less predictions than #3, but I think it&#8217;d be refreshing for Adobe to begin exploring these new mobile outlets as opportunities to provide new software. Can you imagine a software that publishes iPhone, Blackberry, and MeeGo apps&#8211;without doing translations from Flash? Now that would truly be interesting . . .</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mandalatv.net/2010/02/ipad-iphone-the-future-of-adobe-flash-from-a-flash-designerdeveloper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BarCamp Harrisburg 2 Announced</title>
		<link>http://blog.mandalatv.net/2009/11/barcamp-harrisburg-2-announced/</link>
		<comments>http://blog.mandalatv.net/2009/11/barcamp-harrisburg-2-announced/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 17:17:43 +0000</pubDate>
		<dc:creator>Rich Hauck</dc:creator>
				<category><![CDATA[Harrisburg]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.mandalatv.net/?p=773</guid>
		<description><![CDATA[I&#8217;m a little late to post this, but BarCamp Harrisburg 2 has been officially announced. It&#8217;ll be on Saturday, April 10, 2010 from 9am to 5pm at Harrisburg University. Attendance is free&#8211;just make sure to bring topics to discuss! I was hesitant to begin promoting this so far in advance, but there&#8217;s already been a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-774" title="barcamphbg2" src="http://blog.mandalatv.net/wp-content/uploads/2009/11/barcamphbg2.gif" alt="barcamphbg2" width="650" height="234" /></p>
<p>I&#8217;m a little late to post this, but <a href="http://barcamphbg.org">BarCamp Harrisburg 2</a> has been officially announced. It&#8217;ll be on Saturday, April 10, 2010 from 9am to 5pm at Harrisburg University. Attendance is free&#8211;just make sure to bring topics to discuss! I was hesitant to begin promoting this so far in advance, but there&#8217;s already been a decent amount of <a href="http://barcamphbg.eventbrite.com/">signups</a>, plus we already have more sponsors at this point than last year (to be announced soon).</p>
<p>Hopefully, the weather will be better this time around (for those not in attendance, BarCampHarrisburg 1 was held in January during an ice storm). The venue has changed, too&#8211;<a href="http://www.harrisburgu.net/">Harrisburg University</a> has a tremendous facility, and the wireless and projector hiccups from last year will won&#8217;t be an issue here. Frankly, it&#8217;s awesome that they&#8217;ve been so open and enthusiastic about hosting the event.</p>
<p>Also new is the Website and registration process. Gone is the confusing Wiki signup, as we&#8217;re now using <a href="http://barcamphbg.eventbrite.com/">Eventbrite</a> (I&#8217;ll confess to cherry-picking some of the features of <a href="http://barcampphilly.org/">BarCampPhilly&#8217;s Website</a> approach, as it&#8217;s one of the few examples of Websites hosted outside of <a href="http://www.barcamp.org/">barcamp.org</a>).</p>
<p>A common question asked by potential attendees unfamiliar with the format is whether or not they will be forced to present. The answer is no. Personally, though, I hope we have so many attendees that it&#8217;d be impossible for everyone to present. <span style="text-decoration: line-through;">Even if</span> Especially if you&#8217;re not in the tech or education industry (but have interest in it or the social aspects of the Internet) I recommend you check <a href="http://barcamphbg.org/">BarCamp Harrisburg 2</a> out.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mandalatv.net/2009/11/barcamp-harrisburg-2-announced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BarCamp Philly</title>
		<link>http://blog.mandalatv.net/2009/11/barcamp-philly/</link>
		<comments>http://blog.mandalatv.net/2009/11/barcamp-philly/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 07:09:08 +0000</pubDate>
		<dc:creator>Rich Hauck</dc:creator>
				<category><![CDATA[travel]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.mandalatv.net/?p=776</guid>
		<description><![CDATA[This past weekend I made it out to BarCamp Philly, and as you can see from the photo above, the turnout was 200-300 people&#8211;pretty good. Little did I know that WordCamp NYC was going on at the same time, but I think I made the right choice. I&#8217;ve attended so many BarCamps now that I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-777" title="barcampphilly" src="http://blog.mandalatv.net/wp-content/uploads/2009/11/barcampphilly.jpg" alt="barcampphilly" width="650" height="488" /></p>
<p>This past weekend I made it out to <a href="http://www.barcampphilly.org/">BarCamp Philly</a>, and as you can see from the photo above, the turnout was 200-300 people&#8211;pretty good. Little did I know that <a href="http://2009.newyork.wordcamp.org/">WordCamp NYC</a> was going on at the same time, but I think I made the right choice.</p>
<p>I&#8217;ve attended so many BarCamps now that I feel like an aficionado; you start to immediately recognize what works and what doesn&#8217;t at these events. Fortunately, Philly&#8217;s version of this unconference was well-sponsored and well-organized. They had a Website, pins, t-shirts, an <a href="http://s.barcampphilly.org/">online/mobile schedule</a>, a photographer, and a great turnout. Here&#8217;s a hit list of what I liked and what I didn&#8217;t like:</p>
<p><img title="pamphlet" src="http://blog.mandalatv.net/wp-content/uploads/2009/11/pamphlet.jpg" alt="pamphlet" width="650" height="488" /></p>
<h2>Liked:</h2>
<ol>
<li><a href="http://opensourcecupcakes.com/">Open Source Cupcakes</a>. &#8216;Nuff said.</li>
<li><a href="http://blog.carlism.org/">Carl Leiby</a>&#8216;s online schedule. I&#8217;m against developing iPhone-centric sites, but this certainly came in handy.</li>
<li>The pamphlets (above). It included a handy grid for you to write out what you wanted to attend. Definitely a nice touch.</li>
<li>The diversity of attendees. There were attendees from education, medical, and insurance sectors&#8211;not just Web developers, which made it refreshing for conversations.</li>
</ol>
<h2>Disliked:</h2>
<ol>
<li>The venue layout (Nothing against UArts whatsoever). Hosting a BarCamp on multiple floors of a building proved a bit disorienting&#8211;and wasn&#8217;t conducive to camper interaction out of sessions. Of course, free space is what it is.</li>
<li>The logo. Bring back the <a href="http://stellargirl.typepad.com/.a/6a00d8341d9d2553ef01053593c089970c-pi">Liberty Bell</a>, or at least make the logo Philly-centric!</li>
<li>No breaks between sessions. This was a scheduling boo-boo, but I think the organizers caught onto it. They also didn&#8217;t schedule time for a closing session, but that was promptly remedied.</li>
<li>Name tag holders. They&#8217;re a personal pet peeve, I suppose. They&#8217;re a one-time use item, yet I have some odd sense of guilt that comes over me when I think about throwing them away.</li>
</ol>
<p>This could reflect my session choices, but it seemed as if all of the sessions I attended were hosted by people interested in discussing a topic, but not necessarily qualified in leading it (by their own admissions). Granted, there&#8217;s nothing wrong with this approach, but I prefer that happy balance of workshop and discussion.</p>
<p>Overall, it was pretty cool. I&#8217;m starting to get the sense that BarCamps are essentially those great discussions you had in college that you don&#8217;t get post-academia. After all, once you&#8217;re out, how often do you place yourself in a room with a group of diverse and intelligent strangers to discuss a common topic?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mandalatv.net/2009/11/barcamp-philly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Events, Etc. Website Launches</title>
		<link>http://blog.mandalatv.net/2009/10/events-etc-website-launches/</link>
		<comments>http://blog.mandalatv.net/2009/10/events-etc-website-launches/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 01:23:14 +0000</pubDate>
		<dc:creator>Rich Hauck</dc:creator>
				<category><![CDATA[food and drink]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.mandalatv.net/?p=744</guid>
		<description><![CDATA[Hauck Interactive recently launched a new Website for Events, Etc., the catering company from the folks over at the Hershey Pantry. The new site features some of my photography&#8211;and had me running out to all of the really nice wedding venues in Hershey and Dauphin county. Check it out.]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-746" title="_MG_5203" src="http://blog.mandalatv.net/wp-content/uploads/2009/10/MG_5203.jpg" alt="_MG_5203" width="650" height="433" /></p>
<p>Hauck Interactive recently launched a new Website for <a href="http://www.events-etc.com">Events, Etc.</a>, the catering company from the folks over at the <a href="http://www.hersheypantry.com">Hershey Pantry</a>. The new site features some of my photography&#8211;and had me running out to all of the really nice wedding venues in Hershey and Dauphin county. <a href="http://www.events-etc.com">Check it out</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mandalatv.net/2009/10/events-etc-website-launches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
