SlideShare a Scribd company logo
1 of 65
Download to read offline
AUGUST 14 2010




Developing for the Mobile Web
 SocialDevCamp Chicago




  We craft engaging interactive experiences on open & sustainable platforms

  — Scott Robbin
  — scott@weightshift.com
Developing for the Mobile Web           SOCIALDEVCAMP CHICAGO




Agenda
 01      App or Mobile Website?

 02      Walkthrough of a simple site

 03      Questions
Developing for the Mobile Web   SOCIALDEVCAMP CHICAGO




Who?
Developing for the Mobile Web                SOCIALDEVCAMP CHICAGO




Who?
• Have an understanding of HTML, CSS and how websites
  are delivered.
Developing for the Mobile Web                SOCIALDEVCAMP CHICAGO




Who?
• Have an understanding of HTML, CSS and how websites
  are delivered.
• Have experience with JavaScript.
Developing for the Mobile Web                    SOCIALDEVCAMP CHICAGO




Who?
• Have an understanding of HTML, CSS and how websites
  are delivered.
• Have experience with JavaScript.
• Know how to use FTP and ability to edit .htaccess or
  Apache config files.
HTML5
Developing for the Mobile Web   SOCIALDEVCAMP CHICAGO




  01
App or Mobile
Website?
Developing for the Mobile Web           SOCIALDEVCAMP CHICAGO




 01    Should I build an app or mobile website?
Developing for the Mobile Web                   SOCIALDEVCAMP CHICAGO




 01    Should I build an app or mobile website?
• Will my product require the use of a camera, microphone
  or other device-specific hardware?
Developing for the Mobile Web                         SOCIALDEVCAMP CHICAGO




 01    Should I build an app or mobile website?
• Will my product require the use of a camera, microphone
  or other device-specific hardware?
• Will it access the address book, media library or
  common user data?
Developing for the Mobile Web                         SOCIALDEVCAMP CHICAGO




 01    Should I build an app or mobile website?
• Will my product require the use of a camera, microphone
  or other device-specific hardware?
• Will it access the address book, media library or
  common user data?
• Will I charge for my product using an app store as the
  payment processor?
Developing for the Mobile Web                         SOCIALDEVCAMP CHICAGO




 01    Should I build an app or mobile website?
• Will my product require the use of a camera, microphone
  or other device-specific hardware?
• Will it access the address book, media library or
  common user data?
• Will I charge for my product using an app store as the
  payment processor?
• Will I send push notifications or need background
  processes?
Developing for the Mobile Web   SOCIALDEVCAMP CHICAGO




 01    Mobile websites:
Developing for the Mobile Web    SOCIALDEVCAMP CHICAGO




 01    Mobile websites:
• Can access geolocation info.
Developing for the Mobile Web          SOCIALDEVCAMP CHICAGO




 01    Mobile websites:
• Can access geolocation info.
• Provide offline caching and storage.
Developing for the Mobile Web          SOCIALDEVCAMP CHICAGO




 01    Mobile websites:
• Can access geolocation info.
• Provide offline caching and storage.
• Handle touch and gesture events.
Developing for the Mobile Web                   SOCIALDEVCAMP CHICAGO




 01    Mobile websites:
• Can access geolocation info.
• Provide offline caching and storage.
• Handle touch and gesture events.
• Are easily deployed (new versions and bug fixes).
Developing for the Mobile Web                    SOCIALDEVCAMP CHICAGO




 01    Mobile websites:
• Can access geolocation info.
• Provide offline caching and storage.
• Handle touch and gesture events.
• Are easily deployed (new versions and bug fixes).
• Are cross-platform (Android, iPhone, webOS, etc.).
Developing for the Mobile Web     SOCIALDEVCAMP CHICAGO




 01    Other things to consider
Developing for the Mobile Web                SOCIALDEVCAMP CHICAGO




 01    Other things to consider
