SlideShare a Scribd company logo
Developing web applications in 2010




             Ignacio Coloma - icoloma@extrema-sistemas.com
                                  http://extrema-sistemas.com
What?
 Enumerate changes and best practices
in the last ten years of web development
Why?
Because your application
  will be judged solely
 by its presentation layer.
PC specs, circa 1999
http://en.wikipedia.org/wiki/Moore's_law
Average PC 98/99
  500 mHz PII / K6
    64 MB RAM
    10 GB HDD
10 GB ?
                         iPod nano: 8-16 GB
                         iPod classic: 160 GB




http://store.apple.com
500 MHz + 64MB RAM?
iPhone 3GS: 600 MHz + 256 MB RAM
HTML 4.0-4.1
Developed between Apr 98 – Dec 99
Select multi
<select name="toppings" multiple="multiple" size="5">
   <option value="mushrooms">mushrooms</option>
   <option value="greenpeppers">green peppers</option>
   <option value="onions">onions</option>
   <option value="tomatoes">tomatoes</option>
   <option value="olives">olives</option>
</select>
Checkboxes
<label><input type="checkbox" name="mushrooms"> mushrooms</label>
<label><input type="checkbox" name="greenpeppers"> green peppers</label>
<label><input type="checkbox" name="onions"> onions</label>
<label><input type="checkbox" name="tomatoes"> tomatoes</label>
<label><input type="checkbox" name="olives"> olives</label>
Two selects
Multiple Autocompleter
Javascript
Javascript in the browser is a reality
BUT
SEO
    Google can index HTML, but
it will not execute your javascript code
Browser history
Users are familiar with the “back” button.
Security




http://www.cenzic.com/downloads/Cenzic_AppSecTrends_Q3-Q4-2009.pdf
Accessibility
  WAI-ARIA: Accessible Rich Internet Applications Suite




http://www.w3.org/WAI/intro/aria
Size of the accessible market?
               45 million blind people worldwide
          314 million people with significant vision loss
                   87% in developing countries




http://www.who.int/mediacentre/factsheets/fs282/en/
5 Million blind people
As much as the total population of Madrid
40 million vision loss
                         31th country in the world
                     (bigger than Argentina, Canada,
                           Greece or Australia)




http://en.wikipedia.org/wiki/List_of_countries_by_population
How many of you
are planning to get old?
Spanish pop. > 65 compared to 15-64




http://www.oecd.org/dataoecd/17/18/35379092.pdf
Javascript libraries
Prototype, JQuery, Mootools, YUI, Ext
Progressive enhancement
     Design HTML only
     Add javascript later
Old
<input onchange=”foo()”>
New
<input id=”price”>
<script>
  $('price').on('change', foo);
</script>
Browser             Server




Javascript transforms into this:            Server produces this:
<html>
           <head>
              <link type=”text/css”>
              <script type=”text/javascript”>
           </head>
Old
           <body>
              <div>My contents</div>
           </body>

      </html>
<html>
           <head>
              <link type=”text/css”>
           </head>

New        <body>
              <div>My contents</div>
              <script type=”text/javascript”>
           </body>

      </html>
Performance
                  .1 to 1 sec: no feedback necessary
             1 to 10 sec: add some feedback (spinners)
                 > 10 sec: the user is no longer here




http://www.useit.com/papers/responsetime.html
Impact on revenue
                  Google: +500 ms → -20% traffic
              Yahoo: +400 ms → -5-9% full-page traffic
                   Amazon: +100 ms → -1% sales
                 Firefox: +2 seg → -15% downloads


Evaluation performed on the front page.
http://stevesouders.com/docs/wordcamp-20090530.ppt
http://blog.mozilla.com/metrics/2010/04/05/firefox-page-load-speed-–-part-ii/
Still not convinced?
          Starting 2010, Google has added performance
                    to the PageRank algorithm




http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html
Improve performance
                              By following 14 rules




http://stevesouders.com/hpws/rules.php
Measure, don't guess
What's faster, Facebook or LinkedIn?
Measure, don't guess




http://webpagetest.org
Other tools
Google PageSpeed
     YSlow!
 Firebug net tab
Best thing for performance
       Aim for simplicity
http://stuffthathappens.com/blog/2008/03/05/simplicity/
CSS
                         We will talk about that, too




Photo: http://www.flickr.com/photos/cassidy/46518700/
CSS 2.1
Sept 2009
CSS 3
Still a working draft
        -moz-*
      -webkit-*
         -o-*
