<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.2" -->
<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/"
	>

<channel>
	<title>com :: subsonicparticles :: blog</title>
	<link>http://www.subsonicparticles.com/blog</link>
	<description>bits n pieces</description>
	<pubDate>Thu, 01 Mar 2007 15:06:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>
	<language>en</language>
			<item>
		<title>Some sugar for the OX</title>
		<link>http://www.subsonicparticles.com/blog/2007/03/01/some-sugar-for-the-ox/</link>
		<comments>http://www.subsonicparticles.com/blog/2007/03/01/some-sugar-for-the-ox/#comments</comments>
		<pubDate>Thu, 01 Mar 2007 15:02:42 +0000</pubDate>
		<dc:creator>paul</dc:creator>
		
	<category>link</category>
	<category>interaction design</category>
		<guid isPermaLink="false">http://www.subsonicparticles.com/blog/2007/03/01/some-sugar-for-the-ox/</guid>
		<description><![CDATA[I came across this article  about the user interface of the OX aka $100 laptop or OLPC (one laptop per child).
They&#39;ve lost the traditional desktop metaphore and went for a network oriented one:
There are also icons representing the three different modes&#8212;home, friends, and neighborhood&#8212;that are integral to the &#34;zoom&#34; metaphor. In home mode, a [...]]]></description>
			<content:encoded><![CDATA[<p>I came across <a href="http://www.businessweek.com/innovate/content/mar2007/id20070301_063165.htm" title="The Face of the $100 Laptop" target="_blank">this article</a>  about the user interface of the OX aka $100 laptop or OLPC (one laptop per child).</p>
<p>They&#39;ve lost the traditional desktop metaphore and went for a network oriented one:</p>
<blockquote><p>There are also icons representing the three different modes&mdash;home, friends, and neighborhood&mdash;that are integral to the &quot;zoom&quot; metaphor. In home mode, a user sees the XO Man, and, when she clicks on the icon to launch an activity, the icon for that activity pops into a gray ring encircling the XO Man. In friends mode, she sees icons representing her circle of friends, each identified by nickname and chosen color scheme. Next to the friends are icons depicting the activities in which they&#39;re engaged.</p>
<p>If several friends are sharing an activity&mdash;say, working on a school report together&mdash;they are pictured clustered around the appropriate icon. Our user can ask to be invited into a group activity or can start one of her own and invite others to join. The neighborhood mode gives a broader view of all of the individuals and clusters of friends on the network at the moment and the activities they&#39;re involved in.</p>
</blockquote>
<p>Sounds very interesting and I&#39;m curious to see the first test results!</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.subsonicparticles.com/blog/2007/03/01/some-sugar-for-the-ox/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Lightroom is 40% Lua</title>
		<link>http://www.subsonicparticles.com/blog/2007/02/20/lightroom-is-40-lua/</link>
		<comments>http://www.subsonicparticles.com/blog/2007/02/20/lightroom-is-40-lua/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 06:59:12 +0000</pubDate>
		<dc:creator>paul</dc:creator>
		
	<category>photography</category>
	<category>programming</category>
		<guid isPermaLink="false">http://www.subsonicparticles.com/blog/2007/02/20/lightroom-is-40-lua/</guid>
		<description><![CDATA[I came across an interview , trough JD on EP , about the development of Adobe Lightroom and how it was being programmed largely in a language called Lua.
So what we do with Lua is essentially all of the application logic from running the UI to managing what we actually do in the database. Pretty [...]]]></description>
			<content:encoded><![CDATA[<p>I came across an <a href="http://since1968.com/article/190/mark-hamburg-interview-adobe-photoshop-lightroom-part-2-of-2" target="_blank">interview</a> , trough <a href="http://weblogs.macromedia.com/jd/archives/2007/02/myfeedz_cluster.cfm" target="_blank">JD on EP</a> , about the development of Adobe Lightroom and how it was being programmed largely in a language called <a href="http://www.lua.org/" target="_blank">Lua</a>.</p>
<blockquote><p>So what we do with Lua is essentially all of the application logic from running the UI to managing what we actually do in the database. Pretty much every piece of code in the app that could be described as making decisions or implementing features is in Lua until you get down to the raw processing, which is in C++. The database engine is in C; the interface to the OS is in C++ and Objective C as appropriate to platform. But most of the actually interesting material in the app beyond the core database code (which is <a href="http://www.sqlite.org/">SQLite</a>) and the raw processing code (which is essentially <a href="http://www.adobe.com/products/photoshop/cameraraw.html">Adobe Camera Raw</a>) is all in Lua.</p>
</blockquote>
<p>I find this pretty amazing considering Lua isn&#39;t really object oriented and is dynamically typed. It looks to me like a primitive version of Actionscript 1. Of course a good editor can do a lot, but still I don&#39;t understand why the choose to program 40% of an application like lightroom in a language that seems makes it so easy to introduce typos in your code.</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.subsonicparticles.com/blog/2007/02/20/lightroom-is-40-lua/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Verlet integration</title>
		<link>http://www.subsonicparticles.com/blog/2006/07/04/verlet-integration/</link>
		<comments>http://www.subsonicparticles.com/blog/2006/07/04/verlet-integration/#comments</comments>
		<pubDate>Tue, 04 Jul 2006 07:41:19 +0000</pubDate>
		<dc:creator>paul</dc:creator>
		
	<category>flash</category>
		<guid isPermaLink="false">http://www.subsonicparticles.com/blog/2006/07/04/verlet-integration/</guid>
		<description><![CDATA[While browsing the internets I came across this flash dynamics example.
 
I&#39;ve seen these things before but never quite understood how it works. Here&#39;s some more info that&#39;s worth looking into I think (haven&#39;t read it yet  ):

Advanced Character Physics
Verlet Integration (Wikipedia)

 
I guess you&#39;d use this if you wanted to make games like [...]]]></description>
			<content:encoded><![CDATA[<p>While browsing the internets I came across <a href="http://bunnyherolabs.com/tech/?p=41" title="verlet test" target="_blank">this flash dynamics example</a>.</p>
<p> 
<p>I&#39;ve seen these things before but never quite understood how it works. Here&#39;s some more info that&#39;s worth looking into I think (haven&#39;t read it yet <img src='http://www.subsonicparticles.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ):</p>
<ul>
<li><a href="http://www.teknikus.dk/tj/gdc2001.htm"><span>Advanced Character Physics</span></a></li>
<li><a href="http://en.wikipedia.org/wiki/Verlet_integration"><span>Verlet Integration (Wikipedia)</span></a></li>
</ul>
<p> 
<p>I guess you&#39;d use this if you wanted to make <a href="http://www.teagames.com/">games like these</a>:</p>
<ul>
<li><a href="http://www.teagames.com/games/tgmotocross/play.php">TG Motocross</a></li>
<li><a href="http://www.teagames.com/games/orangutwang/play.php">Orangutwang</a></li>
<li><a href="http://www.teagames.com/games/blastbilly/play.php">Blast Billy</a></li>
<li><a href="http://www.teagames.com/games/bmxhighlands/play.php">BMX Highlands</a></li>
</ul>
<p> 
<p>Looks like I&#39;ve got some coding to do sometime soon ^^</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.subsonicparticles.com/blog/2006/07/04/verlet-integration/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Shneiderman rules</title>
		<link>http://www.subsonicparticles.com/blog/2006/06/01/shneidermans-eight-golden-rules/</link>
		<comments>http://www.subsonicparticles.com/blog/2006/06/01/shneidermans-eight-golden-rules/#comments</comments>
		<pubDate>Thu, 01 Jun 2006 07:10:02 +0000</pubDate>
		<dc:creator>paul</dc:creator>
		
	<category>link</category>
	<category>interaction design</category>
		<guid isPermaLink="false">http://www.subsonicparticles.com/blog/2006/06/01/shneidermans-eight-golden-rules/</guid>
		<description><![CDATA[Design principles are a wonderful thing. They enable the inexperienced to lever the knowledge of the experienced. However it becomes a confusing place when every expert is starting his or her own list of &#39;rules&#39;. For future reference I&#39;ll list a couple of them here:

Shneiderman&#39;s &#34;Eight Golden Rules of Dialog Design&#34;:



Strive for consistency.
Enable frequent users [...]]]></description>
			<content:encoded><![CDATA[<p>Design principles are a wonderful thing. They enable the inexperienced to lever the knowledge of the experienced. However it becomes a confusing place when every expert is starting his or her own list of &#39;rules&#39;. For future reference I&#39;ll list a couple of them here:</p>
<ul>
<li>Shneiderman&#39;s &quot;Eight Golden Rules of Dialog Design&quot;:</li>
</ul>
<ol>
<ol>
<li>Strive for consistency.</li>
<li>Enable frequent users to use shortcuts.</li>
<li>Offer informative feedback.</li>
<li>Design dialog to yield closure.</li>
<li>Offer simple error handling.</li>
<li>Permit easy reversal of actions.</li>
<li>Support internal locus of control.</li>
<li>Reduce short-term memory load.</li>
</ol>
</ol>
<ul>
<li>Bill Scott&#39;s &quot;<a href="http://looksgoodworkswell.blogspot.com/2006/01/nine-tips-for-designing-rich-internet.html" title="Nine Tips for Designing Rich Internet Applications" target="_blank">Nine Tips for Designing Rich Internet Applications</a> &quot;:</li>
</ul>
<ol>
<ol>
<li>Make it directly interactive</li>
<li>Make it inviting</li>
<li>Use lightweight, in-context popups instead of page transitions where possible</li>
<li>Use real-estate creatively</li>
<li>Cross page boundaries reluctantly</li>
<li>Create a light footprint</li>
<li>Think of your interactions as storyboards</li>
<li>Communicate transitions</li>
<li>Think in objects</li>
</ol>
</ol>
<ul>
<li>Jakob Nielsen&#39;s &quot;<a href="http://www.useit.com/papers/heuristic/heuristic_list.html" title="Ten Usability Heuristics" target="_blank">Ten Usability Heuristics</a>&quot;:</li>
</ul>
<ol>
<ol>
<li>Visibility of system status</li>
<li>Match between system and the real world</li>
<li>User control and freedom</li>
<li>Consistency and standards</li>
<li>Error prevention</li>
<li>Recognition rather than recall</li>
<li>Flexibility and efficiency of use</li>
<li>Aesthetic and minimalist design</li>
<li>Help users recognize, diagnose, and recover from errors</li>
<li>Help and documentation</li>
</ol>
</ol>
<ul>
<li>Don Norman&#39;s &quot;<a href="http://www-static.cc.gatech.edu/classes/cs6751_97_fall/projects/follow_me/exam/alexandre.html" title="Design principles" target="_blank">Design principles</a> &quot;:</li>
</ul>
<ol>
<ol>
<li>Visibility</li>
<li>Feedback</li>
<li>Constraints</li>
<li>Mapping</li>
<li>Consistency</li>
<li>Affordances</li>
</ol>
</ol>
<p>To top it off I found <a href="http://www-static.cc.gatech.edu/classes/cs6751_97_winter/Topics/design-princ/" title="design rules">another listing of several design rules</a> . They present a set of design principles that are from several sources, and should comprise a complete set of guidelines.</p>
<blockquote><p><strong>1.&nbsp;&nbsp; Use simple and natural dialog in user&#39;s language<br /> </strong>Match user&#39;s task in natural way. Avoid jargon, and techno-speak. Present exactly information users need, not too little or too much.</p>
<p><strong>2.&nbsp;&nbsp; Strive for consistency</strong><br /> Sequences, actions, commands, layouts and terminology should be consistent so as to make the interface more predictable.</p>
<p><strong>3.&nbsp;&nbsp; Provide informative feedback</strong><br /> Continuously inform user what is happening. It is most important to provide feedback on substantive and infrequent actions.</p>
<p><strong>4.&nbsp;&nbsp; Minimize user&#39;s memory load<br /> </strong>Human mind can recognize better than recall. Provide enough information so that the user can take action without recalling a lot.</p>
<p><strong>5.&nbsp;&nbsp; Permit easy reversal of actions (undo)</strong><br /> To reduce anxiety and encourage experiments.</p>
<p><strong>6.&nbsp;&nbsp; Provide clearly marked exits<br /> </strong>So that the user won&#39;t be trapped on any level of the applications.</p>
<p><strong>7.&nbsp;&nbsp; Provide shortcuts<br /> </strong>Enable frequent users to perform often used operations quickly.</p>
<p><strong>8.&nbsp;&nbsp; Support internal locus of control<br /> </strong>Put user in charge, not computer.</p>
<p><strong>9.&nbsp;&nbsp; Handle errors smoothly and positively<br /> </strong>Make the system robust and provide easy to use recovery measures.</p>
<p><strong>10.&nbsp;&nbsp; Provide useful help and document<br /> </strong>Users should be able to get sufficient help information when they get confused.<br /> &nbsp;</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRSS>http://www.subsonicparticles.com/blog/2006/06/01/shneidermans-eight-golden-rules/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>use raw?</title>
		<link>http://www.subsonicparticles.com/blog/2006/05/22/use-raw/</link>
		<comments>http://www.subsonicparticles.com/blog/2006/05/22/use-raw/#comments</comments>
		<pubDate>Mon, 22 May 2006 07:14:21 +0000</pubDate>
		<dc:creator>paul</dc:creator>
		
	<category>photography</category>
		<guid isPermaLink="false">http://www.subsonicparticles.com/blog/2006/05/22/use-raw/</guid>
		<description><![CDATA[Came across this article  from Dave Shea about the advantages of shooting in raw.
&#34;Let&#8217;s say you have a digital camera that shoots in Raw format. However, you&#8217;ve been using JPG files ever since you got it, due to a sense of familiarity, simply not having the time to figure out Raw, or because you [...]]]></description>
			<content:encoded><![CDATA[<p>Came across <a href="http://mezzoblue.com/archives/2006/05/16/raw/" title="raw" target="_blank">this article</a>  from Dave Shea about the advantages of shooting in raw.</p>
<p><em>&quot;Let&rsquo;s say you have a digital camera that shoots in <a href="http://en.wikipedia.org/wiki/RAW_image_format">Raw format</a>. However, you&rsquo;ve been using JPG files ever since you got it, due to a sense of familiarity, simply not having the time to figure out Raw, or because you don&rsquo;t like the larger file sizes. Sound familiar?&quot;</em></p>
<p>Well I guess that&#39;s me <img src='http://www.subsonicparticles.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> &nbsp;</p>
<p>Before I would seriously consider it I need</p>
<ul>
<li>a bigger CF card,</li>
<li>a bigger HD/ better pc <img src='http://www.subsonicparticles.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  and</li>
<li><a href="http://labs.adobe.com/technologies/lightroom/" title="adobe lightroom" target="_blank">Adobe Lightroom</a>  for windows! <img src='http://www.subsonicparticles.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  </li>
</ul>
<p>But perhaps I can do some testing in the meantime of course&#8230; </p>
]]></content:encoded>
			<wfw:commentRSS>http://www.subsonicparticles.com/blog/2006/05/22/use-raw/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>The Glass Wall</title>
		<link>http://www.subsonicparticles.com/blog/2006/05/16/the-glass-wall/</link>
		<comments>http://www.subsonicparticles.com/blog/2006/05/16/the-glass-wall/#comments</comments>
		<pubDate>Tue, 16 May 2006 20:37:45 +0000</pubDate>
		<dc:creator>paul</dc:creator>
		
	<category>link</category>
	<category>interaction design</category>
		<guid isPermaLink="false">http://www.subsonicparticles.com/blog/2006/05/16/the-glass-wall/</guid>
		<description><![CDATA[An extremely use full and interesting post  about the redesign of the BBC web page in 2002. The whole process has been captured into a document called &#39;The Glass Wall&#39;.
 
]]></description>
			<content:encoded><![CDATA[<p>An extremely use full and interesting <a href="http://open.bbc.co.uk/reboot/blog/2006/04/a_brief_history_of_bbccouk.html" title="A brief history of bbc.co.uk" target="_blank">post</a>  about the redesign of the BBC web page in 2002. The whole process has been captured into a document called <a href="http://homepage.mac.com/eyedropper/docs/glasswall.pdf" title="glasswall.pdf">&#39;The Glass Wall&#39;</a>.</p>
<p><img src="/blog/wp-content/images/bbc_2002homepage.jpg" alt="2002 bbc redesign" title="2002 bbc redesign" /> </p>
]]></content:encoded>
			<wfw:commentRSS>http://www.subsonicparticles.com/blog/2006/05/16/the-glass-wall/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.subsonicparticles.com/blog/2006/05/14/hello-world/</link>
		<comments>http://www.subsonicparticles.com/blog/2006/05/14/hello-world/#comments</comments>
		<pubDate>Sun, 14 May 2006 18:09:08 +0000</pubDate>
		<dc:creator>paul</dc:creator>
		
	<category>general</category>
		<guid isPermaLink="false">http://www.subsonicparticles.com/blog/2006/05/14/hello-world/</guid>
		<description><![CDATA[Who0t! First post!
This is the start of my blog. It&#39;s supposed to become my home on the Internet. The goal of this blog is to become a permanent log of all things interesting I come across everyday. Although I do this primarily for myself,if you have something to say please do so via the comments [...]]]></description>
			<content:encoded><![CDATA[<p>Who0t! First post!</p>
<p>This is the start of my blog. It&#39;s supposed to become my home on the Internet. The goal of this blog is to become a permanent log of all things interesting I come across everyday. Although I do this primarily for myself,if you have something to say please do so via the comments or by <a href="/blog/contact/">mail</a>.</p>
<p>ps. WordPress and all of the available plugins are simply the best thing I&#39;ve ever seen! It totally rocks! <img src='http://www.subsonicparticles.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> &nbsp;</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.subsonicparticles.com/blog/2006/05/14/hello-world/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