• Are you building this site from scratch?
Developing for the Mobile Web                SOCIALDEVCAMP CHICAGO




 01    Other things to consider
• Are you building this site from scratch?
• User-Agent sniffing
Developing for the Mobile Web                SOCIALDEVCAMP CHICAGO




 01    Other things to consider
• Are you building this site from scratch?
• User-Agent sniffing
• Subdomain or .mobi
Developing for the Mobile Web   SOCIALDEVCAMP CHICAGO




  02
Walkthrough of a
simple site
Developing for the Mobile Web         SOCIALDEVCAMP CHICAGO




 02    Walkthrough of a simple site
Developing for the Mobile Web         SOCIALDEVCAMP CHICAGO




 02    Walkthrough of a simple site
      01 — Progressive Enhancement
Developing for the Mobile Web                                           SOCIALDEVCAMP CHICAGO




01 — Progressive Enhancement




                              Aaron Gustafson, A List Apart
        http://www.alistapart.com/articles/understandingprogressiveenhancement/

02   Walkthrough of a simple site
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




01 — Progressive Enhancement




02   Walkthrough of a simple site
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




01 — Progressive Enhancement




02   Walkthrough of a simple site
Developing for the Mobile Web         SOCIALDEVCAMP CHICAGO




 02    Walkthrough of a simple site
      01 — Progressive Enhancement
Developing for the Mobile Web         SOCIALDEVCAMP CHICAGO




 02    Walkthrough of a simple site
      01 — Progressive Enhancement
      02 — Responsive Web Design
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




02 — Responsive Web Design




02   Walkthrough of a simple site
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




02 — Responsive Web Design




02   Walkthrough of a simple site
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




02 — Responsive Web Design




02   Walkthrough of a simple site
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




02 — Responsive Web Design




02   Walkthrough of a simple site
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




02 — Responsive Web Design




02   Walkthrough of a simple site
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




02 — Responsive Web Design




02   Walkthrough of a simple site
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




02 — Responsive Web Design




02   Walkthrough of a simple site
Developing for the Mobile Web                                                         SOCIALDEVCAMP CHICAGO




02 — Responsive Web Design




                                    Sam Stephenson, 37signals
     http://37signals.com/svn/posts/2407-device-scale-user-interface-elements-in-ios-mobile-safari


02   Walkthrough of a simple site
Developing for the Mobile Web                                                  SOCIALDEVCAMP CHICAGO




02 — Responsive Web Design




                                 Ethan Marcotte, A List Apart
                   http://www.alistapart.com/articles/responsive-web-design/


02   Walkthrough of a simple site
Developing for the Mobile Web         SOCIALDEVCAMP CHICAGO




 02    Walkthrough of a simple site
      01 — Progressive Enhancement
      02 — Responsive Web Design
Developing for the Mobile Web         SOCIALDEVCAMP CHICAGO




 02    Walkthrough of a simple site
      01 — Progressive Enhancement
      02 — Responsive Web Design
      03 — Make Small, Few Requests
Developing for the Mobile Web                                           SOCIALDEVCAMP CHICAGO




03 — Make Small, Few Requests




                                 Steve Souders, Google
           http://www.stevesouders.com/blog/2010/07/12/mobile-cache-file-sizes/

02   Walkthrough of a simple site
Developing for the Mobile Web                                           SOCIALDEVCAMP CHICAGO




03 — Make Small, Few Requests




                                 Steve Souders, Google
           http://www.stevesouders.com/blog/2010/07/12/mobile-cache-file-sizes/

02   Walkthrough of a simple site
Developing for the Mobile Web                        SOCIALDEVCAMP CHICAGO




03 — Make Small, Few Requests




     Intercept Click Events and Make AJAX Requests
                (e.g. jQuery.history plugin)



02   Walkthrough of a simple site
Developing for the Mobile Web                                          SOCIALDEVCAMP CHICAGO




03 — Make Small, Few Requests




                                             PHP minify
                                    http://code.google.com/p/minify/