New pseudo-classes
                      :first-child (all but IE6)
                      :last-child (all but IE)
                      :nth-child(odd|even) (all but IE)



                                        ...maybe you see a pattern here...
http://www.quirksmode.org/css/contents.html
New attribute selectors
   [att=value] (all but IE6)
Rounded borders
.mystyle {
  border: 2px solid #888;
  -mox-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
}
box-shadow
.mystyle {
  -moz-box-shadow: 0 0 10px #000;
  -webkit-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
}
Lots of new selectors
           border-image, CSS transitions, text-shadow,
                  @font-face, CSS transforms...




http://a.deveria.com/caniuse/#agents=All&eras=All&cats=CSS3&statuses=All
Photo: http://www.flickr.com/photos/dailypic/2168453083/
Browser market share
Chrome




http://ajaxian.com/archives/getting-users-to-upgrade-their-browsers
Internet Explorer




http://ajaxian.com/archives/getting-users-to-upgrade-their-browsers
Firefox




http://ajaxian.com/archives/getting-users-to-upgrade-their-browsers
Safari




http://ajaxian.com/archives/getting-users-to-upgrade-their-browsers
Trends




http://marketshare.hitslink.com/browser-market-share.aspx?qprid=1#
Pay attention to your audience

Stats for jquery.com
(29/3/2009)


http://royal.pingdom.com/2010/04/16/does-internet-explorer-have-more-than-a-billion-users/
http://ejohn.org/blog/determining-browser-market-share/
IE6 on the way out
37signals, youtube, google apps, apple
Hacks for IE
IE-specific stylesheets
<!--[if IE 7]>
<link type="text/css" href="/ie_hacks7.css" rel="stylesheet">
<![endif]-->

<!--[if lte IE 6]>
<link type="text/css" href="/ie_hacks6.css" rel="stylesheet">
<![endif]-->

http://www.quirksmode.org/css/condcom.html
IE-specific selectors
/* IE 6 and below */
     * html #uno { color: red }
     #once { _color:blue }
/* IE 7 and below */
     *:first-child+html #dos { color: red }
     #doce { *color: blue } /* or #color:blue */
/* IE 7 and above */
     html >body #tres { color: red }
/* IE 8 and above */
     html >/**/body #cuatro { color: red }

http://ajaxian.com/archives/css-browser-hacks
IE7.js
                                   by Dean Edwards
                                   ie7.js, ie8.js, ie9.js




http://code.google.com/p/ie7-js/
HTML5
     <canvas>
       <svg>
<video>, <audio>
 GeoLocation API
Offline applications
Client-side storage
   Web workers
       ...etc...
Flash
                   Poor SEO
                   Not open
            Not supported on iPad
Open alternatives (HTML5, CSS3, SVG, Canvas)
Things are changing
                   Youtube supports <video>
              Google Maps 3 uses Geolocation API
             Google Gears stalled waiting for HTML 5




http://www.flickr.com/photos/cooldesignz/1794226846/
Questions?
Thanks!




Ignacio Coloma - icoloma@extrema-sistemas.com
                     http://extrema-sistemas.com
                     http://icoloma.blogspot.com

More Related Content

PDF
S314011 - Developing Composite Applications for the Cloud with Apache Tuscany
PDF
Pagespeed what, why, and how it works
PPTX
HTML5 Real-Time and Connectivity
PPT
Getting started with Catalyst and extjs
PDF
Building an HTML5 Video Player
PDF
Front End Performance
PDF
Front end performance tip
PPTX
Front end performance optimization
S314011 - Developing Composite Applications for the Cloud with Apache Tuscany
Pagespeed what, why, and how it works
HTML5 Real-Time and Connectivity
Getting started with Catalyst and extjs
Building an HTML5 Video Player
Front End Performance
Front end performance tip
Front end performance optimization

What's hot (20)

