<?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>K-Voltage blog &#187; Events</title>
	<atom:link href="http://www.killervoltage.com/index.php/category/events/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.killervoltage.com</link>
	<description>Ivan Frantar&#039;s vicinity for all things web</description>
	<lastBuildDate>Wed, 25 Aug 2010 19:02:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Google DevFest 2009 Argentina</title>
		<link>http://www.killervoltage.com/index.php/2009/10/25/google-devfest-2009-argentina/</link>
		<comments>http://www.killervoltage.com/index.php/2009/10/25/google-devfest-2009-argentina/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 09:39:33 +0000</pubDate>
		<dc:creator>Ivan Frantar</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[argentina]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.killervoltage.com/?p=83</guid>
		<description><![CDATA[I&#8217;m very excited to hear that the 17th of November Google DevFest 2009 will be held in Argentina with an awesome line up of speakers. Some of the topics that are going to be presented and are quite trendy at the moment are HTML5/Chrome, Cloud Computing, Android, Development Tools and Social Web among others. I wish [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very excited to hear that the 17th of November <a href="https://sites.google.com/a/mazalan.com.ar/devfest/home">Google DevFest 2009</a> will be held in Argentina with an awesome <a href="https://sites.google.com/a/mazalan.com.ar/devfest/bios">line up of speakers</a>.</p>
<p>Some of the topics that are going to be presented and are quite trendy at the moment are <strong>HTML5/Chrome</strong>, <strong>Cloud Computing</strong>, <strong>Android</strong>, <strong>Development Tools</strong> and <strong>Social Web</strong> among others.</p>
<p>I wish I could be there hang out with those guys. Definitely I&#8217;m liking what I see it&#8217;s happening in Argentina in the fields of web and technology <img src='http://www.killervoltage.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.killervoltage.com/index.php/2009/10/25/google-devfest-2009-argentina/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>@media 2008 overview (day 2)</title>
		<link>http://www.killervoltage.com/index.php/2008/06/01/media-2008-overview-day-2/</link>
		<comments>http://www.killervoltage.com/index.php/2008/06/01/media-2008-overview-day-2/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 12:15:09 +0000</pubDate>
		<dc:creator>Ivan Frantar</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[@media 2008]]></category>
		<category><![CDATA[conference]]></category>

		<guid isPermaLink="false">http://www.killervoltage.com/?p=38</guid>
		<description><![CDATA[And here, a continuation of the post I started yesterday on @media 2008. Professional Frontend Engineering by Nate Koechley What is frontend engineering? Software created HTML, CSS, Javascript. Frontend = HTML, CSS, Javascript, API&#8217;s Backend = PHP, C++, Databases, etc. Overall as frontend engineers we are trying to keep up with 672 issues when developing [...]]]></description>
			<content:encoded><![CDATA[<p>And here, a continuation of the post I started yesterday on @media 2008.</p>
<h3>Professional Frontend Engineering by <a rel="external" href="http://nate.koechley.com">Nate Koechley</a></h3>
<p>What is frontend engineering? Software created HTML, CSS, Javascript.</p>
<p>Frontend = HTML, CSS, Javascript, API&#8217;s</p>
<p>Backend = PHP, C++, Databases, etc.</p>
<p>Overall as frontend engineers we are trying to keep up with 672 issues when developing for the web ie. browser inconsistencies, media types, accessibility, enhancement. To name a few.</p>
<p>The difference from back end?</p>
<ul>
<li>Can&#8217;t compile</li>
<li>Can&#8217;t predict</li>
</ul>
<p>How yahoo has categorized browsers:</p>
<ul>
<li>C-Grade: incapable browsers</li>
<li>A-Grade: capable browsers</li>
<li>X-Grade: everything else</li>
</ul>
<p>You can find more on this on <a href="http://developer.yahoo.com/yui/articles/gbs/">Yahoo Developer Network</a><br />
Progressive enhancement</p>
<ul>
<li>enrich content</li>
<li>enhance layout</li>
<li>enhance behavior</li>
</ul>
<p>Always design or code for <a href="http://www.digital-web.com/articles/fluid_thinking/">graceful degradation</a><br />
<a href="http://en.wikipedia.org/wiki/Unobtrusive_JavaScript">Unobstrusive javascript</a> = never trust javascript!<br />
Please, NO MORE use of&#8230;</p>
<ul>
<li><code>&lt;a href="#"&gt;...&lt;/a&gt;</code></li>
<li><code>&lt;a href="javascript:void(0)"&gt;...&lt;/a&gt;</code></li>
<li><code>&lt;a href="#" onclick="toggle(); return false"&gt;...&lt;/a&gt;</code></li>
</ul>
<p>&#8230;links are supposed to send a user to some other page or portion of the page. They are not meant to be hijacked by javascript to create any other functionality.</p>
<p>Do what it is standard<br />
Go &#8211; simple<br />
Go &#8211; flexible &amp; progressive<br />
Go &#8211; open<br />
Audiences to satisfy: users, developers, machines<br />
Knowledge areas:</p>
<ul>
<li>HTML -&gt; aim for performance</li>
<li>CSS -&gt; focus on the left side. Great selectors is what differentiates good from bad CSS. As of now, we need to find a way to create maintainable CSS. No one has created yet an effective way. Remains to be seen.</li>
<li>Javascript -&gt; <a href="http://www.jslint.com/">jslint.com</a> Use this tool to check the quality of your javascript. Unit Testing. Profiling: see how it works on several browsers. <a href="http://developer.yahoo.com/yui/profiler/">Yahoo has a profiler</a>.</li>
</ul>
<p>Libraries provide a buffer layer<br />
Javascript security:</p>
<ul>
<li>beware of XSS</li>
<li>don&#8217;t trust nothing coming from the client.</li>
<li><a href="http://www.adsafe.org/">ADsafe</a>/<a href="http://code.google.com/p/google-caja/">Caja</a> Developmet to make your javascript secure.</li>
</ul>
<p>Internationalization -&gt; using UTF-8 for the .js, .css files. Use the @charset -&gt; best practice<br />
Don&#8217;t use the @import -&gt; it doesn&#8217;t load the CSS until the very last thing before the closing &lt;/body&gt; tag<br />
Horizontal CSS sprites are faster than vertical ones. Don&#8217;t know why.</p>
<h3>Building in the shoulders of giants by <a href="http://www.snook.ca/jonathan/">Jonathan Snook</a></h3>
<p>Jonathan&#8217;s speak has centered on how to use API&#8217;s and stuff that other people has already took the time for us to reuse. Some of his developments:</p>
<ul>
<li><a href="http://getsnitter.com/">Snitter</a> -&gt; uses twitter  with Adobe Air</li>
<li><a href="http://mymilemarker.com/">Milemarker</a> -&gt; checks the you petrol usage</li>
<li><a href="http://djangoplugables.com/">Django-plugables</a> -&gt; library of plugins for django</li>
<li><a href="http://overheard.it/">Overheard</a> -&gt; a twitter base project that outputs everone using the word overheard</li>
</ul>
<p>Designers like to reuse.<br />
Developers like to reinvent.<br />
Developers need to think more like designers.<br />
Plenty of frameworks we can use</p>
<ul>
<li><a href="http://jquery.com/">jQuery</a> -&gt; javascript library</li>
<li><a href="http://prototypejs.org/">Prototype</a> -&gt; javascript library</li>
<li><a href="http://extjs.com/">extJS</a> -&gt; Snook particularly likes this one.</li>
<li><a href="http://960.gs/">960.gs</a> -&gt; CSS grid framework</li>
<li><a href="http://code.google.com/p/blueprintcss/">Blueprint</a> -&gt; CSS framework</li>
</ul>
<p>Platforms -&gt; Adobe AIR, Flash/Flex, Silverlight, Java/JavaFX<br />
Language of mashups -&gt; REST, XML-RPC, SOAP, JSON<br />
Flash has built-in socket support which would enable it to connect with mail protocols<br />
Types of data:</p>
<ul>
<li>maps (<a href="http://maps.google.com">google</a>, <a href="http://maps.yahoo.com">yahoo</a>)</li>
<li>crime database (<a href="http://www.everyblock.com/">everyblock</a>)</li>
<li>real estate (<a href="http://www.trulia.com/">trulia</a>)</li>
</ul>
<p>Jonathan gave an idea of something you can do mashing up this sources. For instance you can create an application about how is the crime in certain areas and how is that affecting real estate by pointing out in a map.</p>
<p>Some of the downfalls of using API&#8217;s is that the code could get changed and screw up your app.<br />
The benefits is that it is well tested code, speedup development and solve specific needs<br />
You can get your ideas out fast</p>
<h3>The Why and Which of Javascript Libraries by <a href="http://ejohn.org/">John Resig</a></h3>
<p>John is the creator of jQuery<br />
Why to use a javascript library?</p>
<ul>
<li>Makes the code bereable</li>
<li>You don&#8217;t have to worry about browser differences, memory leaks, etc</li>
<li>Concentrate on the code no hassle</li>
<li>Scalable</li>
</ul>
<p>Most popular libraries</p>
<ul>
<li><a href="http://prototypejs.org">Prototype</a></li>
<li><a href="http://jquery.com">jQuery</a></li>
<li><a href="http://developer.yahoo.com/yui/">Yahoo UI</a></li>
<li><a href="http://dojotoolkit.org/">Dojo</a></li>
</ul>
<p>He explained a bit of the history on each library<br />
Some core functionalities that libraries should facilitate are</p>
<ul>
<li>DOM</li>
<li>Events</li>
<li>Ajax</li>
<li>Animations</li>
</ul>
<p>One of the things you should ask yourself when using a library is: Does it help me to write better javascript code?<br />
Most libraries has interface packages<br />
Looking to work on the WAI-ARIA to facilitate implementation on the code<br />
Good libraries has good documentation and big community of developers contributing to it.<br />
Architecture -&gt; namespace -&gt; means they are all contained within a javascript variable.</p>
<h3><a href="http://www.w3.org/WAI/">WAI-ARIA</a>. It&#8217;s easy by <a href="http://www.paciellogroup.com/index.php">Steve Faulkner</a></h3>
<p>WAI-ARIA it&#8217;s a W3C specification and the acronym means <cite><a href="http://www.w3.org/TR/2008/WD-wai-aria-20080204/">Accessible Rich Internet Applications</a><br />
</cite>With ARIA you can provide a sense and a set of actions through more information to users.<br />
ARIA is a set of attributes that you can apply. Example:</p>
<p><code>&lt;span <strong>role="checkbox" aria-checked="true"</strong> /&gt;</code></p>
<ul>
<li>role: checkbox</li>
<li>state: checked</li>
</ul>
<p>He went on explaining how would you use ARIA for something like updates on <a href="http://www.twitter.com">Twitter</a>. For instance a visual impaired user wouldn&#8217;t be able to see the characters left unless they stop typing and checking that information manually. With ARIA you would be able to notify the user whenever a dynamic update occurs. You would use for the characters left:</p>
<pre id="line1">&lt;<span class="start-tag">span</span><span class="attribute-name"> id</span>=<span class="attribute-value">"chars_left_notice" </span><span class="attribute-name">class</span>=<span class="attribute-value">"numeric"</span> <span style="font-weight: bold;">aria-live="polite"</span>&gt;</pre>
<p>&#8230; after the user stops typing for a moment, this will trigger an announcement of how many characters left are able to be typed.<br />
More on WAI-ARIA <a href="http://juicystudio.com/">here</a>, <a href="http://www.w3.org/WAI/intro/aria">here</a> and <a href="http://www.alistapart.com/articles/waiaria">here</a></p>
<h3>Global Design: Characters, Language, and More by <a href="http://rishida.net/">Richard Ishida</a></h3>
<p>Richard went on explaining some of the issues we find sometimes with pages when display in one country and then showing weird characters on other countries.<br />
To make sure this doesn&#8217;t happen you have to define the right character set for your site and know where your audiences are going to be seeing your site<br />
Always include in the html tag. Ex <code>&lt;html lang"en"&gt;</code> or if you are using XHTML <code>&lt;html lang="en" xml:lang="en"&gt;</code></p>
<p>If you are using a foreign word in a document always include an inline tag with the lang attribute.</p>
<p>For more information on Internationalization go to <a href="http://www.w3.org/International/quicktips/">here</a>, <a href="http://www.w3.org/International/getting-started/characters">here</a> or <a href="http://www.w3.org/International/">here</a></p>
<h3>Conclusion</h3>
<p>That&#8217;s pretty much it for the second day. Overall it was a very interesting set of more techie presentations in comparison to the first day that was more design oriented. I hope I&#8217;ve given a good overview of the presentation or at least, that&#8217;s out of the scribbling and notes I took on my notebook (not laptop)</p>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a style="color: #999; font-weight: bold;" title="Flock Browser" href="http://www.flock.com/blogged-with-flock" target="_new">Flock Browser</a></div>
<p><!-- technorati tags begin --></p>
<p style="font-size:10px;text-align:right;">Tags: <a rel="tag" href="http://technorati.com/tag/%40media2008">@media2008</a>, <a rel="tag" href="http://technorati.com/tag/%20web"> web</a>, <a rel="tag" href="http://technorati.com/tag/%20events"> events</a>, <a rel="tag" href="http://technorati.com/tag/%20conference"> conference</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.killervoltage.com/index.php/2008/06/01/media-2008-overview-day-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>@media 2008 overview (day 1)</title>
		<link>http://www.killervoltage.com/index.php/2008/05/31/media-2008-overview-day-one/</link>
		<comments>http://www.killervoltage.com/index.php/2008/05/31/media-2008-overview-day-one/#comments</comments>
		<pubDate>Sat, 31 May 2008 13:54:59 +0000</pubDate>
		<dc:creator>Ivan Frantar</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[@media 2008]]></category>
		<category><![CDATA[conference]]></category>

		<guid isPermaLink="false">http://www.killervoltage.com/?p=37</guid>
		<description><![CDATA[I&#8217;ll post here some of the notes I took from the conference. I hope they make sense: Designing our way through data by Jeffrey Veen I can not say much about this one. Unfortunately missed it because of a flight delay. For example: BBC Home page by Tom Cartwright and Claire Roberts Make websites thinking [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll post here some of the notes I took from the conference. I hope they make sense:</p>
<h3>Designing our way through data by <a title="Jeffrey's Veen website" href="http://www.veen.com/jeff/index.html" target="_blank">Jeffrey Veen</a></h3>
<p>I can not say much about this one. Unfortunately missed it because of a flight delay.</p>
<h3>For example: <a title="BBC home page" href="http://www.bbc.co.uk">BBC Home page</a> by Tom Cartwright and Claire Roberts</h3>
<p>Make websites thinking in the best practices on accessibility.</p>
<p><code>blur()</code> not friends with JAWS</p>
<p>Care for some users brings a better experience for all.</p>
<p><a rel="external bookmark" href="http://www.bbc.co.uk">http://www.bbc.co.uk</a></p>
<p>New Platform will be service oriented with the Zend Framework &amp; PHP. Someone ask why they are going to use the Zend Framework. Tom couldn&#8217;t answer why. Would have been good to know , though</p>
<p>Upcoming: <a href="http://www.bbc.co.uk/glow">http://www.bbc.co.uk/glow</a>. Will be an own JavaScript library for the BBC that it&#8217;s planned to go open-source.</p>
<p>Pan BBC Identity. Implicit and explicit personalization. This its been worked at the moment. Don&#8217;t know when will be launched.</p>
<h3>For example:<a rel="external" href="http://www.clearleft.com/">Clearleft</a> presenting â€“ Designing <a rel="external" href="http://www.edenbee.com/">Eden bee</a> by James Box</h3>
<p>James is an Information Architect at Clearleft</p>
<p>A new site about people interested and concerned on global warming and climate change</p>
<p>They started with a discovery face, sketching ideas.</p>
<p>They wanted to show how your lifestyle choices affect your carbon footprint and create an ecological profile</p>
<p>They are using <a href="http://amee.cc/">amee API&#8217;s</a> to track and store information about your carbon footprint. <a href="http://www.dopplr.com">Dopplr</a> is using it as well to track your flights carbon footprint.</p>
<p>By adding and using the <a href="http://amee.cc/">Amee</a> API&#8217;s all the information gets saved in their database, therefore creating a general ecosystem of information how much carbon we generate</p>
<h3>Getting your hands dirty with HTML5 by James Graham and Lachlan Hunt</h3>
<p>I would have liked to see more interesting insights on this topic other than what you can find online. The presentation was quite poor to be honest. But here we go:</p>
<p>Same language, different syntax</p>
<p>Design principles:</p>
<ul>
<li>compatibility</li>
<li>Utility</li>
<li>Interoperability</li>
<li>Universal Access</li>
</ul>
<p>They explained with examples some of the basic structures that we use over an over again how could they be accomplished by using more semantic elements like <code>&lt;nav&gt;</code>, <code>&lt;sidebar&gt;</code>, <code>&lt;header&gt;</code>, <code>&lt;section&gt;</code>, etc.</p>
<p>It will give support for <abbr title="Scalable Vector Graphics">SVG</abbr> animations and dynamically generate pie charts and the possibility to embed videos without using Flash through the <code>&lt;video&gt;</code> element</p>
<p>HTML 5 validator @ <a rel="external" href="http://validator.nu/">validator.nu</a></p>
<p>More information on HTML 5 you can find it <a rel="external" href="http://www.w3.org/html/wg/html5/">here</a>, <a rel="external" href="http://www.w3.org/TR/html5-diff/">here</a> and <a rel="external" href="http://www.alistapart.com/articles/previewofhtml5">here</a>. Or check these guys <a href="http://blog.whatwg.org">blog</a> and <a href="http://wiki.whatwg.org">wiki</a> and see how things are moving on.</p>
<h3>Underpants over my trousers: <a href="http://www.stuffandnonsense.co.uk">Andy Clarke</a></h3>
<p>Andy&#8217;s session was based on how to get inspiration for comic books (which are his inspiration) and how to transmit that inspiration into the web.</p>
<p>Usability is not getting only from A to B, it&#8217;s the experience you have between A getting to B</p>
<p>In the same sense that the drawings, the size of the boxes on a comic book give you a rhythm and emotion, web pages should convey the same sense of rhythm and momentum towards the end of your experience on a site.</p>
<p>The anticipation is part of the experience. That anticipated knowledge that you have when you click on a link and know what to expect.</p>
<p>It would be nice to insert a sense of story telling</p>
<h3>Designing user interfaces: Details make the difference by <a href="http://superfluousbanter.org/">Dan Rubin</a></h3>
<p>The slides presentation will be able for download at <a rel="external" href="http://www.superfluousbanter.org/presentations/2008">http://www.superfluousbanter.org/presentations/2008</a></p>
<p>How a design should feel. Take care of balance, proportions and follow common patterns.</p>
<p>For instance, he put the example of the <a rel="external" href="http://www.cnn.com">CNN.com</a> website where they use common patterns for margins and paddings, like 6, 12 and 18px margins and a common 12px body copy size. Here you create pattern of sizes with 6px differences.</p>
<p>If you are really bad at math, just go for patterns of 5 ie. 5, 10, 15, 20px, etc.</p>
<p>Typography: tracking and letter-spacing.</p>
<p>For headlines use -1px on letter-spacing. This will help readability. We read words as entire shapes not letter by letter.</p>
<p>Grids: use columns to help you position the elements harmoniously. He use as an example <a href="http://www.monocle.com/">Monocle</a> which had a rigid use of grids.</p>
<p>Before you show your work you should be happy with what you&#8217;ve done. Fight for that and don&#8217; t fall into a pattern where you hand in work fast and because you have to</p>
<p>On how to create an easy and interesting gradient: take or grab any picture at all, select 1 pixel height on one section of the picture running across. Crop to selection. Then strecht it and you&#8217;ll find yourself with an interesting gradient that you wouldn&#8217;t have imagined otherwise. Work on overlight, screen and other blending modes in Photoshop and more surprised you&#8217;ll be.</p>
<h3>Conclusion</h3>
<p>Overall great and inspirational presentations covering interesting points on each subject. If I get to track down some of the slide presentations of the presenters I&#8217;ll try to post them here.<br />
<!-- technorati tags begin --></p>
<p style="font-size:10px;text-align:right;">Tags: <a rel="tag" href="http://technorati.com/tag/%40media2008">@media2008</a>, <a rel="tag" href="http://technorati.com/tag/%20web"> web</a>, <a rel="tag" href="http://technorati.com/tag/%20events"> events</a>, <a rel="tag" href="http://technorati.com/tag/%20conference"> conference</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.killervoltage.com/index.php/2008/05/31/media-2008-overview-day-one/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Impressions on the User Interface 12 conference in Boston &#8211; Part II</title>
		<link>http://www.killervoltage.com/index.php/2007/11/21/impressions-on-the-user-interface-12-conference-in-bosto-part-ii-2/</link>
		<comments>http://www.killervoltage.com/index.php/2007/11/21/impressions-on-the-user-interface-12-conference-in-bosto-part-ii-2/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 23:53:09 +0000</pubDate>
		<dc:creator>Ivan Frantar</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.killervoltage.com/?p=34</guid>
		<description><![CDATA[Wednesday 7th &#8211; Seminar The Myths of Innovation &#8211; How to Lead Breakthrough Projects &#124; Scott Berkun We always tend to think that the moment of creation or when the innovation happens is that mythical moment we all know through history books and stories, like Newton discovering gravity when an apple fell on his head [...]]]></description>
			<content:encoded><![CDATA[<h3>Wednesday 7th &#8211; Seminar</h3>
<h4>The Myths of Innovation &#8211; How to Lead Breakthrough Projects | <a href="http://www.scottberkun.com">Scott Berkun</a></h4>
<p>We always tend to think that the moment of creation or when the innovation happens is that mythical moment we all know through history books and stories, like Newton discovering gravity when an apple fell on his head or when Archimedes on the bathtub screamed &#8216;Eureka&#8217; after working on his theory of flotation, and many others. The truth is that behind that moment of epiphany there are large moments of hard work and study and failures and persistence. In other words things just doesn&#8217;t happen. We work through them. We might get lucky and see them become successful and change humanity or we might just see them die (most of the times). Here&#8217;s an outline of those myths.</p>
<p>Successful innovation requires:</p>
<ul>
<li>Ability to generate ideas</li>
<li>Ability to develop ideas into solutions</li>
<li>Comfort with risk, failure and uncertainty</li>
<li>Willingness to be unpopular</li>
<li>Market awareness</li>
<li>Talent for persuasion</li>
<li>Sensitivity to social and organizational dynamics</li>
<li>Resources</li>
<li>Patience</li>
</ul>
<p>Forces that impede innovation: Why managers are trained to stop innovation?</p>
<p>Management was born for conservation</p>
<ul>
<li>Developed for factories, banks &amp; railroads</li>
<li>Defined manager centric authority model</li>
<li>Profits fueled birth of American business schools</li>
<li>Creative lifecycle of a corporation
<ul>
<li>Entrepreneur (high risk) -&gt; Corporation (low risk)</li>
</ul>
</li>
</ul>
<p>How innovation happens?</p>
<p>Most innovation happen through</p>
<ul>
<li>Committed work by experts</li>
<li>Unexpected discovery followed by work</li>
<li>Outsiders w/ideas (who work hard)</li>
<li>Hard work, risk and luck required</li>
</ul>
<p>To successfully create, what does an innovator need?</p>
<ul>
<li>A motivation or direction</li>
<li>Experimentation / Curiosity</li>
<li>Persistent attitude towards setbacks</li>
<li>Ability to recognize new directions</li>
<li>Ignorance or ability to ignore, status quo</li>
<li>Threshold for risk &amp; comfort w/uncertainty</li>
<li>Commitment to hard work</li>
</ul>
<p>On creative thinking, be always willing to be embarrassed. Creativity demands more on intimacy than intellect or genius.</p>
<p>Simple approach?</p>
<ul>
<li>Ideas are combination of other ideas. Explore, research, take what&#8217;s good from others.</li>
<li>Combinations: increase pool of ideas</li>
<li>Inhibitions: reduce fears and boxes</li>
<li>Persistence. Something that will be written often.</li>
</ul>
<p>How to grow creative environments and teams?</p>
<p>One of the key aspects is defining roles and where one with the other connect to implement and make that creative process work, without conflicting with each other. This many times takes time and effort to develop but as with anything else, is a challenge.</p>
<p>Some risk, fears and idea killers we might have heard or thought:</p>
<ul>
<li>If my idea fails, I am a failure</li>
<li>I may look like an idiot</li>
<li>Uncertainty makes me uncomfortable</li>
<li>I&#8217;m not sure that I&#8217;m right</li>
<li>That&#8217;s not how we do things here</li>
<li>Our existing customers and partners will not like this</li>
<li>How will this become profitable</li>
</ul>
<p>To overcome this concerns think in terms of this three key words. Inspiration, Incubation, Execution cycle</p>
<ul>
<li>Inspiration: ideas and passion</li>
<li>Incubator: Place to experiment with ideas</li>
<li>Execution: ideas manifested in plan for release</li>
<li>Leader&#8217;s job: recognize where ideas die</li>
<li>Incubation: hack day, 20% time (google has kind of a policy where developers and engineers can do whatever they want during 20% of the week. The idea is to spark innovative and cool projects)</li>
<li>Requirements: failure expected and encouraged</li>
<li>Stupid mistakes vs. interesting mistakes.</li>
</ul>
<p>These points pretty much resume what Scott presented on this seminar. You can find more about Scott <a href="http://www.scottberkun.com">here.</a> Or you can read his <a href="http://www.scottberkun.com/the-book-the-art-of-project-management/">two</a> <a href="http://www.amazon.com/Myths-Innovation-Scott-Berkun/dp/0596527055">books</a> which are great sources of information.</p>
<p style="text-align: right; font-size: 8px">Blogged with <a href="http://www.flock.com/blogged-with-flock" title="Flock" target="_new">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.killervoltage.com/index.php/2007/11/21/impressions-on-the-user-interface-12-conference-in-bosto-part-ii-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Impressions on the User Interface 12 conference in Boston &#8211; Part I</title>
		<link>http://www.killervoltage.com/index.php/2007/11/11/impressions-on-the-user-interface-12-conference-in-boston-part-i/</link>
		<comments>http://www.killervoltage.com/index.php/2007/11/11/impressions-on-the-user-interface-12-conference-in-boston-part-i/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 18:02:28 +0000</pubDate>
		<dc:creator>Ivan Frantar</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.killervoltage.com/?p=31</guid>
		<description><![CDATA[Where to begin. Well, if I think in terms of one picture is one thousand words and by one picture I allow myself to swap it to one word describing a thousand other, I would simply say AMAZING!. But I&#8217;ll try to go a bit further than a word because you might want to hear [...]]]></description>
			<content:encoded><![CDATA[<p>Where to begin. Well, if I think in terms of one picture is one thousand words and by one picture I allow myself to swap it to one word describing a thousand other, I would simply say <a href="http://www.uie.com/events/uiconf/2007/" title="UI 12 website">AMAZING!</a>. But I&#8217;ll try to go a bit further than a word because you might want to hear some of the details and that&#8217;s probably a bit more than a thousand words.</p>
<p>Following, I made sort of an overview of the conferences I assisted and some impressions I had on them and what key points they covered.</p>
<h3>Sunday 4th</h3>
<p>Reception and registration</p>
<p>Ok, there&#8217;s nothing exiting about the registration as anyone can image, but the reception right after was pretty cool. People little by little start to pop in the salon where it was hosted and breaking the initial iciness, groups start to mingle and exchange backgrounds, professions, origins, and share the love (the love for what they do, as far as I was able to tell). Even though not many people showed up (just a minor portion of people), it was interesting to meet some of the people that came and find out who they were and lay the ground for future encounters across the week.</p>
<h3>Monday 5th &#8211; Seminar</h3>
<h4>Site Seeing: Communicating Successfully with visual design by <a href="http://www.lukew.com/">Luke Wroblewski</a> | <a href="http://www.yahoo.com">Yahoo!</a></h4>
<p>I didn&#8217;t know much about Luke until this day. What caught my interest on him was particularly the fact that he is the <a href="http://www.uxmatters.com/authors/archives/2005/11/luke_wroblewski.php">Principal Designer at Yahoo!</a> which is one of my favourite sites at present, design-wise and on the huge development work and improvements yahoo has had in the last few years.</p>
<p><a href="http://www.uie.com/events/uiconf/2007/sessions/wroblewski/">Luke&#8217;s speech and exercises</a> pointed key points on design and on how to deal with the people determining what things should be considered for the pages you work on, from marketing people, CEO&#8217;s or whoever you might have to deal with that makes most of the decisions of what goes in the site. For us as designers many times we get very frustrated with the &#8216;design design process&#8217; where we want to do something, then we are told what should we be aiming at and then not understanding perhaps the considerations each field has. Luke with a series of examples from sites he&#8217;s worked on and others illustrated interesting points on the how, what, and why things were done to ease the pase and shorten the call to action for customers, and of course, speak the same language of stakeholders.</p>
<p>During some of the breaks of <a href="http://www.uie.com/events/uiconf/2007/sessions/wroblewski/">Luke&#8217;s seminar</a>, I came across <a href="http://www.andybudd.com">Andy Budd</a>, which as many web designers know (or might know) he wrote the book <a href="http://www.cssmastery.com/">CSS Mastery</a>, which in turn also has as a co-author <a href="http://www.cameronmoll.com/">Cameron Moll</a> whom he spoke at the conference. In Andy&#8217;s case he was assisting as an attendant and unfortunatelly not giving any conference. However I was able to exchange a few words with him and as a corny fan I couldn&#8217;t avoid saying how cool and influencial his book was on my day to day work. So, it was good to talk to him, even though the talk rounded more about our backgrounds than anything else.</p>
<p><strong><em>Website:</em></strong> <a href="http://www.lukew.com/">http://www.lukew.com/</a></p>
<h3>Tuesday 6th</h3>
<p>This day was divided in several conferences of one hour and a half each. Since there where many running simultaneously I assisted to the ones it was physically possible to assist. But &#8216;believe-you-me&#8217; if there would have been a way to assist to them all, I would definitely have. Anyway, these are the ones I went to:</p>
<h4>The Secrets of Killer Web Content by Gerry McGovern</h4>
<p>This presentation in essence was mainly about the content of your web site, disregarding much of the design aspect of the web site. That being said, the focus went on how to use the words and language that identify your audience. On how to talk to people, knowing that they don&#8217;t have time to try to understand what you are intending to say or figure out your site. They come to your site, knowing what they want and they want to get out of it with a fulfilling result, being that a sale, information or whatever it is they are in your site for. The main point is to address your audience needs, fill it, and shorten the path to an action. So for that reason, cut the bullshit, go to the point, and give them the best acurate options.</p>
<p>Another point that he remarked was the under use or misuse of &#8216;links&#8217;, saying that they represent the quintessence of the web. Through a series of funny examples he exemplified how changing even a word on a link, could create a much clearer understanding of what you&#8217;ll get out of it, not to mention the improvement on the clicking rate. He went through some slides with examples of websites doing horrendously bad and how a simple change improved drastically the performance.</p>
<p>And even another point he remarked was how to study peoples search habits using <a href="http://google.com/trends">Google Trends</a> where you can see what people is searching for. He went through search patterns for the same thing with different words and how they could have more impact if you know how people will be searching when they search for information.</p>
<p>In a few words it was a killer presentation by Mr. McGovern.</p>
<p><strong><em>Website:</em></strong> <a href="http://www.gerrymcgovern.com/">http://www.gerrymcgovern.com/</a></p>
<h4>Best Practices for Form Design: Bridging the Gap with Your Customers by Luke Wroblewski</h4>
<p>I assist this presentation simply because I deal a lot with forms at my present job. One of the constant things we bitch about is that they are boring, hard to make them look fun and usable and usually makes your site looks ugly. Luke on it&#8217;s previous seminar went a little bit through forms design and it looked promising. As far as he went, it was interesting enough. However, on this specific presentation about forms he gave I didn&#8217;t see much difference on the previous on regards of &#8220;expanding&#8221; on the topic and I really felt that I should have assisted other conference instead.</p>
<p>So, since I didn&#8217;t mention the forms thingy on the the Site Seeing seminar section I wrote (read seminar on monday 5th), I&#8217;ll say here that overall he covered a good deal of studies made regarding effectivelly positioning elements of form (labels, input fields, buttons, etc) on pages to achieve more confortability for the user at the time of filling forms and not creating confusion by the time the call the action of submitting information. For instance one person asked: &#8220;Ok, it seems that you can position the label in several ways and still being legible to people. So, what&#8217;s the best approach then? What&#8217;s the difference?&#8221; The answer was (as in many other questions): &#8220;It depends&#8221;. For instance he mentioned the difference between top align labels with left align labels and right align labels. Just to point some ot the benefits of one over the other I&#8217;ll simply point one on each:</p>
<p>The top align labels, minimize the time of completion and the scanning process has a vertical eye path. The left align labels, enables a more specific label scanning and requires less vertical space. The right align labels, have a clear association with label and input field and of course, requires less vertical space. There are more that can be pointed but you can find out more on the references i&#8217;ll put at the end of the article.</p>
<p>Another key point he mention is the process of validation, with the emphasis made on inline validation so you don&#8217;t have to jump from page to page or reload the page if something got spooky. For these practices, Jared went also on his presentation on Creating Rich User Experiences and the use of Ajax about how the technology could help to improve the experience.</p>
<p><strong><em>Website:</em></strong> <a href="http://www.lukew.com/resources/articles/web_forms.html">http://www.lukew.com/resources/articles/web_forms.html</a></p>
<h4>Magic and Mental Models: Using Illusion to Simplify Design by Jared Spool</h4>
<p>On this presentation, Jared went through the creation of illussions for our web pages. Not only we all find out that he is really a good magician, but that it actually made sense with the magic counterpart we have to do for our websites to create a good user experience. There a couple of things I would like to remark about this presentation in terms of web &#8216;illusion&#8217;. For one thing is the level of simplicity we need to bring to our audiences in order for people to get what they want from our sites and then, how cleverly we can hide the level of complexity from them. In other words, let the complexity fall into the background and simplicity come into the foreground. This simple pattern is not easily achievable in many cases, and that&#8217;s what we need to work extensibly in order to create richfull user experiences or that illusion.</p>
<p>The other I would like to mention is the example he use with the work of <a href="http://roslingsblogger.blogspot.com/">Hans Rosling</a> and his work on <a href="http://www.ted.com/index.php/talks/view/id/92?gclid=CPq49t3w1I8CFQK8aAod40Zb-A">animating data on statistics</a>. One of the interesting things Hans Rosling have done is outputting data, more precisely outputting boring data like statistics on markets, child rates, life expectancy between developing countries and rich countries, etc. into animated charts. His idea primarily goes in the sense that there&#8217;s a lot of data buried on databases that nobody has a fucking clue it exist, and if it &#8216;exist&#8217;, nobody know what it is, what it means or more importantly why should it matter. What he did is through a series of animated charts, show the movement of that data through years and how easily you can see the differences and understand that data. whereas done on data tables, it&#8217;s impossible to get a sense or value of that information. You can check this presentation he did on the topic. Very interesting.</p>
<p><strong><em>Website:</em></strong> <a href="http://">http://www.uie.com/</a></p>
<h4><a href="http://www.scottberkun.com/essays/56-creative-thinking-hacks/">Creative Thinking Hacks</a> by <a href="http://www.scottberkun.com/">Scott Berkun</a></h4>
<p>This one as well as the seminar were without a doubt my favourites ones. Not only because of the intensity and energy Scott transmitt when presenting but, because the topics he cover are applicable in any field you might work on. Really, it&#8217;s not only about technology, web, usability, etc. but also about how to get to know better you creativity process, where your ideas come from, when you ideas come, how you accept that for one good idea you have there are many other that are complete shite and what you should do to filter the good ones and things like that. Also is good mentioning right up front that both of his books (<a href="http://www.scottberkun.com/the-book-the-art-of-project-management/">The Art of Project Management</a> and <a href="http://www.amazon.com/Myths-Innovation-Scott-Berkun/dp/0596527055">The Myths of Innovation</a>) are very good sources of information, entertaining and educative. So, without getting much in the way of the ideas covered on this conference I&#8217;ll outline the main concepts that reververated on my mind and you think about them:</p>
<p><strong>Combination:</strong> Ideas are made from other ideas.</p>
<p><strong>Inhibition:</strong> As you remove unnecesary assumptions (fears included), your solutions become more creative</p>
<p><strong>Environment:</strong> Each person has different triggers for being more or less creative. Discover the place where you are more creative, the time you are more creative. Where those moments of enlightment happen.</p>
<p><strong>Persistence:</strong> If you do something creative, you&#8217;ll have a moment of uncertainty. If you fail, fail again, fail better till you get it right.</p>
<p><strong>Hacks:</strong> This are pretty much some ideas he outlined to optimize the performance in the ones listed above:</p>
<ul>
<li><strong>#1 Journal:</strong> Write down your thoughts. Even if it is the craziest inimaginable shit. Write it down, who knows it might help you later on if not, who cares.</li>
<li><strong>#2 Escape:</strong> Switch environments, dissasociation helps the inconscious to pop in and take over. One of the examples mentioned was that ideas sometimes come while you are in the shower.</li>
<li><strong>#3 Invert:</strong> Solve the opposite problem you were trying to solve. Or for instance, if you are working in project A and you get stuck, start working in Project B, if you get stuck on project B, keep going with Project A and so forth.</li>
<li><strong>#4 Partner:</strong> Find a partner or work together with someone. Ideas flow better between two than if you are alone. If you can&#8217;t find a partner, find a rival.</li>
<li><strong>#5 Fail:</strong> Take risks. Taking risk mean that subsecuently you&#8217;ll fail. If you are not failing you are not doing something creative or difficult. Again, fail, fail better.</li>
<li><strong>#6 Plan for roadblocks:</strong> Why did you ideas fail? Politics, loss of motivation, ran out of money, couldn&#8217;t convince key person, etc. Committ effort to overcome this ideas.</li>
<li><strong>#7 Switch modes:</strong> Ideas could be discovered visually, verbally, audibly, physically. If you are stuck, find a new way to represent the problem, using a different mode of communication.</li>
<li><strong>#8 Do something new:</strong> any field of study you know nothing about guarantees a new field of ideas. Find out about things you know nothing about.</li>
</ul>
<p><strong><em>Website:</em></strong> <a href="http://www.scottberkun.com/">http://www.scottberkun.com/</a></p>
<h4><a href="http://www.mobilewebbook.com/">Mobile Web Design</a> by <a href="http://www.cameronmoll.com">Cameron Moll</a></h4>
<p>Cameron&#8217;s presentation I would say it was ok. Not very intense, slow pace but quite informative. He pretty much cover key points of what he has written on his book, <a href="http://www.mobilewebbook.com/">Mobil Web Design</a>. He gave a bit of a historical overview between some of the major inventions till today to point how, from everything else, Mobile phones beat the records (2.7 billion of phones in 30 years!) Some of the key points on his presentation were:</p>
<ul>
<li>India has become the fastest cellular market in the world</li>
<li>China recently added its 301-millineth subscriber, a number which exceeds the entire US population</li>
</ul>
<p>How many people is accessing the web through phones?</p>
<ul>
<li>In the UK, 5 million people accessed the web with a mobile device compared to 30 million with a PC in January 2007</li>
<li>In the US, 30 million compared to 176 million, same period</li>
<li>In Japan, an estimated 53.6 million accessed the web with a mobile device in June 2007, nearly equaling the 53.7 million who accessed the web from a PC</li>
</ul>
<p>So, what do we understand by mobile web?</p>
<ul>
<li>Fundamentally, &#8216;mobile&#8217; refers to the user, and not the device itself or the application.</li>
<li>Great design yields meaningful communication</li>
<li>Mobile design is the discipline of communicating within an environment of mobility where context is king.</li>
<li>Precisely target mobile users needs, making the best possible use of technology.</li>
</ul>
<p>Then, what&#8217;s the best thing to do?</p>
<ul>
<li>Do nothing with you code. Keep alway present that the underlying standards for the web, regardless of device, person or place, are the same: semantic markup, separation of structure and presentation, accessibility, etc.</li>
<li>Reduce images and styling</li>
<li>Optimize the your content for the phone. Remember, context is king.</li>
</ul>
<p><strong><em>Website:</em></strong> <a href="http://www.cameronmoll.com">http://www.cameronmoll.com</a></p>
<p>So, I&#8217;ll cut it here. I think is enough for a blog entry so far. Perhaps a bit more that conventionally done. So, stick around. I&#8217;ll write about the following to days of the conference soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.killervoltage.com/index.php/2007/11/11/impressions-on-the-user-interface-12-conference-in-boston-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BarCamp Dublin 2007</title>
		<link>http://www.killervoltage.com/index.php/2007/02/18/barcamp-dublin-2007/</link>
		<comments>http://www.killervoltage.com/index.php/2007/02/18/barcamp-dublin-2007/#comments</comments>
		<pubDate>Sun, 18 Feb 2007 18:52:18 +0000</pubDate>
		<dc:creator>Ivan Frantar</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.killervoltage.com/?p=10</guid>
		<description><![CDATA[It&#8217;s coming to Dublin on April 21st. What is BarCamp? It is an informal gathering of people from technical and business backgrounds, where information and experiences are exchanged. The event is geared towards sharing knowledge and learning from others and there is a policy of encouraging active participation in all discussions. The event is free [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s coming to Dublin on April 21st.</p>
<p><strong>What is BarCamp?</strong></p>
<p>It is an informal gathering of people from technical and business backgrounds, where information and experiences are exchanged. The event is geared towards sharing knowledge and learning from others and there is a policy of <a href="http://barcamp.org/TheRulesOfBarCamp">encouraging active participation</a> in all discussions.</p>
<p>The event is free of charge but you are encouraged to sign up so attendees can be estimated.</p>
<p>For more information you can check <a href="http://www.iqcontent.com/blog/2007/02/barcamp-dublin-21st-april-2007">here</a> or <a href="http://barcampdublin.com/">here</a>.</p>
<p>Thanks <a href="http://www.keithosullivan.com">Keith</a> for passing the info.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.killervoltage.com/index.php/2007/02/18/barcamp-dublin-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
