<?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>It's a Web Log.</title>
	<atom:link href="http://chrismalven.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://chrismalven.com/blog</link>
	<description>The bloggish ramblings of Chris Malven</description>
	<lastBuildDate>Sun, 11 Sep 2011 18:05:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Don&#8217;t use jQuery .data() for Animated Properties</title>
		<link>http://chrismalven.com/blog/?p=75</link>
		<comments>http://chrismalven.com/blog/?p=75#comments</comments>
		<pubDate>Sun, 11 Sep 2011 18:04:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chrismalven.com/blog/?p=75</guid>
		<description><![CDATA[While working on a recent Javascript/CSS3 web animation, I decided to experiment with several ways of storing the properties that were being updated on several dozen objects 60 times a second (position, rotation, and scale on the x, y, and z). Because I was using jQuery in the animation, I decided to first try using [...]]]></description>
			<content:encoded><![CDATA[<p>While working on a recent Javascript/CSS3 web animation, I decided to experiment with several ways of storing the properties that were being updated on several dozen objects 60 times a second (position, rotation, and scale on the x, y, and z).</p>
<p>Because I was using jQuery in the animation, I decided to first try using jQuery&#8217;s .data() utility, which allows you to attach custom data to any jQuery object, by doing something like the following <code>$('.item').data('rotation-x', 30);</code></p>
<p>Next, I tried creating each animated item as a Javascript object, and storing the values in the object itself, such as <code>item.rotation = {x: 30, y: 45, z: 90}</code></p>
<p>To more accurately test the performance difference between these two approaches, I used <a title="jsPerf" href="http://jsperf.com/jquery-data-vs-object-property/2" target="_blank">jsPerf</a>, a fantastic Javascript performance-testing website.</p>
<p>The results were pretty staggering. Storing and updating the animated properties through a Javascript Object is literally 100% faster than updating them using jQuery .data(), performing more than 100 million operations/second versus less than 100 thousand.</p>
<p>In fact, the difference is so great that you can&#8217;t even visually represent it on a bar chart. And it shows in the actual animation as well. Most experienced Javascript developers probably won&#8217;t be surprised by this, but beginners may find this helpful. I, for one, won&#8217;t be using .data() anymore when performance is at all critical.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismalven.com/blog/?feed=rss2&#038;p=75</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WebKit Animation Performance</title>
		<link>http://chrismalven.com/blog/?p=40</link>
		<comments>http://chrismalven.com/blog/?p=40#comments</comments>
		<pubDate>Sat, 17 Apr 2010 03:55:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chrismalven.com/blog/?p=40</guid>
		<description><![CDATA[Lately I have been dabbling in web animations created using the WebKit Animation and WebKit Transition CSS properties. For the uninitiated, WebKit is the engine that powers Apple&#8217;s Safari web browser and Google&#8217;s Chrome browser. The Animation and Transition properties are the WebKit team&#8217;s proposed properties for creating rich online animation using only CSS. More [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I have been dabbling in web animations created using the <em>WebKit Animation</em> and WebKit <em>Transition CSS</em> properties. For the uninitiated, WebKit is the engine that powers Apple&#8217;s Safari web browser and Google&#8217;s Chrome browser. The <em>Animation</em> and <em>Transition</em> properties are the WebKit team&#8217;s proposed properties for creating rich online animation using only CSS.</p>
<p><strong>More information on using these CSS Properties is available in the </strong><a href="http://developer.apple.com/safari/library/documentation/InternetWeb/Conceptual/SafariVisualEffectsProgGuide/Introduction/Introduction.html" target="_blank"><strong>Safari Reference Library</strong></a><strong>.</strong></p>
<p>The benefits of animating this way are: no reliance on Flash or other browser plugins, exists in the CSS presentation layer so everything degrades nicely for browsers that don&#8217;t know how to handle it, and extremely simple syntax for attaching animations to things like adding a class or hovering an element.</p>
<p>That&#8217;s all well and good, of course. But this means nothing if performance is terrible. I have read complaints that WebKit animation is as much of a CPU hog as Flash, so I decided to do some simple experimentation.</p>
<p><span id="more-40"></span></p>
<p>The following example contains 70 DIV elements. Each DIV is styled using CSS to give it a Width and Height of 100, and one of two gradients. No images, everything is created using CSS. Every 1.5 seconds, a Javascript call runs through each of the 70 DIVs, giving each one a random new X and Y position, as well as a random Rotation. WebKit CSS transitions automatically perform the animation over 1 second every time any properties change. <strong>To view the example, you must be using Safari 4 or one of the WebKit nightly builds (the latest version of Google Chrome may work, as well).</strong></p>
<p><strong><a href="http://chrismalven.com/css_transitions/"><img class="alignnone size-full wp-image-42" title="View the Example" src="http://chrismalven.com/blog/wp-content/uploads/2010/04/view_example.jpg" alt="" width="445" height="282" /></a></strong></p>
<p>I was very impressed by the fluidity of the animation. I never would&#8217;ve expected this kind of full-window performance out of a browser. Surely, this must be chewing up the CPU like nobody&#8217;s business, right? Go ahead, open your Activity Monitor. On my machine, it sits around 20.5 percent CPU use. That&#8217;s definitely not negligible, but it sits far below the near 100% CPU use that the Flash Plugin often requires. Maybe someone else could tell me whether 20% CPU is acceptable or not?</p>
<p>So then I decided to try it on an iPad and iPhone. In both cases, nearly flawless performance. Just a smidge slower than on a computer, but still very good. Unfortunately, CSS Animation and Transitions are only available via WebKit, but similar implementations will be available in FireFox 3.7, I believe. And in Internet Explorer&#8230; never ever.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismalven.com/blog/?feed=rss2&#038;p=40</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Apple, Flash, and the Modern Web</title>
		<link>http://chrismalven.com/blog/?p=27</link>
		<comments>http://chrismalven.com/blog/?p=27#comments</comments>
		<pubDate>Sun, 11 Apr 2010 21:21:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chrismalven.com/blog/?p=27</guid>
		<description><![CDATA[I am a loyal Apple fan, and have been for almost 15 years. I am also an interactive designer, who occasionally employs Flash to create online content. Lately these two, seemingly separate aspects of my life are beginning to clash, originally sparked by the lack of Flash on the iPhone, later amplified by Apple&#8217;s anti-Flash [...]]]></description>
			<content:encoded><![CDATA[<p>I am a loyal Apple fan, and have been for almost 15 years. I am also an interactive designer, who occasionally employs Flash to create online content. Lately these two, seemingly separate aspects of my life are beginning to clash, originally sparked by the lack of Flash on the iPhone, later amplified by Apple&#8217;s anti-Flash comments regarding the iPad, and now coming to a head with <a title="Apple's recent update to the Terms for it's App Store" href="http://daringfireball.net/2010/04/why_apple_changed_section_331">Apple&#8217;s recent update to the Terms for it&#8217;s App Store</a>, which forbids Apps built using non-approved compilers, such as the iPhone compiler in Adobe&#8217;s upcoming Flash CS5.</p>
<p><span id="more-27"></span></p>
<p>It is difficult to overstate how much this last move hurts Adobe. Not only does it mean that their cornerstone feature in Flash CS5 is dead-on-arrival, but that their Flash &amp; Flex customers still have no way into the most popular app ecoysystem of today.</p>
<p>Since the beginning of the Apple-Flash controversary, two hard-minded camps have developed. On the one hand, standards-minded developers and designers have applauded Apple&#8217;s brazen attack on Flash. They usually cite the poor performance and instability of Flash, as well as the ability for upcoming HTML5 and CSS3 technologies to replace Flash interactivity, as key reasons why the internet would be better off without Flash.</p>
<p>In the other camp, we have designers and developers who use Flash to bring high-end interactive experiences to 95% of internet users, without any of the meticulous cross-browser debugging required for typical, standards-based websites. In addition, Flash makes a level of interactivity experience possible that will remain unmatched by even the newest standard technologies for the next 5 years (give or take, depending on how quickly Internet Explorer catches up).</p>
<p>I agree with points on both sides.</p>
<p>Let me first set aside pragmatics: Flash is capable of creating the richest, most expressive, creative experiences available on a computer. No question about it. If I were to create a list of every website I&#8217;ve ever visited that created a profound, emotional, lasting experience for me, every single one would have been created in Flash. It&#8217;s so easy to decry Flash as an easy way to create superfluous visual nonsense. But take a hard look at the good things Flash has done, as well as the bad. Are there plenty of terrible Flash websites? Yes. Are there plenty of terrible websites, in general? Of course.</p>
<p>Flash simply makes things possible online that are not possible otherwise. Not just difficult. Not just slightly less interactive. Flat-out impossible. It&#8217;s sad that, as far as web technology has come, we have no way to create the highest-end interactive content without one specific tool made by one specific company. A web without Flash is, in an interactive and visual sense, a web with fewer possible experiences.</p>
<p>Now my reasoned, rational response to Flash: Adobe has done a fairly poor job of managing Flash. I&#8217;m quite experienced with Flash and Actionscript, and I can say that I really enjoy Actionscript as a language, but almost every other aspect of Flash implementation is crap. The actual Flash IDE is a mess, and Adobe has done very little to improve it since acquiring it from Macromedia back in 2005. It is buggy, crash-prone, and the interface is a curious combination of current Adobe app conventions and Macromedia hold-overs.</p>
<p>The real issue, though, is the bugginess and instability of the Flash plugin. At best, Flash uses far too many CPU resources and runs terribly on Mac OS X and Linux compared to Windows. At worst, Flash has been cited as the number one cause of browser crashes. If Adobe knew what was good for them, they would focus every resource they have on transforming Flash into a lean, performance-focused technology. Perhaps they have been doing so, but it doesn&#8217;t show as much as it should. Adobe, we don&#8217;t need a Deco Tool, for God&#8217;s sake. Fix the IDE. Fix the plugin.</p>
<p>I always weigh the pros and cons before using Flash for any reason, on any site. Now, with Apple distancing themselves from Flash entirely, I have another reason not to use Flash. I don&#8217;t think, as many do, that Flash is going to go away any time soon, but as Apple&#8217;s market-share grows, and as other browsers begin to adopt the high-end features currently only available on WebKit, Flash use will continue to shrink. I can&#8217;t help but feel a little bit sad thinking of a world where technology once again limits our creativity, but if that is what the collective web wants, I will do my best to comply.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismalven.com/blog/?feed=rss2&#038;p=27</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code can be pretty, too</title>
		<link>http://chrismalven.com/blog/?p=20</link>
		<comments>http://chrismalven.com/blog/?p=20#comments</comments>
		<pubDate>Sun, 03 Feb 2008 01:13:31 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chrismalven.com/blog/?p=20</guid>
		<description><![CDATA[I really love computer-generated art, mostly because I believe that it clearly demonstrates the inherent beauty in mathmatics, and therefore nature and all of the universe. The Complexification Gallery of Computation is home to a series of small computer programs that you can watch create incredible things before your eyes. If you only view one [...]]]></description>
			<content:encoded><![CDATA[<p>I really love computer-generated art, mostly because I believe that it clearly demonstrates the inherent beauty in mathmatics, and therefore nature and all of the universe. </p>
<p>The <a href="http://www.complexification.net/gallery/">Complexification Gallery of Computation</a> is home to a series of small computer programs that you can watch create incredible things before your eyes. If you only view one of these, I think it should be <a href="http://www.complexification.net/gallery/machines/substrate/index.php">Substrate</a> by J. Tarbell. Oh, oh, it&#8217;s magic.</p>
<p><a href="http://www.complexification.net/gallery/">Complexification Gallery of Computation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chrismalven.com/blog/?feed=rss2&#038;p=20</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Did you know Edward Tufte has a blog?</title>
		<link>http://chrismalven.com/blog/?p=19</link>
		<comments>http://chrismalven.com/blog/?p=19#comments</comments>
		<pubDate>Sun, 03 Feb 2008 01:06:32 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chrismalven.com/blog/?p=19</guid>
		<description><![CDATA[Me neither! Wow, what a treasure-trove of design nerd information. If you don&#8217;t know who Ed Tufte is, shame on you. Seriously, though&#8230; His writings on information design, including The Visual Display of Quantitative Information, Beautiful Evidence, and Envisioning Information (my favorite) are some of the most insightful and beautiful books on the subject that [...]]]></description>
			<content:encoded><![CDATA[<p>Me neither! Wow, what a treasure-trove of design nerd information. If you don&#8217;t know who Ed Tufte is, shame on you. Seriously, though&#8230; His writings on information design, including <a href="http://www.amazon.com/Visual-Display-Quantitative-Information-2nd/dp/0961392142/ref=pd_bbs_sr_1?ie=UTF8&#038;s=books&#038;qid=1201999852&#038;sr=8-1">The Visual Display of Quantitative Information</a>, <a href="http://www.amazon.com/Beautiful-Evidence-Edward-R-Tufte/dp/0961392177/ref=pd_bbs_sr_2?ie=UTF8&#038;s=books&#038;qid=1201999852&#038;sr=8-2">Beautiful Evidence</a>, and <a href="http://www.amazon.com/Envisioning-Information-Edward-R-Tufte/dp/0961392118/ref=pd_bbs_sr_3?ie=UTF8&#038;s=books&#038;qid=1201999852&#038;sr=8-3">Envisioning Information</a> (my favorite) are some of the most insightful and beautiful books on the subject that I&#8217;ve come acrosss.</p>
<p>He has always seemed to me like the type of guy who is really keen on the theory of information design, but not very much in touch with how information design is playing a role in modern technology. How wrong I am. Tufte&#8217;s &#8220;blog&#8221; recently featured a short post critiquing info design in the iPhone, and even features a movie (narrated by his info-ness).</p>
<p>The movie is short but sweet. Tufte emphasizes many of the insightful decisions made by the iPhone design team, and points out some possible areas of improvement. He correctly states that while most of the iPhone screens are pretty to look at (stocks, weather, etc.), they waste a fair amount of space, and lack any means of digging deeper. Right on, Tufte. Great quote: <em>&#8220;Clutter and overload are not attributes of information, they are failures of design.&#8221;</em></p>
<p><a href="http://www.edwardtufte.com/bboard/q-and-a?topic_id=1">Ask E.T. (Tufte&#8217;s Blog)</a></p>
<p><a href="http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=00036T&#038;topic_id=1&#038;topic=Ask+E%2eT%2e">Interface Design and the iPhone</a>, by Edward Tufte</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismalven.com/blog/?feed=rss2&#038;p=19</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I Hate about Leopard</title>
		<link>http://chrismalven.com/blog/?p=9</link>
		<comments>http://chrismalven.com/blog/?p=9#comments</comments>
		<pubDate>Sat, 27 Oct 2007 04:30:28 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://chrismalven.com/blog/?p=9</guid>
		<description><![CDATA[Of course, as an avid computer (mac) user and designer, I pre-ordered a copy of Apple&#8217;s newest operating system, 10.5 Leopard. There have been very few times in the past when I have first used a new Apple product and wasn&#8217;t immediately impressed with the design and usability. My first few minutes with Leopard, however, [...]]]></description>
			<content:encoded><![CDATA[<p>Of course, as an avid computer (mac) user and designer, I pre-ordered a copy of Apple&#8217;s newest operating system, 10.5 Leopard. There have been very few times in the past when I have first used a new Apple product and wasn&#8217;t immediately impressed with the design and usability. My first few minutes with Leopard, however, were filled almost entirely with disgust. So far, I have found a handful of things that will lower my productivity, and very little that will increase it. Some of these things are only small design details, but they add up to a very lackluster experience, and a step backwards in design for Apple.</p>
<p><span id="more-9"></span></p>
<p>In no particular order, here are the chief offenders:</p>
<p><strong>1. The Dock</strong></p>
<p>The thing I expected to hate the most is the thing I hate the least. The reflective shelf dock. The dock itself isn&#8217;t absolutely awful, but components of it definitely are. For one, the automatic shadows that Apple has chosen to add to every dock icon do feel weird and unnatural in all but a few cases. The small arrows under each running dock application have been replaced by small glowing lights, which look bad and are much more difficult to see than their predecessors. The line that divided the documents/folders area of the dock from the applications has been replaced by a weird cross-walk looking thing that looks rediculous and unrefined, especially for an Apple product.</p>
<p>If you don&#8217;t like the new appearance of the dock and/or you like the dock on the sides of your screen, the dock appearance changes. However, the appearance doesn&#8217;t change to the old dock appearance, but instead becomes a &#8220;new&#8221; dock style with a dark background and white outline. There is nothing redeeming about this new side-dock style. It is flat-out ugly.</p>
<p>The <em>biggest</em> problem with the new dock is the new <em>Stacks</em> feature. In Tiger, when you dropped a folder onto the dock, you could then navigate through the folder by right-clicking (or control-clicking) on it. This was a great feature, and made finding files often much faster than using the Finder. This functionality is completely gone, replaced by Stacks. Let&#8217;s say I wanted to put my Application folder on the dock, so I had convenient access to all of the applications that I don&#8217;t use often enough to just drop on the dock. This used to be a great idea. Now, with Stacks, it doesn&#8217;t work. The &#8220;fan&#8221; mode of stacks can only display 12 items at a time, and the &#8220;grid&#8221; view makes it very difficult to pick out one icon in a sea of thirty.</p>
<p>Why, oh why, did you do this to me, Apple? Why couldn&#8217;t you at least let me set folders to be viewed the old (better) way? WHY??? I consider this criminal negligence on the part of Apple&#8217;s interface designers, and I won&#8217;t be a happy camper until this problem is addressed.</p>
<p><strong>4. Window Styling</strong></p>
<p>Apple has finally found a consistent window style to stick with across all windows and applications. Unfortunately, it isn&#8217;t that great of an appearance. Now I&#8217;m going to start nit-picking (as if I wasn&#8217;t already).</p>
<p>The new window style is solid grey with a vertical gradient to it. I think it might be a little too dark, but if it weren&#8217;t for other issues it might be okay.</p>
<p>Now, this next item just seems like laziness. The small icons at the top of the finder window are too close to the bottom of the window frame. They should have about the same amount of space under them as they do from the top of them to the close/max/min buttons. This is certainly being picky, but every detail should be considered, and this comes across as sloppiness.</p>
<p>Even the close, minimize, and maximize buttons in the top left of every window are uglier. They have have an overly-glossy appearance that I&#8217;ll probably get used to eventually, but for now I don&#8217;t like it.</p>
<p><strong>2. The Menu Bar</strong></p>
<p>This one will be much shorter than the last. The new semi-translucent menu bar was a horrible idea from the beginning. Almost everyone outside of Apple realized this all along. I&#8217;m sure Apple received hundreds of emails from developers and Apple-enthusiasts begging them not to do this, or at least give us the option to turn it off. They ignored all of that. The new menu bar does not look better, it looks worse and makes it more difficult to read. Period.</p>
<p><strong>3. New Icons</strong></p>
<p>For a long time, Apple&#8217;s icon design has been some of the best in the industry. Somehow, however, this previous success has been derailed with Leopard. The new folder icons are flat, boring, and in the case of the User Folder standards (Desktop, Documents, Library, Movies, etc) now don&#8217;t tell you anything about the folder contents unless you view them at an unusually huge size. Again, I&#8217;m not sure how this happened. Maybe Apple is slipping, maybe all of their talented GUI designers were busy with something else?</p>
<p>The other icon that I&#8217;ve noticed a major change to is the &#8220;System Preferences&#8221; icon of dock fame. I loved the old system prefs icon, wish they would&#8217;ve kept it forever. I hate the new icon. Hate it. It might look fine on an iPhone where that is the predominant icon style, but not in my OS.</p>
<p>These are just the things I found in the first 20 minutes of using the new OS, and they frustrated me enough that I actually stopped playing with Leopard to write this post. Granted, some of these things I&#8217;ll get used to. Some of them I won&#8217;t, and they&#8217;ll continue to drive me crazy until either Apple fixes the problem (unlikely) or a third-party developer does (incredibly likely). However, I don&#8217;t believe that we should have to rely on third-party developers to fix Apple&#8217;s mistakes, and I believe that Leopard represents more user interface mistakes than any previous version of OS X. I&#8217;m sure I&#8217;m not alone on this.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismalven.com/blog/?feed=rss2&#038;p=9</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Big Fish</title>
		<link>http://chrismalven.com/blog/?p=7</link>
		<comments>http://chrismalven.com/blog/?p=7#comments</comments>
		<pubDate>Sat, 19 May 2007 18:07:23 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://chrismalven.com/blog/?p=7</guid>
		<description><![CDATA[In my off-time there isn&#8217;t a type of application I use more than a web browser. Not surprisingly, there are a lot of web browsers out there, most of them free. I&#8217;ve used almost all of them enough to know where they stand. What really shocks and frustrates me, though, is how almost every single [...]]]></description>
			<content:encoded><![CDATA[<p>In my off-time there isn&#8217;t a type of application I use more than a web browser. Not surprisingly, there are a lot of web browsers out there, most of them free. I&#8217;ve used almost all of them enough to know where they stand. What really shocks and frustrates me, though, is how almost every single one of them fails to do at least one thing right. Safari has fantastic book-marking and built-in RSS, but lacks in most other areas. Firefox is fantastically customizable, but isn&#8217;t very fast or attractive (on a Mac). I tried Camino for awhile (meh), OmniWeb (great browser, but I&#8217;m not paying for it), Flock (too MySpace generation for me), and Opera (again, I won&#8217;t pay for something I can get for free).</p>
<p>Enter Shiira, a relatively new browser contender that just recently reached it&#8217;s 2.0 release. The Shiira philosophy seems to be, &#8220;What if Apple would have taken Safari the extra mile?&#8221; </p>
<p><span id="more-7"></span><strong>DESIGN</strong><br />
The icons and interface of Shiira are pretty much perfect. Not overwhelming, but not too bland. No brushed-metal interface, but just as carefully thought-out as Safari. My only gripe is the application icon. It succeeds in conveying the Japanese origin of the application, but I really don&#8217;t like having a huge fish sitting in my dock. It&#8217;s really too bad, if they would&#8217;ve just used the &#8220;big wave&#8221; portion of the icon they could&#8217;ve had something unique, appropriate, and attractive. Just saying, is all&#8230;</p>
<p><strong>USABILITY/FEATURES</strong><br />
Shiira incorporates some of best features from other browsers I&#8217;ve used. One of my favorite features in OmniWeb was the &#8220;Page Dock&#8221;, which works the same way as Tabs, but shows a small thumbnail image of the pages instead of just a name. I often have 5+ web pages tabbed at the same time, so having a quick visual presentation of them makes them easier to find and access. </p>
<p>The bookmarking options work just as you would hope and expect. Easy to access, easy to save, and easy to modify. </p>
<p>The &#8220;View Source&#8221; options in Shiira are great for web developers, allowing you to easily view HTML, CSS, or Javascript. </p>
<p>There is even a full-screen mode, which I very rarely use, but could be very useful if you found a great design site that you wanted to immerse your self in fully, or even for setting up a demo machine for your own web site.</p>
<p><strong>THE KILLER</strong><br />
In the two days I have been using the 2.0 build of Shiira, I have had 4 random crashes. In all of my time using any other browser, I can remember very few crashes (and even those were caused by sites with some crazy javascript setup). It is inexcusable for a browser to crash this often for no good reason, especially since Shiira is unable to remember your last browsing session when you open it again. Shiira developers, please fix this. Fast. I love your browser, and if you go just a few steps more to make it more stable, you will have a convert. </p>
<p><a href="http://shiira.jp/en.php">Shiira Macintosh Browser</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chrismalven.com/blog/?feed=rss2&#038;p=7</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On-Purpos, Inc.</title>
		<link>http://chrismalven.com/blog/?p=6</link>
		<comments>http://chrismalven.com/blog/?p=6#comments</comments>
		<pubDate>Sat, 19 May 2007 17:45:55 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://chrismalven.com/blog/?p=6</guid>
		<description><![CDATA[For anyone who not only reads this, but also has some interest in what I&#8217;m doing with my life: For roughly a month now I&#8217;ve been working at the Des Moines, Iowa based design firm On-Purpos. It is truly a great place with great people working there, and they are a relatively young studio with [...]]]></description>
			<content:encoded><![CDATA[<p>For anyone who not only reads this, but also has some interest in what I&#8217;m doing with my life: For roughly a month now I&#8217;ve been working at the Des Moines, Iowa based design firm On-Purpos. It is truly a great place with great people working there, and they are a relatively young studio with a big future. If you&#8217;re interested in what some of the best mid-Iowa design looks like these days, check out the OP web site:</p>
<p><a href="http://onpurpos.com">On-Purpos, Inc</a></p>
<p>For everyone that I&#8217;ve been neglecting while I get settled into my new job, I apologize.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismalven.com/blog/?feed=rss2&#038;p=6</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Donald Norman</title>
		<link>http://chrismalven.com/blog/?p=5</link>
		<comments>http://chrismalven.com/blog/?p=5#comments</comments>
		<pubDate>Tue, 03 Apr 2007 22:14:23 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://chrismalven.com/blog/?p=5</guid>
		<description><![CDATA[I&#8217;m a big fan of Donald Norman&#8217;s writing on usability. During my bi-annual skimming of his website I came across a few interesting tidbits. First of all, it seems that the Nielsen Norman usability group consults for H &#038; R block, and that Donald Norman was involved in the development of H &#038; R Block&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big fan of Donald Norman&#8217;s writing on usability. During my bi-annual skimming of his website I came across a few interesting tidbits. First of all, it seems that the Nielsen Norman usability group consults for H &#038; R block, and that Donald Norman was involved in the development of H &#038; R Block&#8217;s <em>Tango</em> online tax application. Unfourtunately, I&#8217;ve already done my taxes, but the <em>Tango</em> interface seems nice, and is described as being an &#8220;entirely new way to do your taxes&#8221;. If you haven&#8217;t filed yet, and don&#8217;t mind dropping seventy bucks to do your taxes, try it out and let me know what you think. How could tax preparation get any worse?</p>
<p>I also found an interview with Mr. Norman on NPR&#8217;s <em>Radio Times</em>. Its a free podcast, what&#8217;s not to like?</p>
<p><a href="http://www.tangotax.com/">Tango Online Tax Preparation</a></p>
<p><a href="http://www.npr.org/rss/podcast.php?id=510027">NPR Interview with Donald Norman</a></p>
<p><a href="http://www.jnd.org/index.html">Donald Norman Website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chrismalven.com/blog/?feed=rss2&#038;p=5</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open for Business</title>
		<link>http://chrismalven.com/blog/?p=4</link>
		<comments>http://chrismalven.com/blog/?p=4#comments</comments>
		<pubDate>Wed, 28 Feb 2007 21:09:03 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://chrismalven.com/blog/?p=4</guid>
		<description><![CDATA[The new version of chrismalven.com has quietly gone live. I may be making small cosmetic or functional changes over the next few weeks, but don&#8217;t let that worry you.]]></description>
			<content:encoded><![CDATA[<p>The new version of chrismalven.com has quietly gone live. I may be making small cosmetic or functional changes over the next few weeks, but don&#8217;t let that worry you.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismalven.com/blog/?feed=rss2&#038;p=4</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

