<?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>Learning the World &#187; webmontag</title>
	<atom:link href="http://learningtheworld.eu/tag/webmontag/feed/" rel="self" type="application/rss+xml" />
	<link>http://learningtheworld.eu</link>
	<description></description>
	<lastBuildDate>Tue, 06 Nov 2012 00:17:33 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>Web Performance Optimization (WPO)</title>
		<link>http://learningtheworld.eu/2010/web-performance-optimization/</link>
		<comments>http://learningtheworld.eu/2010/web-performance-optimization/#comments</comments>
		<pubDate>Tue, 18 May 2010 15:00:37 +0000</pubDate>
		<dc:creator><![CDATA[Martin Kliehm]]></dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[web standards]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[aol]]></category>
		<category><![CDATA[backend]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[book:isbn=0596522304]]></category>
		<category><![CDATA[book:isbn=0596529309]]></category>
		<category><![CDATA[frontend]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[netflix]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[shopzilla]]></category>
		<category><![CDATA[steve souders]]></category>
		<category><![CDATA[talks]]></category>
		<category><![CDATA[web performance optimization]]></category>
		<category><![CDATA[webmontag]]></category>
		<category><![CDATA[wpo]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://learningtheworld.eu/?p=929</guid>
		<description><![CDATA[Yesterday I held a talk at the Webmontag in Frankfurt about web performance optimization. According to the prophecy <acronym>WPO</acronym> will become an industry like <acronym title="Search Engine Optimization">SEO</acronym> in the near future. Tenni Theurer and Steve Souders began to examine the performance of websites at Yahoo! in 2003, I learned about it in 2006 from Nate Koechley and subsequently blogged about it. […]]]></description>
				<content:encoded><![CDATA[<p>Yesterday I held a talk at the <a href="http://webmontag.de/location/frankfurt/">Webmontag in Frankfurt</a> about <strong>web performance optimization</strong>. According to the prophecy <acronym>WPO</acronym> will become an industry like <acronym title="Search Engine Optimization">SEO</acronym> in the near future. Tenni Theurer and Steve Souders began to examine the performance of websites at Yahoo! in 2003, I learned about it in 2006 from <a href="/2006/atmedia-day-two/#koechley">Nate Koechley</a> and <a href="/2007/performance/">subsequently</a> <a href="/2007/performance-2/">blogged</a> about it. In the meantime Souders published two books about the topic and works today at Google.</p>

<p><object type="application/x-shockwave-flash" data="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=webmontag-performance-2010-100516152854-phpapp01&#038;stripped_title=performancewmfra" width="500" height="412" style="margin-bottom: 1em;"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=webmontag-performance-2010-100516152854-phpapp01&#038;stripped_title=performancewmfra" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/></object></p>

<p>The goal of web performance optimization is to become faster and smaller: research at Yahoo! and Google found that just 10-20% of the perceived loading time is caused by the server. A few years ago we thought performance was exclusively connected to the server. However, 80-90% of the loading time incurs in the frontend. Thus <acronym>WPO</acronym> is more efficient targeting the frontend.</p>

<p>Two important weak points are JavaScript files and the sheer number of files: JavaScript loads sequentially and blocks subsequent code until each file is loaded. Hence it shouldn&rsquo;t be located in the head, but in the foot of a page. Secondly older browsers, in particular Internet Explorer, will only load 2-4 files in parallel. Files queue up and get processed when it&rsquo;s their turn. Therefore aggregation of files is used for reducing the number of HTTP requests.</p>

<p>Several international companies have conducted research or just tracked the effects of optimization.</p>

<h3>Effects of slowness</h3>

<ul><li><strong>Amazon:</strong> 100 ms delay caused a <a href="http://glinden.blogspot.com/2006/11/marissa-mayer-at-web-20.html">1% drop in revenue</a>.</li>
<li><strong>Google:</strong> 400 ms delay caused a <a href="http://en.oreilly.com/velocity2009/public/schedule/detail/8523">0.59% decrease in search requests</a> per user (earlier tests list larger numbers).</li>
<li><strong>Yahoo!:</strong> 400 ms delay caused a <a href="http://slideshare.net/stoyan/dont-make-me-wait-or-building-highperformance-web-applications">5-9% decrease in traffic</a>.</li>
<li><strong>Bing:</strong> 2 seconds delay caused a <a href="http://en.oreilly.com/velocity2009/public/schedule/detail/8523">4.3% drop in revenue</a> per user.</li>
</ul>

<h3>Effects of speed</h3>

<ul><li><strong>Mozilla</strong> made their download page 2.2 seconds faster and was rewarded with an <a href="http://blog.mozilla.com/metrics/category/website-optimization">increase of 15.4% in downloads</a>.</li>
<li><strong>Google Maps</strong> reduced the file volume by 30% and observed a <a href="http://news.cnet.com/8301-10784_3-9954972-7.html">30% increase in map requests</a>.</li>
<li><strong>Netflix</strong> enabled gzip on the server; simply by this single action pages became 13-25% faster and <a href="http://en.oreilly.com/velocity2008/public/schedule/detail/3632">saved 50% of traffic volume</a>!</li>
<li><strong>Shopzilla</strong> succeeded in reducing the loading time from 7 down to 2 seconds, whereby the <a href="http://en.oreilly.com/velocity2009/public/schedule/detail/7709">conversion rate increased by 7-12%</a>, they observed a 25% increase in page requests, they were able to retire 50% of their servers, thus <a href="http://www.stevesouders.com/blog/2008/03/06/how-green-is-your-web-page/">saving energy costs</a>.</li>
<li><strong>AOL</strong> observed the <a href="http://scribd.com/doc/16878352/The-Secret-Weapons-of-the-AOL-Optimization-Team">number of page views</a> on several websites. While the fastest users requested 7-8 pages, the slowest only viewed 3-4.</li></ul>

<p>As a cream topping <strong>Google</strong> recently announced to factor in the <a href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html">site speed as a parameter in web search ranking</a>.</p>

<p>Eventually pages become faster, clients are happy, generate more revenue and page views, while power consumption and CO<sub>2</sub> emissions decrease. Saved the world, again! And if you&rsquo;d like to contribute, start by checking the <a href="http://developer.yahoo.com/performance/rules.html">rules at Yahoo!</a> A few tricks beyond that can be found in the presentation which will be translated soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://learningtheworld.eu/2010/web-performance-optimization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cost-Effectiveness of Accessibility</title>
		<link>http://learningtheworld.eu/2007/accessibility-cost-effectiveness/</link>
		<comments>http://learningtheworld.eu/2007/accessibility-cost-effectiveness/#comments</comments>
		<pubDate>Thu, 12 Jul 2007 19:00:01 +0000</pubDate>
		<dc:creator><![CDATA[Martin Kliehm]]></dc:creator>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[a11y]]></category>
		<category><![CDATA[cost effectiveness]]></category>
		<category><![CDATA[costs]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[germany]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[s5]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[talks]]></category>
		<category><![CDATA[upcoming:event=187929]]></category>
		<category><![CDATA[webmontag]]></category>

		<guid isPermaLink="false">http://learningtheworld.eu/2007/accessibility-cost-effectiveness/</guid>
		<description><![CDATA[Last week I talked at a geek meeting about the <strong>cost-effectiveness of accessibility</strong>. Inspired by Dave Wilton&#8217;s talk at the European Accessibility Forum about their most impressive redesign of the Legal &#38; General website, I decided to do some research and adopt it to the German market. The presentation is now available in German or English.&#160;[&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Last week I talked at a geek meeting about the <strong>cost-effectiveness of accessibility</strong>. Inspired by <a href="/2007/european-accessibility-forum/#wilton">Dave Wilton&rsquo;s talk</a> at the European Accessibility Forum about their most impressive redesign of the Legal&nbsp;&amp; General website, I decided to do some research and adopt it to the German market.</p>

<p>The <strong>presentation is now available for download in <a href="http://download.bluemars.de/webmontag/2007-07-02/en/" title="Slides in English">English</a> or <a href="http://download.bluemars.de/webmontag/2007-07-02/" title="Slides in German">German</a></strong> under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons</a> license, so you can re-use material as long as you quote me.</p>

<p>Let&rsquo;s face it: all of us have heard the phrase <strong>&ldquo;blind people are not our target group,&rdquo;</strong> either from clients or colleagues. There are a few noble souls who actually care about other people&rsquo;s needs, but business is mostly about money.</p>

<p>So I explained <strong>how businesses lose money</strong> by ignoring accessibility. Because accessibility is not only about blind people: it&rsquo;s about color blind, about old people, young people with learning disabilities, or people who are not fluent in a language. Fundamentalists will deny, but there&rsquo;s also a close relation to device independence.</p>

<p>You may decide to ignore &ldquo;a few disabled,&rdquo; but you cannot ignore half of the population: accessibility is becoming a <strong>social and economic imperative</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://learningtheworld.eu/2007/accessibility-cost-effectiveness/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Brain Food</title>
		<link>http://learningtheworld.eu/2007/brain-food/</link>
		<comments>http://learningtheworld.eu/2007/brain-food/#comments</comments>
		<pubDate>Thu, 18 Jan 2007 21:00:02 +0000</pubDate>
		<dc:creator><![CDATA[Martin Kliehm]]></dc:creator>
				<category><![CDATA[conferences]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[@media]]></category>
		<category><![CDATA[@media 2007]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[aria]]></category>
		<category><![CDATA[atmedia]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[e-accessibility]]></category>
		<category><![CDATA[edean]]></category>
		<category><![CDATA[geek meeting]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[ubiquitous web]]></category>
		<category><![CDATA[UbiWeb]]></category>
		<category><![CDATA[unconference]]></category>
		<category><![CDATA[upcoming:event=175023]]></category>
		<category><![CDATA[WAI]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[webmontag]]></category>

		<guid isPermaLink="false">http://learningtheworld.eu/2007/brain-food/</guid>
		<description><![CDATA[There are two (un)conferences on January 29th that I can recommend, and a third in June: the 7th Webmontag in Frankfurt, the First European e-Accessibility Forum in Paris, and @media 2007 in London. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>There are two <strong>(un)conferences</strong> on January 29th that I can recommend, and a third in June:</p>

<ol>
<li>
<p id="webmontag" class="description">The geek meeting in <strong>Frankfurt</strong> known as <strong><a href="http://www.webmontag.de/doku.php?id=frankfurt" class="url summary">Webmontag</a></strong> will be held for the seventh time at the <a href="http://www.brotfabrik.info/index.php?id=10" class="location">Brotfabrik</a>. So far there are <span class="dtstart" title="20070129T1900+0100">short</span> <span class="dtend" title="20070129T2100+0100">lectures</span> about a social photosharing network, semantic webworking <acronym title="peer to peer">P2P</acronym> transactions, and a wireless match maker, but you are free to present your own work and research.</p>

<p>After all, this is an informal meeting organized through a Wiki where you can <strong>participate and share your knowledge</strong>. Not necessarily technical knowledge, also designers, project managers, and information architects have been spotted&nbsp;&mdash; I wish they would speak up more often. Admission is free, so if you are in the Frankfurt area you have no excuse not to attend.</p>
</li>

<li>
<p id="e-accessibility">The second conference almost slipped my radar: it&rsquo;s the <strong><a href="http://inova.snv.jussieu.fr/evenements/colloques/servonline/Description/index_en.php" class="url summary">First European e-Accessibility Forum</a></strong> in <strong class="location">Paris</strong>, organized by the French accessibility entity <a href="http://www.braillenet.org">BrailleNet</a> and <a href="http://www.edean.org"><acronym>EDeAN</acronym></a> (European Design for All e-Accessibility Network). While I can&rsquo;t say much about BrailleNet, EDeAN is the official accessibility outreach organization of the <acronym title="European Union">EU</acronym>. So far they have kept a low profile doing politics and research in the background, but it&rsquo;s about time more people learn about their existence.</p>

<p class="description">For only &euro;&nbsp;90 you get a day packed with high quality accessibility information from industry leaders: Microsoft&rsquo;s French Technical Director speaks about accessibility in the Web 2.0 context. <acronym>IBM</acronym>s <a href="http://www-03.ibm.com/developerworks/blogs/page/schwer" rel="met colleague">Rich Schwerdtfeger</a>, member of both the <acronym title="Web Accessibility Initiative">WAI</acronym> Protocols and Formats Working Group and the <acronym title="Hypertext Markup Language">HTML</acronym> Working Group, is next with accessible rich internet applications (<a href="http://www.w3.org/TR/aria-roadmap/"><acronym>ARIA</acronym></a>). Among other speakers, there will be <a href="http://www.wait-till-i.com" rel="met colleague">Christian Heilmann</a> (Yahoo!), <a href="http://www.w3.org/People/cooper/" rel="colleague">Michael Cooper</a> (<acronym title="World Wide Web Consortium">W3C</acronym>&nbsp;/ <acronym title="Web Accessibility Initiative">WAI</acronym>), Steven Faulkner (developer of the Web Accessibility Toolbar), Dave Wilton (Legal &amp; General, the insurance company that got best practice credits in the <acronym title="United Kingdom">UK</acronym>&rsquo;s <acronym title="Publicly Available Specification">PAS</acronym>&nbsp;78), Julie Howell (former accessibility champion of the Royal National Institute of the Blind), <a href="http://www.w3.org/People/Dom/" rel="colleague">Dominique Hazaël-Massieux</a> (<acronym>W3C</acronym>), and Miguel González-Sancho (European Commission). They will talk about accessibility and the Mobile Web, the <a href="http://www.w3.org/UbiWeb/"><acronym title="Ubiquitous Web">UbiWeb</acronym></a>, harmonization of European accessibility and a European label, or present a couple of case studies from print, banking, and job websites.</p>
<p>You better be fast for that one, registration is only open until Saturday, <span class="dtstart" title="20070129T0900+0100">January</span> <span class="dtend" title="20070129T1800+0100">20th</span>.</p>
</li>

<li id="atmedia" class="description">Last but not least the website for the <strong><a href="http://www.vivabit.com/atmedia2007/" class="url summary">@media</a> conference</strong> has been updated yesterday, so you can register for the event in <strong><span class="location">London</span>, June <span class="dtstart" title="20070607T0930+0100">7th</span> and <span class="dtend" title="20070608T1800+0100">8th</span></strong>, or earlier in Asia and the <acronym title="United States">US</acronym>. <a href="/2006/atmedia-day-one/">Last year&rsquo;s event</a> was fun and inspirational, so start fast-talking your employer now!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://learningtheworld.eu/2007/brain-food/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
