SlideShare una empresa de Scribd logo
1 de 37
Descargar para leer sin conexión
Mobile: Web & Apps
Scotty Logan
About Me
IT Architect in IT Services
Started at Stanford in 1999
20th anniversary of my first web page
Worked on web “stuff” since then
but never as a “web developer”
An instigator of ITS / UComm Mobile Aware
Web project
The early days
One of my early web pages
Really basic HTML
<HTML>
<HEAD>
<TITLE>The Tardis WWW Server</TITLE>
</HEAD>
<BODY>
<HR>
<H1>The Tardis WWW Server</H1>
<HR>
<P>
<I>This is a quick description of how the WWW server on</I>
<TT>www.tardis.ed.ac.uk</TT>
<I>is set up, and where all the relevant files live.</I>
</P>
<P>
<I>The pages containing descriptions of the hardware that the
server runs on (a DEC MicroVAX II) have yet to be written.</I>
</P>
<HR>
<P>
<TT>www.tardis</TT> currently runs the
<A HREF="/~www/httpd_docs/index.html">CERN httpd server</A>.
The files used by the server can be split into those belonging to
<A HREF=#user>users</A> and those belonging to the
<A HREF=#server>server</A>.
</P>
Back then that was HTML
Now we call it “Content First”
It was even “mobile friendly”

http://www.stanford.edu/~swl/tardis.html
Back to the Future
For a little while
Survey time
How many of you have an iOS device?
!

iPod Touch
iPhone
iPad
Survey time
How many of you have an Android device?
!

Nexus phone / tablet
Samsung Galaxy
HTC One
etc
etc
Survey time
How many of you have something else?
!

Blackberry
Windows Phone
“feature” phone
Native Apps
Available from app store
Downloaded and installed on device
Available offline
Full device access
camera, location, storage, etc.
Unique development tools for each platform
Separate codebases
Native App Cost
Getting less expensive
Mobile app “factories”
Each additional platform adds cost
Can be offset by charging for app
Only really worth it for iOS and Android
some exceptions for niche markets
Hybrid Apps
Uses frameworks / wrappers like PhoneGap
Created as web apps
Better device access than web
May not look completely native
Easier to support less common platforms
“mostly” one codebase
Can / must be deployed via app store
Web Apps
Like a web site, but more “appy”
HTML, CSS, JavaScript
Inherently multi-platform
One codebase
might include tweaks for some platforms
Used to not be available offline
Less access to device features
HTML5 Web Apps
More access to device features
Location (GPS and compass)
Local storage
Offline applications
Feature support varies by OS and version
http://caniuse.com/
http://modernizr.com/
Native, Hybrid or Web App
It depends
Which platforms do you need to support?
What features do you need?
What’s your budget?
How quickly do you need to make changes?
Web usually faster than app store
Mobile Web Required
Easiest way for people to discover your app
Web App vs Web Site
Mobile web site
Link to app store(s)
No support for devices without apps
Might be unpopular with infrequent users
Mobile web app
Support less mainstream devices
Useful for infrequent users
WTF is mobile anyway?
Laptops are not considered “mobile”
One day I used my laptop in
my home
my local Starbucks
my office
Coupa Cafe (Y2E2)
a vendor’s offices in Los Altos
Desktop
Large high resolution screen
Large memory
Large storage
Fast CPU
Fast network
Always on network
Everything else
Small to medium screen
Small to medium resolution
Small memory
Limited storage
Wide range of CPU speeds
Wide range of network speeds
Sometimes on network
It’s all relative: my laptop
15” screen (up to 2880x1800)
23” monitor (1920x1200) in office
16GB RAM
500GB fast SSD
2.7GHz quad core cpu
801.11n wifi
It’s all relative: my first laptop
12” screen (800x600)
15” monitor (1024x768) in office
72MB RAM
2GB slow hard drive
133MHz single core cpu
10Mbps ethernet via PCMCIA card
It’s all relative: my phone
3.5” screen (960x640)
512MB RAM
64GB flash storage
1GHz dual core cpu
801.11n wifi and 3G GSM
Network Speed
Laptop:
campus wifi: 91Mbps down / 88Mbps up
home wifi: 35Mbps down / 8Mbps up
Phone:
campus wifi: 21Mbps down / 14Mbps up
AT&T 3G: 3Mbps down / <1Mbps up
A new-ish approach:
Responsive Design
History
No mobile web
Separate mobile sites
using mobile web frameworks
Progressive Enhancement
mobile browser & device feature detection
Responsive Design
content first, dynamic layout
Stop. Do not pass GO.