02   Walkthrough of a simple site
Developing for the Mobile Web                      SOCIALDEVCAMP CHICAGO




03 — Make Small, Few Requests




                                    SpriteMe.org
02   Walkthrough of a simple site
Developing for the Mobile Web                                                SOCIALDEVCAMP CHICAGO




03 — Make Small, Few Requests




                                       Base64 Encoding
                    http://www.motobit.com/util/base64-decoder-encoder.asp

02   Walkthrough of a simple site
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




03 — Make Small, Few Requests




02   Walkthrough of a simple site
Developing for the Mobile Web         SOCIALDEVCAMP CHICAGO




 02    Walkthrough of a simple site
      01 — Progressive Enhancement
      02 — Responsive Web Design
      03 — Make Small, Few Requests
Developing for the Mobile Web         SOCIALDEVCAMP CHICAGO




 02    Walkthrough of a simple site
      01 — Progressive Enhancement
      02 — Responsive Web Design
      03 — Make Small, Few Requests
      04 — Offline Caching
Developing for the Mobile Web                                              SOCIALDEVCAMP CHICAGO




04 — Offline Caching




                                        W3C: Offline Web Applications
                                    http://www.w3.org/TR/offline-webapps/

02   Walkthrough of a simple site
Developing for the Mobile Web                                              SOCIALDEVCAMP CHICAGO




04 — Offline Caching




                                        W3C: Offline Web Applications
                                    http://www.w3.org/TR/offline-webapps/

02   Walkthrough of a simple site
Developing for the Mobile Web                                              SOCIALDEVCAMP CHICAGO




04 — Offline Caching




                                        W3C: Offline Web Applications
                                    http://www.w3.org/TR/offline-webapps/

02   Walkthrough of a simple site
Developing for the Mobile Web         SOCIALDEVCAMP CHICAGO




 02    Walkthrough of a simple site
      01 — Progressive Enhancement
      02 — Responsive Web Design
      03 — Make Small, Few Requests
      04 — Offline Caching
Developing for the Mobile Web         SOCIALDEVCAMP CHICAGO




 02    Walkthrough of a simple site
      01 — Progressive Enhancement
      02 — Responsive Web Design
      03 — Make Small, Few Requests
      04 — Offline Caching
      05 — Local Storage
Developing for the Mobile Web                                              SOCIALDEVCAMP CHICAGO




05 — Local Storage




                                        W3C: Offline Web Applications
                                    http://www.w3.org/TR/offline-webapps/

02   Walkthrough of a simple site
Developing for the Mobile Web                                              SOCIALDEVCAMP CHICAGO




05 — Local Storage




                                         Lawnchair, Brian Leroux
                               http://blog.westcoastlogic.com/lawnchair/

02   Walkthrough of a simple site
Developing for the Mobile Web                                              SOCIALDEVCAMP CHICAGO




05 — Local Storage




                                         Lawnchair, Brian Leroux
                               http://blog.westcoastlogic.com/lawnchair/

02   Walkthrough of a simple site
Developing for the Mobile Web                                                SOCIALDEVCAMP CHICAGO




05 — Local Storage




                                          jQuery Offline,Yehuda Katz
                                    http://github.com/wycats/jquery-offline

02   Walkthrough of a simple site
Developing for the Mobile Web       SOCIALDEVCAMP CHICAGO




05 — Local Storage




02   Walkthrough of a simple site
Developing for the Mobile Web   SOCIALDEVCAMP CHICAGO




  03
Questions
Developing for the Mobile Web    SOCIALDEVCAMP CHICAGO




Thank you.

 SCOTT ROBBIN
 Twitter: @srobbin
 E-mail: scott@weightshift.com
 Web:     srobbin.com

More Related Content

Recently uploaded

