SlideShare a Scribd company logo
WIFI: Linksys (unprotected)
Welcome to PreDevCamp! Wifi: linksys (unencrypted)
Introductions Name/handle 3 tags
I can haz Pre?
IDE (TextMate)
SDK Installed?
webOS experience
HTML/Javascript experience
Javascript Frameworks PROTOTYPE SCRIPTACULOUS
HTML5 knowledge?
CANVAS interest
GPS interest
Accelerometer interest
Background apps
What’s your app? Twitter Foursquare Porting iPhone apps GPS loggers Productivity/todo app Exercise logger
Schedule 10:00		Doors open 10:30 		Welcome session 10:45 to 12:30 	Intro to Pre development 12:30 to 1:30 	Lunch 1:30 to 6:00 	Open hacking & more talks 6:00 to 6:30 	Demo your app & prizes! 6:30 			Closing remarks 7:00 			Cleanup 8:00 			Afterparty
Before we begin… Who needs the SDK? Got Windows 7 and having trouble?
Ready? Let’s begin!
Go into dev mode upupdowndownleftrightleftrightbastart
Got root? http://tr.im/preRoot
Mac users Type novaterm at the command line…done!
Windows users Novaterm proxy @ http://tr.im/novaterm
Specs Top bar: 50px 480px Notification bar: 20px up to 240px Shrink screenshots by 65% 320px
Resources http://webos-internals.org http://precentral.net http://developer.palm.com PreDevCamp IRC! Irc.freenode.net #predevcamp
Intro to app dev Hello world!
Generate a project palm-generate -p "{title:'Hello World', id:com.mystuff.hello, version:'1.0.0'}" HelloWorld
File Structure app/ images/ Appinfo.json Icon.png Index.html Sources.json
appinfo.json {"id": "com.palm.developer","version": "1.0.0","vendor": "My Company","type": "web","main": "index.html","title": "Hello World","icon": "icon.png" }
sources.json [{"source": "appassistantsapp-assistant.js"},{"source": "appassistantsstage-assistant.js"},{"source": "appassistantsmain-assistant.js","scenes": "main"}]
Icon.png 64x64
Index.html <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 	"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> 	<title>Hello World</title> 	<script src="/usr/palm/frameworks/mojo/mojo.js" type="text/javascript" x-mojo-version="1" /> 	<!-- application stylesheet should come in after the one loaded by the framework --> 	<link href="stylesheets/helloworld.css" media="screen" rel="stylesheet" type="text/css" /> </head> <body> 	<h2>This text verifies your application is running.</h2> 	<p> 	To create a fully functional Palm application create a scene and remove this text from index.html.   	See the documentation on Palm Applications for more information on creating applications and scenes. 	</p> </body> </html>
App/ Assistants Javascript files that govern the html files Models Data sources Views HTML that defines the layout of a screen
Scenes Any particular view/assistant combination in an app is called a “scene”
Make a scene! palm-generate -t new_scene -p "name:First" HelloWorld
First-scene.html <div id="main" class="palm-hasheader"><div class="palm-header">Header</div><div id="count" class="palm-body-text">0</div><div id="MyButton" name="MyButton1" x-mojo-element="Button"></div> </div>
Stage-assistant.js function StageAssistant () { } StageAssistant.prototype.setup = function() {this.controller.pushScene('first'); }
First-assistant.js FirstAssistant.prototype.handleButtonPress = function(event){this.total++;this.controller.get('count').update(this.total); }
First-assistant.js (cont.) FirstAssistant.prototype.setup = function() {// set the initial total and display itthis.total=0;this.controller.get('count').update(this.total);// a local object for button attributesthis.buttonAttributes = {};// a local object for button modelthis.buttonModel = {buttonLabel : 'TAP HERE',buttonClass : '',disabled : false};// set up the buttonthis.controller.setupWidget("MyButton", this.buttonAttributes, this.buttonModel);// bind the button to its handlerMojo.Event.listen(this.controller.get('MyButton'), Mojo.Event.tap, this.handleButtonPress.bind(this));}
Recap Theater metaphor Stage: manages the whole app View: the layout/structure of a page (HTML) Assistant: the code/behavior of a page (JS) Scene: combo of a view and an assistant
Models …
Install your app! palm-launch –d usb|tcpcom.example.app
Package for Homebrew Install palm-package
Services API GPS Accelerometer palm-install –l –d usb
GPS this.controller.serviceRequest('palm://com.palm.location', {method:“getCurrentPosition",parameters:{}, //accuracy=int,maximumAge=int,responseTime=intonSuccess:{}, //pointer to async functiononFailure:{} //}}); onSuccessFunction = function(heading,hAccur,lat,lon,t,vel,vAccur) { … } onFailureFunction = function(errorCode) { … }
getReverseLocation this.controller.serviceRequest('palm://com.palm.location', {method:"getReverseLocation",parameters:{}, //latitude=double,longitude=doubleonSuccess:{},onFailure:{}}}); onSuccessFunction = function(address,errorCode) { … } onFailureFunction = function(errorCode) { … }
Continuous track this.trackingHandle = this.controller.serviceRequest('palm://com.palm.location', {method:"startTracking",parameters: {"subscribe":true},onSuccess: this.trackingSuccessResponseHandler.bind(this),onFailure: this.trackingFailedResponseHandler.bind(this)}); this.trackingHandle.cancel();
Accelerometer Set ability to switch orientation if (this.controller.stageController.setWindowOrientation) {this.controller.stageController.setWindowOrientation("free"); } Run code when orientation changes this.controller.listen(document, 'orientationchange',this.handleOrientation.bindAsEventListener(this)); handleOrientation(event) { … } //.position=[1:5], .roll=float, .pitch=float
Shake! this.controller.listen(document, 'shakestart', this.handleShaking.bindAsEventListener(this)); this.controller.listen(document, 'shaking', this.handleShaking.bindAsEventListener(this)); this.controller.listen(document, 'shakeend', this.handleShaking.bindAsEventListener(this)); handleShaking(event) = { … } //.magnitude=float (in number of g’s of acceleration)
In the raw this.controller.listen(document, 'acceleration',this.handleAcceleration.bindAsEventListener(this)); handleAcceleration(event) = { … } //.accelX=float,.accelY=float,.accelZ=float 					//.time=time
Debugging palm-launch -icom.example.app …then launch Inspector (part of SDK)
HTML5! Take it away, Ted!

More Related Content

Similar to PreDevCamp San Diego slides

21 android2 updated
21 android2 updated21 android2 updated
21 android2 updated
GhanaGTUG
 
Building apps for multiple devices
Building apps for multiple devicesBuilding apps for multiple devices
Building apps for multiple devices
Terry Ryan
 
Yahoo Mobile Widgets
Yahoo Mobile WidgetsYahoo Mobile Widgets
Yahoo Mobile Widgets
Jose Palazon
 
Flex For Flash Developers Ff 2006 Final
Flex For Flash Developers Ff 2006 FinalFlex For Flash Developers Ff 2006 Final
Flex For Flash Developers Ff 2006 Final
ematrix
 
Developing in android
Developing in androidDeveloping in android
Developing in android
Christopher Decker
 
IBM Lotus Notes Domino XPages and XPages for Mobile
IBM Lotus Notes Domino XPages and XPages for MobileIBM Lotus Notes Domino XPages and XPages for Mobile
IBM Lotus Notes Domino XPages and XPages for Mobile
Chris Toohey
 
Creating Yahoo Mobile Widgets
Creating Yahoo Mobile WidgetsCreating Yahoo Mobile Widgets
Creating Yahoo Mobile Widgets
Ricardo Varela
 
LinkedIn Platform at LeWeb 2010
LinkedIn Platform at LeWeb 2010LinkedIn Platform at LeWeb 2010
LinkedIn Platform at LeWeb 2010
Adam Trachtenberg
 
OpenSocial - GTUG Stockholm Meeting Oct 1 2009
OpenSocial - GTUG Stockholm Meeting Oct 1 2009OpenSocial - GTUG Stockholm Meeting Oct 1 2009
OpenSocial - GTUG Stockholm Meeting Oct 1 2009
Jacob Gyllenstierna
 
The Basics Of Page Creation
The Basics Of Page CreationThe Basics Of Page Creation
The Basics Of Page Creation
Wildan Maulana
 
Developing Applications for WebOS
Developing Applications for WebOSDeveloping Applications for WebOS
Developing Applications for WebOS
Chuq Von Rospach
 
Grails and Dojo
Grails and DojoGrails and Dojo
Grails and Dojo
Sven Haiges
 
Rey Bango - HTML5: polyfills and shims
Rey Bango -  HTML5: polyfills and shimsRey Bango -  HTML5: polyfills and shims
Rey Bango - HTML5: polyfills and shimsStarTech Conference
 
Beautifully Usable, Multiple Screens Too
Beautifully Usable, Multiple Screens TooBeautifully Usable, Multiple Screens Too
Beautifully Usable, Multiple Screens Too
Motorola Mobility - MOTODEV
 
Enterprise AIR Development for JavaScript Developers
Enterprise AIR Development for JavaScript DevelopersEnterprise AIR Development for JavaScript Developers
Enterprise AIR Development for JavaScript Developers
AndreCharland
 
HTML5 Overview
HTML5 OverviewHTML5 Overview
HTML5 Overview
reybango
 

Similar to PreDevCamp San Diego slides (20)

21 android2 updated
21 android2 updated21 android2 updated
21 android2 updated
 
Building apps for multiple devices
Building apps for multiple devicesBuilding apps for multiple devices
Building apps for multiple devices
 
BluePrint Mobile Framework
BluePrint Mobile FrameworkBluePrint Mobile Framework
BluePrint Mobile Framework
 
Yahoo Mobile Widgets
Yahoo Mobile WidgetsYahoo Mobile Widgets
Yahoo Mobile Widgets
 
Flex For Flash Developers Ff 2006 Final
Flex For Flash Developers Ff 2006 FinalFlex For Flash Developers Ff 2006 Final
Flex For Flash Developers Ff 2006 Final
 
Developing in android
Developing in androidDeveloping in android
Developing in android
 
IBM Lotus Notes Domino XPages and XPages for Mobile
IBM Lotus Notes Domino XPages and XPages for MobileIBM Lotus Notes Domino XPages and XPages for Mobile
IBM Lotus Notes Domino XPages and XPages for Mobile
 
Creating Yahoo Mobile Widgets
Creating Yahoo Mobile WidgetsCreating Yahoo Mobile Widgets
Creating Yahoo Mobile Widgets
 
LinkedIn Platform at LeWeb 2010
LinkedIn Platform at LeWeb 2010LinkedIn Platform at LeWeb 2010
LinkedIn Platform at LeWeb 2010
 
OpenSocial - GTUG Stockholm Meeting Oct 1 2009
OpenSocial - GTUG Stockholm Meeting Oct 1 2009OpenSocial - GTUG Stockholm Meeting Oct 1 2009
OpenSocial - GTUG Stockholm Meeting Oct 1 2009
 
The Basics Of Page Creation
The Basics Of Page CreationThe Basics Of Page Creation
The Basics Of Page Creation
 
Developing Applications for WebOS
Developing Applications for WebOSDeveloping Applications for WebOS
Developing Applications for WebOS
 
Grails and Dojo
Grails and DojoGrails and Dojo
Grails and Dojo
 
Tugas Pw [6]
Tugas Pw [6]Tugas Pw [6]
Tugas Pw [6]
 
Tugas Pw [6] (2)
Tugas Pw [6] (2)Tugas Pw [6] (2)
Tugas Pw [6] (2)
 
Rey Bango - HTML5: polyfills and shims
Rey Bango -  HTML5: polyfills and shimsRey Bango -  HTML5: polyfills and shims
Rey Bango - HTML5: polyfills and shims
 
Ui patterns
Ui patternsUi patterns
Ui patterns
 
Beautifully Usable, Multiple Screens Too
Beautifully Usable, Multiple Screens TooBeautifully Usable, Multiple Screens Too
Beautifully Usable, Multiple Screens Too
 
Enterprise AIR Development for JavaScript Developers
Enterprise AIR Development for JavaScript DevelopersEnterprise AIR Development for JavaScript Developers
Enterprise AIR Development for JavaScript Developers
 
HTML5 Overview
HTML5 OverviewHTML5 Overview
HTML5 Overview
 

Recently uploaded

Winter Festivities in Italy
Winter Festivities in ItalyWinter Festivities in Italy
Winter Festivities in Italy
Time for Sicily
 
Uk Visa Complete Guide and application process
Uk Visa Complete Guide and application processUk Visa Complete Guide and application process
Uk Visa Complete Guide and application process
pandeypratikwgblindi
 
Ooty Honeymoon Package from Chennai.docx
Ooty Honeymoon Package from Chennai.docxOoty Honeymoon Package from Chennai.docx
Ooty Honeymoon Package from Chennai.docx
Ooty Heritage Tours and Travels
 
LUXURY TRAVEL THE ULTIMATE TOKYO EXPERIENCE FROM SINGAPORE.pdf
LUXURY TRAVEL THE ULTIMATE TOKYO EXPERIENCE FROM SINGAPORE.pdfLUXURY TRAVEL THE ULTIMATE TOKYO EXPERIENCE FROM SINGAPORE.pdf
LUXURY TRAVEL THE ULTIMATE TOKYO EXPERIENCE FROM SINGAPORE.pdf
Diper Tour
 
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to VisitExploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
Spade & Palacio Tours
 
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdfAgence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
MICEboard
 
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
Bush Troop Safari
 
The Power of a Glamping Go-To-Market Accelerator Plan.pptx
The Power of a Glamping Go-To-Market Accelerator Plan.pptxThe Power of a Glamping Go-To-Market Accelerator Plan.pptx
The Power of a Glamping Go-To-Market Accelerator Plan.pptx
RezStream
 
Antarctica- Icy wilderness of extremes and wonder
Antarctica- Icy wilderness of extremes and wonderAntarctica- Icy wilderness of extremes and wonder
Antarctica- Icy wilderness of extremes and wonder
tahreemzahra82
 
Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WAPaddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
River Recreation - Washington Whitewater Rafting
 
Get tailored experience with Stonehenge tours from London
Get tailored experience with Stonehenge tours from LondonGet tailored experience with Stonehenge tours from London
Get tailored experience with Stonehenge tours from London
London Country Tours
 
How To Talk To a Live Person at American Airlines
How To Talk To a Live Person at American AirlinesHow To Talk To a Live Person at American Airlines
How To Talk To a Live Person at American Airlines
flyn goo
 
Understanding the Running Costs of Electric Scooters.pptx
Understanding the Running Costs of Electric Scooters.pptxUnderstanding the Running Costs of Electric Scooters.pptx
Understanding the Running Costs of Electric Scooters.pptx
Zivah ElectriVa Private Limited
 
Jose RIZAL History and his travel Paris to berlin
Jose RIZAL History and his travel Paris to berlinJose RIZAL History and his travel Paris to berlin
Jose RIZAL History and his travel Paris to berlin
MaryGraceArdalesLope
 
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto RicoExploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
Caribbean Breeze Adventures
 
How To Change Name On Volaris Ticket.pdf
How To Change Name On Volaris Ticket.pdfHow To Change Name On Volaris Ticket.pdf
How To Change Name On Volaris Ticket.pdf
namechange763
 
TOP 10 Historic Places To See in Kuruskhetra.
TOP 10 Historic Places To See in Kuruskhetra.TOP 10 Historic Places To See in Kuruskhetra.
TOP 10 Historic Places To See in Kuruskhetra.
ujjwalsethi113
 
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
bljeremy734
 

Recently uploaded (18)

Winter Festivities in Italy
Winter Festivities in ItalyWinter Festivities in Italy
Winter Festivities in Italy
 
Uk Visa Complete Guide and application process
Uk Visa Complete Guide and application processUk Visa Complete Guide and application process
Uk Visa Complete Guide and application process
 
Ooty Honeymoon Package from Chennai.docx
Ooty Honeymoon Package from Chennai.docxOoty Honeymoon Package from Chennai.docx
Ooty Honeymoon Package from Chennai.docx
 
LUXURY TRAVEL THE ULTIMATE TOKYO EXPERIENCE FROM SINGAPORE.pdf
LUXURY TRAVEL THE ULTIMATE TOKYO EXPERIENCE FROM SINGAPORE.pdfLUXURY TRAVEL THE ULTIMATE TOKYO EXPERIENCE FROM SINGAPORE.pdf
LUXURY TRAVEL THE ULTIMATE TOKYO EXPERIENCE FROM SINGAPORE.pdf
 
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to VisitExploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
Exploring Montreal's Artistic Heritage Top Art Galleries and Museums to Visit
 
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdfAgence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
Agence Régionale du Tourisme Grand Est - brochure MICE 2024.pdf
 
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
4 DAYS MASAI MARA WILDEBEEST MIGRATION SAFARI TOUR PACKAGE KENYA
 
The Power of a Glamping Go-To-Market Accelerator Plan.pptx
The Power of a Glamping Go-To-Market Accelerator Plan.pptxThe Power of a Glamping Go-To-Market Accelerator Plan.pptx
The Power of a Glamping Go-To-Market Accelerator Plan.pptx
 
Antarctica- Icy wilderness of extremes and wonder
Antarctica- Icy wilderness of extremes and wonderAntarctica- Icy wilderness of extremes and wonder
Antarctica- Icy wilderness of extremes and wonder
 
Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WAPaddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
Paddle, Float, and Explore The Ultimate River Tour Experience in Monitor, WA
 
Get tailored experience with Stonehenge tours from London
Get tailored experience with Stonehenge tours from LondonGet tailored experience with Stonehenge tours from London
Get tailored experience with Stonehenge tours from London
 
How To Talk To a Live Person at American Airlines
How To Talk To a Live Person at American AirlinesHow To Talk To a Live Person at American Airlines
How To Talk To a Live Person at American Airlines
 
Understanding the Running Costs of Electric Scooters.pptx
Understanding the Running Costs of Electric Scooters.pptxUnderstanding the Running Costs of Electric Scooters.pptx
Understanding the Running Costs of Electric Scooters.pptx
 
Jose RIZAL History and his travel Paris to berlin
Jose RIZAL History and his travel Paris to berlinJose RIZAL History and his travel Paris to berlin
Jose RIZAL History and his travel Paris to berlin
 
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto RicoExploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
Exploring Heritage The Ultimate Cultural Tour in Palmer, Puerto Rico
 
How To Change Name On Volaris Ticket.pdf
How To Change Name On Volaris Ticket.pdfHow To Change Name On Volaris Ticket.pdf
How To Change Name On Volaris Ticket.pdf
 
TOP 10 Historic Places To See in Kuruskhetra.
TOP 10 Historic Places To See in Kuruskhetra.TOP 10 Historic Places To See in Kuruskhetra.
TOP 10 Historic Places To See in Kuruskhetra.
 
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
欧洲杯开户-信誉的欧洲杯开户-正规欧洲杯开户|【​网址​🎉ac123.net🎉​】
 

PreDevCamp San Diego slides