There are many tools to help you
Drupal

Stanford has responsive themes for Drupal
http://itservices.stanford.edu/
WordPress

Many responsive WordPress themes
http://itarch.stanford.edu/blog/
http://emergency.stanford.edu/
Frameworks
For custom apps or sites
Bootstrap
http://getbootstrap.com/
base off our responsive Drupal themes
http://news.stanford.edu/nobel/
Also
http://responsive.vermilion.com/compare.php
http://designinstruct.com/roundups/html5-frameworks/
Doing it
the hard way
Do not do this
This is just
educational
Content First
Back to the past future
<HTML>
<HEAD>
<TITLE>The Tardis WWW Server</TITLE>
</HEAD>
<BODY>
<HR>
<H1>The Tardis WWW Server</H1>
<HR>
<P>
<I>This is a quick description of how the WWW server on</I>
<TT>www.tardis.ed.ac.uk</TT>
<I>is set up, and where all the relevant files live.</I>
</P>
<P>
<I>The pages containing descriptions of the hardware that the
server runs on (a DEC MicroVAX II) have yet to be written.</I>
</P>
<HR>
<P>
<TT>www.tardis</TT> currently runs the
<A HREF="/~www/httpd_docs/index.html">CERN httpd server</A>.
The files used by the server can be split into those belonging to
<A HREF=#user>users</A> and those belonging to the
<A HREF=#server>server</A>.
</P>
Modern version
<!DOCTYPE html>

<html>

<head>

<title>Nobel Laureates</title>

</head>

<body>

<article>

<h1>Kenneth J. Arrow</h1>

<img src=”images/Arrow_68.jpg”>

<a href=”arrow.html”>Economics, 1972</a>

</article>

</body>

</html>


Más contenido relacionado

La actualidad más candente

Responsivedesign 7-3-2012
Responsivedesign 7-3-2012Responsivedesign 7-3-2012
Responsivedesign 7-3-2012
Thomas Carney
 
Wcmtl top-10-multisite
Wcmtl top-10-multisiteWcmtl top-10-multisite
Wcmtl top-10-multisite
Andrea Rennick
 
Creating A Web 2.0 Toolbox For The Academic Library
Creating A Web 2.0 Toolbox For The Academic LibraryCreating A Web 2.0 Toolbox For The Academic Library
Creating A Web 2.0 Toolbox For The Academic Library
Darylyne Provost
 

La actualidad más candente (20)

Introduction to WordPress Class 1
Introduction to WordPress Class 1Introduction to WordPress Class 1
Introduction to WordPress Class 1
 
Accessibility with WordPress
Accessibility with WordPressAccessibility with WordPress
Accessibility with WordPress
 
Caching All The Things
Caching All The ThingsCaching All The Things
Caching All The Things
 
Introduction To WordPress
Introduction To WordPressIntroduction To WordPress
Introduction To WordPress
 
Disruptive code
Disruptive codeDisruptive code
Disruptive code
 
WordPress Webinar Training Presentation
WordPress Webinar Training PresentationWordPress Webinar Training Presentation
WordPress Webinar Training Presentation
 
WordPress Multisite
WordPress MultisiteWordPress Multisite
WordPress Multisite
 
Digital Marketing - Key elements of a website
Digital Marketing - Key elements of a websiteDigital Marketing - Key elements of a website
Digital Marketing - Key elements of a website
 