Visualising and forecasting stocks using Dash
Visualising and forecasting stocks using DashVisualising and forecasting stocks using Dash
Visualising and forecasting stocks using Dashnarutouzumaki53779
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your QueriesExploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your QueriesSanjay Willie
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Visualising and forecasting stocks using Dash
Visualising and forecasting stocks using DashVisualising and forecasting stocks using Dash
Visualising and forecasting stocks using Dash
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your QueriesExploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 

Featured

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 

Featured (20)

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 

Developing for the Mobile Web

  • 1. AUGUST 14 2010 Developing for the Mobile Web SocialDevCamp Chicago We craft engaging interactive experiences on open & sustainable platforms — Scott Robbin — scott@weightshift.com
  • 2.
  • 3.
  • 4. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO Agenda 01 App or Mobile Website? 02 Walkthrough of a simple site 03 Questions
  • 5. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO Who?
  • 6. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO Who? • Have an understanding of HTML, CSS and how websites are delivered.
  • 7. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO Who? • Have an understanding of HTML, CSS and how websites are delivered. • Have experience with JavaScript.
  • 8. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO Who? • Have an understanding of HTML, CSS and how websites are delivered. • Have experience with JavaScript. • Know how to use FTP and ability to edit .htaccess or Apache config files.
  • 10. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 App or Mobile Website?
  • 11. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Should I build an app or mobile website?
  • 12. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Should I build an app or mobile website? • Will my product require the use of a camera, microphone or other device-specific hardware?
  • 13. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Should I build an app or mobile website? • Will my product require the use of a camera, microphone or other device-specific hardware? • Will it access the address book, media library or common user data?
  • 14. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Should I build an app or mobile website? • Will my product require the use of a camera, microphone or other device-specific hardware? • Will it access the address book, media library or common user data? • Will I charge for my product using an app store as the payment processor?
  • 15. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Should I build an app or mobile website? • Will my product require the use of a camera, microphone or other device-specific hardware? • Will it access the address book, media library or common user data? • Will I charge for my product using an app store as the payment processor? • Will I send push notifications or need background processes?
  • 16. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Mobile websites:
  • 17. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Mobile websites: • Can access geolocation info.
  • 18. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Mobile websites: • Can access geolocation info. • Provide offline caching and storage.
  • 19. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Mobile websites: • Can access geolocation info. • Provide offline caching and storage. • Handle touch and gesture events.
  • 20. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Mobile websites: • Can access geolocation info. • Provide offline caching and storage. • Handle touch and gesture events. • Are easily deployed (new versions and bug fixes).
  • 21. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Mobile websites: • Can access geolocation info. • Provide offline caching and storage. • Handle touch and gesture events. • Are easily deployed (new versions and bug fixes). • Are cross-platform (Android, iPhone, webOS, etc.).
  • 22. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Other things to consider
  • 23. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Other things to consider • Are you building this site from scratch?
  • 24. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Other things to consider • Are you building this site from scratch? • User-Agent sniffing
  • 25. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 Other things to consider • Are you building this site from scratch? • User-Agent sniffing • Subdomain or .mobi
  • 26. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site
  • 27. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site
  • 28. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site 01 — Progressive Enhancement
  • 29. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 — Progressive Enhancement Aaron Gustafson, A List Apart http://www.alistapart.com/articles/understandingprogressiveenhancement/ 02 Walkthrough of a simple site
  • 30. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 — Progressive Enhancement 02 Walkthrough of a simple site
  • 31. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 01 — Progressive Enhancement 02 Walkthrough of a simple site
  • 32. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site 01 — Progressive Enhancement
  • 33. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site 01 — Progressive Enhancement 02 — Responsive Web Design
  • 34. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 — Responsive Web Design 02 Walkthrough of a simple site
  • 35. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 — Responsive Web Design 02 Walkthrough of a simple site
  • 36. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 — Responsive Web Design 02 Walkthrough of a simple site
  • 37. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 — Responsive Web Design 02 Walkthrough of a simple site
  • 38. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 — Responsive Web Design 02 Walkthrough of a simple site
  • 39. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 — Responsive Web Design 02 Walkthrough of a simple site
  • 40. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 — Responsive Web Design 02 Walkthrough of a simple site
  • 41. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 — Responsive Web Design Sam Stephenson, 37signals http://37signals.com/svn/posts/2407-device-scale-user-interface-elements-in-ios-mobile-safari 02 Walkthrough of a simple site
  • 42. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 — Responsive Web Design Ethan Marcotte, A List Apart http://www.alistapart.com/articles/responsive-web-design/ 02 Walkthrough of a simple site
  • 43. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site 01 — Progressive Enhancement 02 — Responsive Web Design
  • 44. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site 01 — Progressive Enhancement 02 — Responsive Web Design 03 — Make Small, Few Requests
  • 45. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 03 — Make Small, Few Requests Steve Souders, Google http://www.stevesouders.com/blog/2010/07/12/mobile-cache-file-sizes/ 02 Walkthrough of a simple site
  • 46. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 03 — Make Small, Few Requests Steve Souders, Google http://www.stevesouders.com/blog/2010/07/12/mobile-cache-file-sizes/ 02 Walkthrough of a simple site
  • 47. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 03 — Make Small, Few Requests Intercept Click Events and Make AJAX Requests (e.g. jQuery.history plugin) 02 Walkthrough of a simple site
  • 48. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 03 — Make Small, Few Requests PHP minify http://code.google.com/p/minify/ 02 Walkthrough of a simple site
  • 49. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 03 — Make Small, Few Requests SpriteMe.org 02 Walkthrough of a simple site
  • 50. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 03 — Make Small, Few Requests Base64 Encoding http://www.motobit.com/util/base64-decoder-encoder.asp 02 Walkthrough of a simple site
  • 51. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 03 — Make Small, Few Requests 02 Walkthrough of a simple site
  • 52. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site 01 — Progressive Enhancement 02 — Responsive Web Design 03 — Make Small, Few Requests
  • 53. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site 01 — Progressive Enhancement 02 — Responsive Web Design 03 — Make Small, Few Requests 04 — Offline Caching
  • 54. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 04 — Offline Caching W3C: Offline Web Applications http://www.w3.org/TR/offline-webapps/ 02 Walkthrough of a simple site
  • 55. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 04 — Offline Caching W3C: Offline Web Applications http://www.w3.org/TR/offline-webapps/ 02 Walkthrough of a simple site
  • 56. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 04 — Offline Caching W3C: Offline Web Applications http://www.w3.org/TR/offline-webapps/ 02 Walkthrough of a simple site
  • 57. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site 01 — Progressive Enhancement 02 — Responsive Web Design 03 — Make Small, Few Requests 04 — Offline Caching
  • 58. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 02 Walkthrough of a simple site 01 — Progressive Enhancement 02 — Responsive Web Design 03 — Make Small, Few Requests 04 — Offline Caching 05 — Local Storage
  • 59. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 05 — Local Storage W3C: Offline Web Applications http://www.w3.org/TR/offline-webapps/ 02 Walkthrough of a simple site
  • 60. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 05 — Local Storage Lawnchair, Brian Leroux http://blog.westcoastlogic.com/lawnchair/ 02 Walkthrough of a simple site
  • 61. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 05 — Local Storage Lawnchair, Brian Leroux http://blog.westcoastlogic.com/lawnchair/ 02 Walkthrough of a simple site
  • 62. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 05 — Local Storage jQuery Offline,Yehuda Katz http://github.com/wycats/jquery-offline 02 Walkthrough of a simple site
  • 63. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 05 — Local Storage 02 Walkthrough of a simple site
  • 64. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO 03 Questions
  • 65. Developing for the Mobile Web SOCIALDEVCAMP CHICAGO Thank you. SCOTT ROBBIN Twitter: @srobbin E-mail: scott@weightshift.com Web: srobbin.com