SlideShare a Scribd company logo
1 of 37
Download to read offline
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>


More Related Content

What's hot

Introduction to WordPress Class 1
Introduction to WordPress Class 1Introduction to WordPress Class 1
Introduction to WordPress Class 1Adrian Mikeliunas
 
Accessibility with WordPress
Accessibility with WordPressAccessibility with WordPress
Accessibility with WordPressJoseph Dolson
 
Introduction To WordPress
Introduction To WordPressIntroduction To WordPress
Introduction To WordPressCraig Bailey
 
WordPress Webinar Training Presentation
WordPress Webinar Training PresentationWordPress Webinar Training Presentation
WordPress Webinar Training PresentationMayeCreate Design
 
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 websiteArvind Srinivasan
 
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 knowChris Love
 
Wave training
Wave trainingWave training
Wave trainingSean Yo
 
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 2014Vanguard Visions
 
Responsivedesign 7-3-2012
Responsivedesign 7-3-2012Responsivedesign 7-3-2012
Responsivedesign 7-3-2012Thomas Carney
 
Wcmtl top-10-multisite
Wcmtl top-10-multisiteWcmtl top-10-multisite
Wcmtl top-10-multisiteAndrea Rennick
 
Introduction to WordPress Security
Introduction to WordPress SecurityIntroduction to WordPress Security
Introduction to WordPress SecurityNile Flores
 
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 LibraryDarylyne Provost
 
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 minssanjeevchugh
 

What's hot (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 to Mobile tech briefing 2013

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 webIvano Malavolta
 
Workshop HTML5+PhoneGap by Ivano Malavolta
Workshop HTML5+PhoneGap by Ivano Malavolta Workshop HTML5+PhoneGap by Ivano Malavolta
Workshop HTML5+PhoneGap by Ivano Malavolta Commit University
 
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 worldKenneth Rohde Christiansen
 
Mobile Web High Performance
Mobile Web High PerformanceMobile Web High Performance
Mobile Web High PerformanceAmjad Rafique
 
Bruce Lawson Opera Indonesia
Bruce Lawson Opera IndonesiaBruce Lawson Opera Indonesia
Bruce Lawson Opera Indonesiabrucelawson
 
Bruce lawson-over-the-air
Bruce lawson-over-the-airBruce lawson-over-the-air
Bruce lawson-over-the-airbrucelawson
 
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_drupalGreen For All
 
E commerce p1 edit
E commerce p1 editE commerce p1 edit
E commerce p1 editmmm2k
 
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 2013Jon Arne Sæterås
 
Skill Session - Web Multi Device
Skill Session - Web Multi DeviceSkill Session - Web Multi Device
Skill Session - Web Multi Devicefilirom1
 
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
 
Drupalcamp LA Aug 2009
Drupalcamp LA Aug 2009Drupalcamp LA Aug 2009
Drupalcamp LA Aug 2009Tom Deryckere
 
Mobile web application development
Mobile web application developmentMobile web application development
Mobile web application developmentVince Aggrippino
 
Don't touch the mobile parts
Don't touch the mobile partsDon't touch the mobile parts
Don't touch the mobile partsFrancesco Fullone
 
Optimizing content for the "mobile web"
Optimizing content for the "mobile web"Optimizing content for the "mobile web"
Optimizing content for the "mobile web"Chris Mills
 
HTML5 Webinar - Mind Storm Software
HTML5 Webinar - Mind Storm SoftwareHTML5 Webinar - Mind Storm Software
HTML5 Webinar - Mind Storm SoftwareRomin Irani
 
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 DeveloperTellago
 

Similar to 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
 
Skill Session - Web Multi Device
Skill Session - Web Multi DeviceSkill Session - Web Multi Device
Skill Session - Web Multi Device
 
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...
 
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
 

Recently uploaded

Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 

Recently uploaded (20)

Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 

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>