5 single page application principles developers need to know
5 single page application principles developers need to know5 single page application principles developers need to know
5 single page application principles developers need to know
 
Mobile Web High Performance
Mobile Web High PerformanceMobile Web High Performance
Mobile Web High Performance
 
Wave training
Wave trainingWave training
Wave training
 
Creating and managing a WordPress business website - March 2014
Creating and managing a WordPress business website - March 2014Creating and managing a WordPress business website - March 2014
Creating and managing a WordPress business website - March 2014
 
Responsivedesign 7-3-2012
Responsivedesign 7-3-2012Responsivedesign 7-3-2012
Responsivedesign 7-3-2012
 
Wcmtl top-10-multisite
Wcmtl top-10-multisiteWcmtl top-10-multisite
Wcmtl top-10-multisite
 
Introduction to WordPress Security
Introduction to WordPress SecurityIntroduction to WordPress Security
Introduction to WordPress Security
 
Web design
Web designWeb design
Web design
 
Intro to Web Development
Intro to Web DevelopmentIntro to Web Development
Intro to Web Development
 
WordPress Complete Tutorial
WordPress Complete TutorialWordPress Complete Tutorial
WordPress Complete Tutorial
 
Creating A Web 2.0 Toolbox For The Academic Library
Creating A Web 2.0 Toolbox For The Academic LibraryCreating A Web 2.0 Toolbox For The Academic Library
Creating A Web 2.0 Toolbox For The Academic Library
 
How to setup wordpress blog in 10 mins
How to setup wordpress blog in 10 minsHow to setup wordpress blog in 10 mins
How to setup wordpress blog in 10 mins
 

Similar a Mobile tech briefing 2013

Cold front - bridging the web and the physical world
Cold front - bridging the web and the physical worldCold front - bridging the web and the physical world
Cold front - bridging the web and the physical world
Kenneth Rohde Christiansen
 
How to build_a_mobile_site_with_drupal
How to build_a_mobile_site_with_drupalHow to build_a_mobile_site_with_drupal
How to build_a_mobile_site_with_drupal
Green For All
 
E commerce p1 edit
E commerce p1 editE commerce p1 edit
E commerce p1 edit
mmm2k
 
Responsive web design & mobile web development - a technical and business app...
Responsive web design & mobile web development - a technical and business app...Responsive web design & mobile web development - a technical and business app...
Responsive web design & mobile web development - a technical and business app...
Atos_Worldline
 

Similar a Mobile tech briefing 2013 (20)

HTML5: the new frontier of the web
HTML5: the new frontier of the webHTML5: the new frontier of the web
HTML5: the new frontier of the web
 
Workshop HTML5+PhoneGap by Ivano Malavolta
Workshop HTML5+PhoneGap by Ivano Malavolta Workshop HTML5+PhoneGap by Ivano Malavolta
Workshop HTML5+PhoneGap by Ivano Malavolta
 
Mobile Web
Mobile WebMobile Web
Mobile Web
 
Best Practices for Mobile Web Design
Best Practices for Mobile Web DesignBest Practices for Mobile Web Design
Best Practices for Mobile Web Design
 
Cold front - bridging the web and the physical world
Cold front - bridging the web and the physical worldCold front - bridging the web and the physical world
Cold front - bridging the web and the physical world
 
Mobile Web High Performance
Mobile Web High PerformanceMobile Web High Performance
Mobile Web High Performance
 
Bruce Lawson Opera Indonesia
Bruce Lawson Opera IndonesiaBruce Lawson Opera Indonesia
Bruce Lawson Opera Indonesia
 
Bruce lawson-over-the-air
Bruce lawson-over-the-airBruce lawson-over-the-air
Bruce lawson-over-the-air
 
How to build_a_mobile_site_with_drupal
How to build_a_mobile_site_with_drupalHow to build_a_mobile_site_with_drupal
How to build_a_mobile_site_with_drupal
 