ODP
Practical catalyst
PDF
High Performance Web Sites, With Ads: Don't let third parties make you slow
PPTX
PageSpeed and SPDY
PDF
HTML5 multimedia - where we are, where we're going
ODP
Pyramid Lighter/Faster/Better web apps
PDF
Strangers In The Night: Ruby, Rack y Sinatra - Herramientas potentes para con...
PDF
CouchDB Google
PPTX
Nahlédněte za oponu VersionPressu
PDF
Developing High Performance Web Apps
PPT
PDF
Tuning Web Performance
PDF
HTML 5 - Overview
PDF
Crank Up Your Apps With TorqueBox
PDF
Pinkoi Platform
PDF
Aligning Ember.js with Web Standards
ODP
SPARQLing Services
PPTX
Ruby in the Browser - RubyConf 2011
ODP
Joomla 3 Component programmeren met RAD - Joomladagen 2014
PDF
Introducing Immutant
PDF
Plongée dans l'écosystème Laravel
Practical catalyst
High Performance Web Sites, With Ads: Don't let third parties make you slow
PageSpeed and SPDY
HTML5 multimedia - where we are, where we're going
Pyramid Lighter/Faster/Better web apps
Strangers In The Night: Ruby, Rack y Sinatra - Herramientas potentes para con...
CouchDB Google
Nahlédněte za oponu VersionPressu
Developing High Performance Web Apps
Tuning Web Performance
HTML 5 - Overview
Crank Up Your Apps With TorqueBox
Pinkoi Platform
Aligning Ember.js with Web Standards
SPARQLing Services
Ruby in the Browser - RubyConf 2011
Joomla 3 Component programmeren met RAD - Joomladagen 2014
Introducing Immutant
Plongée dans l'écosystème Laravel
Ad

Similar to Developing web applications in 2010 (20)

PDF
Even faster web sites
KEY
Ease into HTML5 and CSS3
PDF
Modern Browser Support
PPTX
Pearls and Must-Have Tools for the Modern Web / .NET Developer
PPT
Welcome to IE8 - Integrating Your Site With Internet Explorer 8
PPT
IE8 Dev Overview_pp2003
PDF
Chris Wilson @ FOWA Feb 07
PDF
HTML5 and friends - Institutional Web Management Workshop 2010
PDF
Drawing the Line with Browser Compatibility
PPTX
A Lap Around Internet Explorer 8
PDF
Modern Web Development
KEY
Html5 Primer
PDF
HTML5 kickstart - Brooklyn Beta workshop 21.10.2010
PDF
A Period of Transition
PPTX
10 Tips to make your Website lightning-fast - SMX Stockholm 2012
ODP
Html5
PDF
Bruce Lawson, Web Development 2.0, SparkUp! Poznan Poland
PDF
HTML5 Who what where when why how
PDF
HTML5: Introduction
ZIP
Html5 public
Even faster web sites
Ease into HTML5 and CSS3
Modern Browser Support
Pearls and Must-Have Tools for the Modern Web / .NET Developer
Welcome to IE8 - Integrating Your Site With Internet Explorer 8
IE8 Dev Overview_pp2003
Chris Wilson @ FOWA Feb 07
HTML5 and friends - Institutional Web Management Workshop 2010
Drawing the Line with Browser Compatibility
A Lap Around Internet Explorer 8
Modern Web Development
Html5 Primer
HTML5 kickstart - Brooklyn Beta workshop 21.10.2010
A Period of Transition
10 Tips to make your Website lightning-fast - SMX Stockholm 2012
Html5
Bruce Lawson, Web Development 2.0, SparkUp! Poznan Poland
HTML5 Who what where when why how
HTML5: Introduction
Html5 public
Ad

More from Ignacio Coloma (6)

ODP
Codemotion appengine
ODP
Css for nondesigners
ODP
Css3 101
ODP
Developing and testing ajax components
ODP
Caching web contents in the browser
PDF
Lessons learned on the web layer
Codemotion appengine
Css for nondesigners
Css3 101
Developing and testing ajax components
Caching web contents in the browser
Lessons learned on the web layer

Recently uploaded (20)

PPTX
Cloud computing and distributed systems.
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Empathic Computing: Creating Shared Understanding
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Approach and Philosophy of On baking technology
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Modernizing your data center with Dell and AMD
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
cuic standard and advanced reporting.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Cloud computing and distributed systems.
NewMind AI Monthly Chronicles - July 2025
Empathic Computing: Creating Shared Understanding
The AUB Centre for AI in Media Proposal.docx
Approach and Philosophy of On baking technology
Encapsulation_ Review paper, used for researhc scholars
Chapter 3 Spatial Domain Image Processing.pdf
Modernizing your data center with Dell and AMD
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Dropbox Q2 2025 Financial Results & Investor Presentation
NewMind AI Weekly Chronicles - August'25 Week I
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
20250228 LYD VKU AI Blended-Learning.pptx
cuic standard and advanced reporting.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf

Developing web applications in 2010