<?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>Notes</title>
	<atom:link href="http://valka.info/notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://valka.info/notes</link>
	<description>Notebook of a front-end Web developer &#38; designer Ondřej Válka</description>
	<lastBuildDate>Sat, 05 Jun 2010 11:08:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Podmíněné komentáře efektivně</title>
		<link>http://valka.info/notes/2010/06/podminene-komentare-efektivne/</link>
		<comments>http://valka.info/notes/2010/06/podminene-komentare-efektivne/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 11:00:36 +0000</pubDate>
		<dc:creator>Ondřej Válka</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://valka.info/notes/?p=340</guid>
		<description><![CDATA[Ani ten nejlepší kodér se bez nich neobejde. Podmíněné komentáře jsou mocný nástroj k ladění kaskádových stylů pro Internet Explorer. Rád bych zde předvedl, jak je efektivně používat.
Metoda Obelix
Klasický způsob použití podmíněných komentářů spočívá v připojení zvláštního kaskádového stylu v hlavičce HTML dokumentu (pro libovolné IE, pro vybranou verzi IE, příp. pro skupinu verzí).
&#60;!--[if IE [...]]]></description>
			<content:encoded><![CDATA[<p>Ani ten nejlepší kodér se bez nich neobejde. <a href="http://www1.mraveniste.org/weblog/2006/03/16-msie-komentare.html">Podmíněné komentáře</a> jsou mocný nástroj k ladění kaskádových stylů pro Internet Explorer. Rád bych zde předvedl, jak je <em>efektivně</em> používat.</p>
<h4>Metoda Obelix</h4>
<p>Klasický způsob použití podmíněných komentářů spočívá v připojení zvláštního kaskádového stylu v hlavičce HTML dokumentu (pro libovolné IE, pro vybranou verzi IE, příp. pro skupinu verzí).</p>
<pre>&lt;!--[if IE 7]&gt;
   &lt;link rel=&quot;stylesheet&quot; href=&quot;<strong>ie7.css</strong>&quot; media=&quot;screen&quot;&gt;
&lt;![endif]--&gt;
&lt;!--[if lte IE 6]&gt;
   &lt;link rel=&quot;stylesheet&quot; href=&quot;<strong>ie6.css</strong>&quot; media=&quot;screen&quot;&gt;
&lt;![endif]--&gt;</pre>
<h4>Metoda Asterix</h4>
<p>Pojďme to nyní zkusit trochu jinak. Na tento způsob jsem narazil kdysi kdesi. Popsán je také v <a href="http://reference.sitepoint.com/css/conditionalcomments#usernotes">SitePoint CSS Reference</a>.</p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html&gt;
     &lt;head&gt;
          &lt;meta charset=&quot;UTF-8&quot;&gt;
          &lt;title&gt;Podmíněné komentáře efektivně&lt;/title&gt;
     &lt;/head&gt;
     &lt;!--[if IE 6]&gt;&lt;body <strong>id=&quot;ie6&quot;</strong> class=&quot;ie non-ie7 non-ie8&quot;&gt;&lt;![endif]--&gt;
     &lt;!--[if IE 7]&gt;&lt;body <strong>id=&quot;ie7&quot;</strong> class=&quot;ie non-ie6 non-ie8&quot;&gt;&lt;![endif]--&gt;
     &lt;!--[if IE 8]&gt;&lt;body id=&quot;ie8&quot; class=&quot;ie non-ie6 non-ie7&quot;&gt;&lt;![endif]--&gt;
     &lt;!--[if !IE]&gt;--&gt;
          &lt;body id=&quot;non-ie&quot; class=&quot;non-ie non-ie6 non-ie7 non-ie8&quot;&gt;
     &lt;!--&lt;![endif]--&gt;

          ...

     &lt;/body&gt;
&lt;/html&gt;</pre>
<p>Veškerý obsah webu tímto obalíme do jakéhosi kontejneru, který obdrží třídy a identifikátor podle použitého prohlížeče. S kouzelným HTML nápojem tak přichází velká CSS síla.</p>
<pre>     input.checkbox { position: relative; top: 3px; }

<strong>#ie6</strong> input.checkbox { top: 1px; }
<strong>#ie7</strong> input.checkbox,
#ie8 input.checkbox { top: -1px; }</pre>
<p>Prakticky tak vzniká <em>podmínka</em>, s níž lze jakoukoliv CSS definici uplatnit pouze pro danou verzi IE. V praxi použito např. na webu <a href="http://www.absjets.com/">ABS Jets</a>.</p>
<h4>Co s tím, Panoramixi?</h4>
<p>Takto použité podmíněné komentáře <em>zvyšují udržovatelnost a přehlednost</em> kaskádových stylů.</p>
<ul>
<li>Nemusím pamatovat na vytvoření zvlášních stylopisů. Mám je k dispozici, jakmile potřebuji začít ladit.</li>
<li>Veškěrý kód k jednomu prvku zůstává na jednom místě a netříští se do více souborů. Odpadá nutnost editace a správy takových souborů.</li>
<li>Snadnost použití umocňuje aplikace na prvek <code>&lt;body&gt;</code>, jakožto prvek nejvyšší úrovně &ndash; podmíněný selektor díky tomu <em>podmínkou vždy začíná</em>. Sémantický kód není narušen nadbytečným <code>&lt;div&gt;</code>.</li>
<li>Vyjadřovací síla podmíněných komentářů dostává další rozměr &ndash; lze ji uplatnit např. při použití jQuery. Zacílit lze i např. všechny prohlížeče kromě IE 7.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://valka.info/notes/2010/06/podminene-komentare-efektivne/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Web site design process</title>
		<link>http://valka.info/notes/2010/05/web-site-design-process/</link>
		<comments>http://valka.info/notes/2010/05/web-site-design-process/#comments</comments>
		<pubDate>Tue, 25 May 2010 08:07:00 +0000</pubDate>
		<dc:creator>Ondřej Válka</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://valka.info/notes/?p=293</guid>
		<description><![CDATA[Just a few notes on the Web site design process. Try to get all the books mentioned and go through them.

]]></description>
			<content:encoded><![CDATA[<p>Just a few notes on the Web site design process. Try to get all the books mentioned and go through them.</p>
<p><iframe width="700" height="500" frameborder="0" src="http://www.mindmeister.com/maps/public_map_shell/48839516/notes-on-the-web-site-design-process?width=700&#038;height=500&#038;zoom=1&#038;no_share=1&#038;no_logo=1" scrolling="no" style="overflow:hidden"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://valka.info/notes/2010/05/web-site-design-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes on Pain Free Design Sign Off</title>
		<link>http://valka.info/notes/2010/05/notes-on-pain-free-design-sign-off/</link>
		<comments>http://valka.info/notes/2010/05/notes-on-pain-free-design-sign-off/#comments</comments>
		<pubDate>Tue, 25 May 2010 07:51:23 +0000</pubDate>
		<dc:creator>Ondřej Válka</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://valka.info/notes/?p=228</guid>
		<description><![CDATA[Great talk named Pain Free Design Sign Off on handling Web site design process and clients and by Paul Boag at SXSW. Full length video is available via Boagworld.

Client knows his users and business. Ask him about it.
Client should like the web site.
Confrontation to collaboration.
Client searches for problems, designer finds the solutions.
Do have a strong [...]]]></description>
			<content:encoded><![CDATA[<p>Great talk named <a href="http://my.sxsw.com/events/event/623">Pain Free Design Sign Off</a> on handling Web site design process and clients and by <em>Paul Boag</em> at SXSW. Full length <a href="http://boagworld.com/random/pain-free">video is available</a> via Boagworld.</p>
<ul>
<li>Client knows his users and business. Ask him about it.</li>
<li>Client <em>should</em> like the web site.</li>
<li>Confrontation to collaboration.</li>
<li>Client searches for problems, designer finds the solutions.</li>
<li>Do have a strong methodology.</li>
<li>Include client early and often.</li>
<li>Educate the client why do you work in such a way.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://valka.info/notes/2010/05/notes-on-pain-free-design-sign-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Návrh GUI komunitního webu</title>
		<link>http://valka.info/notes/2010/05/bakalarska-prace/</link>
		<comments>http://valka.info/notes/2010/05/bakalarska-prace/#comments</comments>
		<pubDate>Mon, 24 May 2010 15:13:33 +0000</pubDate>
		<dc:creator>Ondřej Válka</dc:creator>
				<category><![CDATA[UI]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://valka.info/notes/?p=233</guid>
		<description><![CDATA[
Dopsal jsem bakalářku. V textu nazvaném Návrh GUI komunitního webu se zabývám metodami uživatelského výzkumu, technikami návrhu webu a kódováním šablon. Plné znění mé bakalářské práce (PDF, 9 MB) zde dávám k dispozici,  přílohy jsou na Flickru.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://valka.info/notes/wp-content/uploads/bakalarka.png" alt="" title="bakalarka" width="700" height="220" /></p>
<p>Dopsal jsem bakalářku. V textu nazvaném <em>Návrh GUI komunitního webu</em> se zabývám metodami uživatelského výzkumu, technikami návrhu webu a kódováním šablon. <a href="http://valka.info/projects/bp/bp.pdf">Plné znění mé bakalářské práce (PDF, 9 MB)</a> zde dávám k dispozici, <a href="http://www.flickr.com/photos/34791101@N07/collections/72157624002055179/"> přílohy jsou na Flickru</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://valka.info/notes/2010/05/bakalarska-prace/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What Would Jacob Do?</title>
		<link>http://valka.info/notes/2010/04/what-would-jacob-do/</link>
		<comments>http://valka.info/notes/2010/04/what-would-jacob-do/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 08:48:26 +0000</pubDate>
		<dc:creator>Ondřej Válka</dc:creator>
				<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://valka.info/notes/?p=242</guid>
		<description><![CDATA[We know what&#8217;s under the hood. And we know how to polish the hood.
Pavel Maček and I were giving a short talk at UXCamp.cz last Saturday, 24th April. Delighted to announce the slides we recommend you viewing it via the SlideShare if you want to see the original version of the slides.

Thanks Optimal Workshop for [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>We know what&#8217;s under the hood. And we know how to polish the hood.</p></blockquote>
<p><a href="http://www.matcheck.cz/">Pavel Maček</a> and I were giving a short talk at <a href="http://uxcamp.cz/">UXCamp.cz</a> last Saturday, 24th April. Delighted to announce the slides we recommend you <em>viewing it via the SlideShare</em> if you want to see the <a href="http://www.slideshare.net/ondrejvalka/what-would-jacob-do-3855774">original version of the slides.</a></p>
<p><object width="700" height="720"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wwjd-final-100426033120-phpapp02&#038;stripped_title=what-would-jacob-do-3855707" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wwjd-final-100426033120-phpapp02&#038;stripped_title=what-would-jacob-do-3855707" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="700" height="720"></embed></object></p>
<p>Thanks <a href="http://www.optimalworkshop.com/">Optimal Workshop</a> for the naming inspiration.</p>
]]></content:encoded>
			<wfw:commentRss>http://valka.info/notes/2010/04/what-would-jacob-do/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Díky za UXCamp.cz</title>
		<link>http://valka.info/notes/2010/04/diky-za-uxcamp-cz/</link>
		<comments>http://valka.info/notes/2010/04/diky-za-uxcamp-cz/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 08:47:21 +0000</pubDate>
		<dc:creator>Ondřej Válka</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://valka.info/notes/?p=260</guid>
		<description><![CDATA[

Díky všem účastníků za UXCamp.cz. Bylo to neuvěřitelné!
Díky klukům z Brna!
Díky za inovace: plyn se přidává emocema.
Díky Renči za výtečné buchty a bagety.
Díky panu majiteli Mikulka’s Pizzeria za nevšední gastronomický zážitek.
Díky za připomenutí zapomenuté bundy.
Díky Víťovi za zapůjčení mobilního internetu, zn. pošli účet.
Díky Davidovi Grudlovi za to, že nás vyhecoval!
Díky Martinovi Hassmanovi z Tajného klubu [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://valka.info/notes/wp-content/uploads/speakers.jpg" alt="Pavel a já přednášíme na UXCamp.cz" width="700" height="200" class="aligncenter size-full wp-image-279" /></p>
<ul>
<li>Díky všem účastníků za UXCamp.cz. Bylo to neuvěřitelné!</li>
<li>Díky klukům z Brna!</li>
<li>Díky za inovace: plyn se přidává emocema.</li>
<li>Díky Renči za výtečné buchty a bagety.</li>
<li>Díky panu majiteli Mikulka’s Pizzeria za nevšední gastronomický zážitek.</li>
<li>Díky za připomenutí zapomenuté bundy.</li>
<li>Díky Víťovi za zapůjčení mobilního internetu, zn. pošli účet.</li>
<li>Díky Davidovi Grudlovi za to, že nás vyhecoval!</li>
<li>Díky Martinovi Hassmanovi z Tajného klubu tancujících přednášejících za pohotové předtančení. Experieeence! Desiiign!</li>
<li>Díky Nette komunitě za vstřícně-plamenné přijetí.</li>
<li>Díky řidiči rumunského autobusu za bezpečné přepravení našeho Pátka.</li>
<li>Díky Tomášovi Obšívačovi za fotky.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://valka.info/notes/2010/04/diky-za-uxcamp-cz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing Web sites for iPad</title>
		<link>http://valka.info/notes/2010/02/web-design-ipad/</link>
		<comments>http://valka.info/notes/2010/02/web-design-ipad/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 23:32:33 +0000</pubDate>
		<dc:creator>Ondřej Válka</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://valka.info/notes/?p=192</guid>
		<description><![CDATA[Our life is easier when facilitated by computers, not when facilitating the life of computers.
Some of the Web site UI design principles that are likely to change in the emerging screen-only computer era. Remember that these principles are just as appropriate for standard Web site UI design as for the iPad specific design.
Rest in pieces

:hover [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Our life is easier when facilitated by computers, not when facilitating the life of computers.</p></blockquote>
<p>Some of the Web site UI design principles that are likely to change in the emerging screen-only computer era. Remember that these principles are just as appropriate for standard Web site UI design as for the iPad specific design.</p>
<h4>Rest in pieces</h4>
<ul>
<li><code>:hover</code> effect is gone.</li>
<li>Tiny UI elements such as small links, tiny carousel controls are out.</li>
<li>Fluid width would never return again.</li>
<li>In pixels we trust, in type-only resizing we don&#8217;t.</li>
<li>Cash? No Flash.</li>
<li>Stop the pop-up windows.</li>
</ul>
<h4>Welcome home</h4>
<ul>
<li>Zoom together with details that matter.</li>
<li>A page fold redefined.</li>
<li>The neverending story of 1024×768.</li>
<li>Change of navigation (within a page—horizontal scrolling).</li>
<li>More standards and more AJAX.</li>
</ul>
<p>And not only the design itself will change—iPad can become a suitable prototyping tool too.</p>
<h4>Further reading</h4>
<ul>
<li><a href="http://www.searchenginepeople.com/blog/ipad-web-design-seo-first-looks.html">iPad Web Design &#038; SEO: First Looks</a></li>
<li><a href="http://www.fastcompany.com/blog/cliff-kuang/design-innovation/ipad-interactive-design-website-design-apple-tablet">iPad: A Saviour for Web Design, Too!</a></li>
<li><a href="http://somadesign.ca/blog/design/2010/on-the-ipad-and-web-design/">On the iPad and Web Design</a>
<li><a href="http://www.usabilitypost.com/2010/01/29/on-the-ipad/">On the iPad</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://valka.info/notes/2010/02/web-design-ipad/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>There is no silver bullet</title>
		<link>http://valka.info/notes/2010/01/no-silver-bullet/</link>
		<comments>http://valka.info/notes/2010/01/no-silver-bullet/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 09:37:06 +0000</pubDate>
		<dc:creator>Ondřej Válka</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://valka.info/notes/?p=187</guid>
		<description><![CDATA[Your PC is a piece of crap because I can&#8217;t run my Mac OS X apps on it!
There is no silver bullet in any field. There is no such thing as the best Web browser, the definitive programming language or the ultimate operating system. Neither iPad is. The sooner you realize this, the better for [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Your PC is a piece of crap because I can&#8217;t run my Mac OS X apps on it!</p></blockquote>
<p>There is no silver bullet in any field. There is no such thing as the best Web browser, the definitive programming language or the ultimate operating system. Neither <a href="http://www.apple.com/ipad/">iPad</a> is. The sooner you realize this, the better for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://valka.info/notes/2010/01/no-silver-bullet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everyday prototyping</title>
		<link>http://valka.info/notes/2010/01/everyday-prototyping/</link>
		<comments>http://valka.info/notes/2010/01/everyday-prototyping/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 00:38:18 +0000</pubDate>
		<dc:creator>Ondřej Válka</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://valka.info/notes/?p=93</guid>
		<description><![CDATA[Prototyping is a must. No matter what business you deal with, prototyping should be a welcome guest that helps you figure out the right decisions in quick-and-dirty way. Today I&#8217;d like to reveal my prototyping techniques, related not only to Web sites.
Wearable mockup
 Designing a T-shirt for signály.cz I have to find out which size [...]]]></description>
			<content:encoded><![CDATA[<p>Prototyping is a must. No matter what business you deal with, prototyping should be a welcome guest that helps you figure out the right decisions in quick-and-dirty way. Today I&#8217;d like to reveal my prototyping techniques, related not only to Web sites.</p>
<h4>Wearable mockup</h4>
<p><img class="alignright size-full wp-image-126" title="prototyp-blog" src="http://valka.info/notes/wp-content/uploads/prototyp-blog.jpg" alt="T-shirt mockup" width="300" height="200" /> Designing a T-shirt for <a href="http://www.signaly.cz/">signály.cz</a> I have to find out which size of the illustration would fit best. A paper cutout (based on a quick sketch) together with an old blue T-shirt allowed me to show the final product to the client without touching a mouse/keyboard.</p>
<p>All the equipment I used was a pen, a paper, a scissors, a T-shirt and a half-assed mobile phone camera. Having finished the phone call with the client I was able to create an almost final design solution <em>in half an hour.</em></p>
<h4>From paper to computer screen</h4>
<p><em>The text was originally published at <a href="http://wireframes.linowski.ca/2009/11/paper-prototype-cutouts/">Wireframes magazine</a>. Thanks Jakub!</em></p>
<p>A part of a school project was to create a paper mockup. Having considered all the problems I’m going to resolve I’ve made a list of proper goals:</p>
<ul>
<li>I have to create a paper prototype of an audio/video manager app. I already have the creative brief and the technical brief.</li>
<li>The prototype should contain all the screens and dialogue boxes of the app. It should be compact, easy to store, portable all-in-one solution.</li>
<li>It should provide quick and fancy user testing.</li>
</ul>
<p>I wanted to have the whole app in a single notebook. Because the app would have a single window interface, the solution had crossed my mind immediately.</p>
<p>The result with all its benefits you can see below.</p>
<p><img class="aligncenter size-full wp-image-129" alt="Audio/video manager app mockup" src="http://valka.info/notes/wp-content/uploads/cutouts-blog.jpg" width="700" height="233" /></p>
<p><em>See all the <a href="http://www.flickr.com/photos/34791101@N07/sets/72157622773498276/detail/">cutouts photos at Flickr</a>.</em></p>
<ul>
<li>A page = a screen. Using such solution provides you with a lot of space around every screen. Put down some thoughts, notes and explanations.</li>
<li>The main frame of the app can serve as a stencil when drawing new screens. Speeds ups the drawing process and keeps the notebook full of drawings clean and consistent.</li>
<li>In addition, the space around every screen serves as a place for pop-up windows, dialog boxes and other elements made from post-it papers.</li>
<li>The main frame stencil can hide all the stuff around a screen and turns a set of described wireframes into a testable prototype in a moment.</li>
</ul>
<p>Take such prototype anywhere, create new screens in a bus or train, test with your mates during a coffee break and finally archive it next to your past prototypes. Worth trying, isn’t it?</p>
<p><em>Keep your eyes on <a href="http://wireframes.tumblr.com/">I ♥ wireframes</a>&mdash;a popular wireframes showcase.</em></p>
<h4>Off the wall prototype</h4>
<p>Since <a href="http://www.signaly.cz/">signály.cz</a> is a Christian organization, we wanted to have our very own cross. We&#8217;re a non-profit organization, so the design solution has to be low-cost and easy to produce.</p>
<p>Using 2 <em>moodboards</em> I&#8217;ve suggested a solution, but it would have been complicated to be produced and also quite different from our corporate design too.</p>
<p><img src="http://valka.info/notes/wp-content/uploads/moodboards.jpg" width="700" height="233" alt="Moodboards" class="aligncenter size-full wp-image-153" /></p>
<p>Together with a couple of friends we&#8217;ve designed a cross that perfectly goes along with our design style. A few sketches came in handy.</p>
<p><img src="http://valka.info/notes/wp-content/uploads/cross-mockups.jpg" alt="" title="cross-mockups" width="700" height="230" class="aligncenter size-full wp-image-155" /></p>
<p>Final production process included a paper prototype of the cross. In 15 minutes we joined some blank papers to show the final shape.</p>
<p>The cross was hand-crafted together with a few skillful friends of mine. Thank you, guys&mdash;the result was amazing.</p>
<p><img src="http://valka.info/notes/wp-content/uploads/cross.jpg" alt="Cross" width="700" height="230" class="aligncenter size-full wp-image-157" /></p>
<h4>The good, the bad and the ugly sketchbook</h4>
<p>I can&#8217;t remember how many times a day a open one of my sketchbooks to draw a design concept or put down an inspiring idea.</p>
<p>Actually, I have <em>3&nbsp;sketchbooks.</em> The fat one is A4 format where I put every single possible sketch: wireframes, banner proposals, sketches etc.</p>
<p>The big one is A4 format too, suitable for text notes. While reading books or articles I put down notes, diagrams etc.</p>
<p><img src="http://valka.info/notes/wp-content/uploads/sketchbooks.jpg" alt="sketchbooks" width="700" height="230" class="aligncenter size-full wp-image-160" /></p>
<p><em>Don&#8217;t miss great Flickr group <a href="http://www.flickr.com/groups/uxsketches/">User Experience Sketches</a>.</em></p>
<p>The little one is a pocket-size notebook that I try to take with me everywhere. The ideas and concepts I&#8217;d like to remember but I haven&#8217;t time to carry out now I keep here. Such notebook could one serve as a springboard when searching for ideas.</p>
<h4>Show must go on</h4>
<p>Now it&#8217;s your turn. Show off your projects!</p>
]]></content:encoded>
			<wfw:commentRss>http://valka.info/notes/2010/01/everyday-prototyping/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Visibility of system status</title>
		<link>http://valka.info/notes/2010/01/system-status/</link>
		<comments>http://valka.info/notes/2010/01/system-status/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 09:52:14 +0000</pubDate>
		<dc:creator>Ondřej Válka</dc:creator>
				<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://valka.info/notes/?p=81</guid>
		<description><![CDATA[Original post Everyday Usability Heuristics: Visibility Of System Status was published at Usability post. Thanks Dmitry!
Two weeks ago, I was watching my 45-year old father browsing the Internet. Every time I watch him I learn a lesson in usability. I’m sure you know with situations like this one – valuable opportunities to learn from the [...]]]></description>
			<content:encoded><![CDATA[<p><em>Original post <a href="http://www.usabilitypost.com/2009/10/23/everyday-usability-heuristics-visibility-of-system-status/">Everyday Usability Heuristics: Visibility Of System Status</a> was published at <a href="http://www.usabilitypost.com/">Usability post</a>. Thanks Dmitry!</em></p>
<p>Two weeks ago, I was watching my 45-year old father browsing the Internet. Every time I watch him I learn a lesson in usability. I’m sure you know with situations like this one – valuable opportunities to learn from the ordinary users for whom we design.</p>
<p>As he is using Windows XP the very first thing he did was that he ran Firefox clicking an icon on the desktop. No response. Nothing happened so after a few seconds he clicked the icon one more time. With his eyes focused on the Firefox icon he clicked the icon again. Everything he got was three Firefox windows opened. Sounds familiar?</p>
<p>The moment I saw this process I realized how applications are launched at my Mac OS X. Being clicked, the Firefox icon starts jumping in the dock. It’s not just a fancy effect, but a really useful feature. Clicking an icon user gets apparent immediate response. Moreover realize what you do: anytime you want to click an element, your eyes sticks to it. You are not watching the pointer, you just use a mouse and click. The same did my father.</p>
<p><img src="http://valka.info/notes/wp-content/uploads/mac-osx-dock.png" alt="Mac OS X Dock" title="Mac OS X Dock" width="700" height="100" /></p>
<p>Is a small flickering sand-glass beside the pointer more apparent than a big jumping Firefox icon that user’s eyes are sticked to? Keep this in mind and try to design thoughtful user interfaces. It’s not just about applying the <a href="http://www.useit.com/papers/heuristic/heuristic_list.html">Nielsen’s rules</a>.</p>
<p>Of course it doesn’t matter what, but it also matters how.</p>
]]></content:encoded>
			<wfw:commentRss>http://valka.info/notes/2010/01/system-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