E commerce p1 edit
E commerce p1 editE commerce p1 edit
E commerce p1 edit
 
Html5 & less css
Html5 & less cssHtml5 & less css
Html5 & less css
 
Mobile is slow - Over the Air 2013
Mobile is slow - Over the Air 2013Mobile is slow - Over the Air 2013
Mobile is slow - Over the Air 2013
 
Responsive web design & mobile web development - a technical and business app...
Responsive web design & mobile web development - a technical and business app...Responsive web design & mobile web development - a technical and business app...
Responsive web design & mobile web development - a technical and business app...
 
Skill Session - Web Multi Device
Skill Session - Web Multi DeviceSkill Session - Web Multi Device
Skill Session - Web Multi Device
 
Drupalcamp LA Aug 2009
Drupalcamp LA Aug 2009Drupalcamp LA Aug 2009
Drupalcamp LA Aug 2009
 
Mobile web application development
Mobile web application developmentMobile web application development
Mobile web application development
 
Don't touch the mobile parts
Don't touch the mobile partsDon't touch the mobile parts
Don't touch the mobile parts
 
Optimizing content for the "mobile web"
Optimizing content for the "mobile web"Optimizing content for the "mobile web"
Optimizing content for the "mobile web"
 
HTML5 Webinar - Mind Storm Software
HTML5 Webinar - Mind Storm SoftwareHTML5 Webinar - Mind Storm Software
HTML5 Webinar - Mind Storm Software
 
10 Things To Make You a Great Mobile Web Developer
10 Things To Make You a Great Mobile Web Developer10 Things To Make You a Great Mobile Web Developer
10 Things To Make You a Great Mobile Web Developer
 

Último

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Último (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

Mobile tech briefing 2013

  • 1. Mobile: Web & Apps Scotty Logan
  • 2. About Me IT Architect in IT Services Started at Stanford in 1999 20th anniversary of my first web page Worked on web “stuff” since then but never as a “web developer” An instigator of ITS / UComm Mobile Aware Web project
  • 3. The early days One of my early web pages
  • 4. Really basic HTML <HTML> <HEAD> <TITLE>The Tardis WWW Server</TITLE> </HEAD> <BODY> <HR> <H1>The Tardis WWW Server</H1> <HR> <P> <I>This is a quick description of how the WWW server on</I> <TT>www.tardis.ed.ac.uk</TT> <I>is set up, and where all the relevant files live.</I> </P> <P> <I>The pages containing descriptions of the hardware that the server runs on (a DEC MicroVAX II) have yet to be written.</I> </P> <HR> <P> <TT>www.tardis</TT> currently runs the <A HREF="/~www/httpd_docs/index.html">CERN httpd server</A>. The files used by the server can be split into those belonging to <A HREF=#user>users</A> and those belonging to the <A HREF=#server>server</A>. </P>
  • 5. Back then that was HTML Now we call it “Content First”
  • 6. It was even “mobile friendly” http://www.stanford.edu/~swl/tardis.html
  • 7. Back to the Future For a little while
  • 8. Survey time How many of you have an iOS device? ! iPod Touch iPhone iPad
  • 9. Survey time How many of you have an Android device? ! Nexus phone / tablet Samsung Galaxy HTC One etc etc
  • 10. Survey time How many of you have something else? ! Blackberry Windows Phone “feature” phone
  • 11. Native Apps Available from app store Downloaded and installed on device Available offline Full device access camera, location, storage, etc. Unique development tools for each platform Separate codebases
  • 12. Native App Cost Getting less expensive Mobile app “factories” Each additional platform adds cost Can be offset by charging for app Only really worth it for iOS and Android some exceptions for niche markets
  • 13. Hybrid Apps Uses frameworks / wrappers like PhoneGap Created as web apps Better device access than web May not look completely native Easier to support less common platforms “mostly” one codebase Can / must be deployed via app store
  • 14. Web Apps Like a web site, but more “appy” HTML, CSS, JavaScript Inherently multi-platform One codebase might include tweaks for some platforms Used to not be available offline Less access to device features
  • 15. HTML5 Web Apps More access to device features Location (GPS and compass) Local storage Offline applications Feature support varies by OS and version http://caniuse.com/ http://modernizr.com/
  • 16. Native, Hybrid or Web App It depends Which platforms do you need to support? What features do you need? What’s your budget? How quickly do you need to make changes? Web usually faster than app store
  • 17. Mobile Web Required Easiest way for people to discover your app
  • 18. Web App vs Web Site Mobile web site Link to app store(s) No support for devices without apps Might be unpopular with infrequent users Mobile web app Support less mainstream devices Useful for infrequent users
  • 19. WTF is mobile anyway? Laptops are not considered “mobile” One day I used my laptop in my home my local Starbucks my office Coupa Cafe (Y2E2) a vendor’s offices in Los Altos
  • 20. Desktop Large high resolution screen Large memory Large storage Fast CPU Fast network Always on network
  • 21. Everything else Small to medium screen Small to medium resolution Small memory Limited storage Wide range of CPU speeds Wide range of network speeds Sometimes on network
  • 22. It’s all relative: my laptop 15” screen (up to 2880x1800) 23” monitor (1920x1200) in office 16GB RAM 500GB fast SSD 2.7GHz quad core cpu 801.11n wifi
  • 23. It’s all relative: my first laptop 12” screen (800x600) 15” monitor (1024x768) in office 72MB RAM 2GB slow hard drive 133MHz single core cpu 10Mbps ethernet via PCMCIA card
  • 24. It’s all relative: my phone 3.5” screen (960x640) 512MB RAM 64GB flash storage 1GHz dual core cpu 801.11n wifi and 3G GSM
  • 25. Network Speed Laptop: campus wifi: 91Mbps down / 88Mbps up home wifi: 35Mbps down / 8Mbps up Phone: campus wifi: 21Mbps down / 14Mbps up AT&T 3G: 3Mbps down / <1Mbps up
  • 27. History No mobile web Separate mobile sites using mobile web frameworks Progressive Enhancement mobile browser & device feature detection Responsive Design content first, dynamic layout
  • 28. Stop. Do not pass GO. There are many tools to help you
  • 29. Drupal Stanford has responsive themes for Drupal http://itservices.stanford.edu/
  • 30. WordPress Many responsive WordPress themes http://itarch.stanford.edu/blog/ http://emergency.stanford.edu/
  • 31. Frameworks For custom apps or sites Bootstrap http://getbootstrap.com/ base off our responsive Drupal themes http://news.stanford.edu/nobel/ Also http://responsive.vermilion.com/compare.php http://designinstruct.com/roundups/html5-frameworks/
  • 33. Do not do this
  • 36. Back to the past future <HTML> <HEAD> <TITLE>The Tardis WWW Server</TITLE> </HEAD> <BODY> <HR> <H1>The Tardis WWW Server</H1> <HR> <P> <I>This is a quick description of how the WWW server on</I> <TT>www.tardis.ed.ac.uk</TT> <I>is set up, and where all the relevant files live.</I> </P> <P> <I>The pages containing descriptions of the hardware that the server runs on (a DEC MicroVAX II) have yet to be written.</I> </P> <HR> <P> <TT>www.tardis</TT> currently runs the <A HREF="/~www/httpd_docs/index.html">CERN httpd server</A>. The files used by the server can be split into those belonging to <A HREF=#user>users</A> and those belonging to the <A HREF=#server>server</A>. </P>
  • 37. Modern version <!DOCTYPE html>
 <html>
 <head>
 <title>Nobel Laureates</title>
 </head>
 <body>
 <article>
 <h1>Kenneth J. Arrow</h1>
 <img src=”images/Arrow_68.jpg”>
 <a href=”arrow.html”>Economics, 1972</a>
 </article>
 </body>
 </html>