The document discusses building Windows 8 apps that connect directly to cloud services without a server. It provides an agenda that includes introductions, an overview of the Twilio API for building telephony apps, how web apps currently use a client-server-cloud model compared to the future Windows 8-cloud model, and resources for building apps including code examples using promises. The document encourages coding examples to demonstrate building cloud-connected Windows 8 apps.
Convert to study materialsBETA
Transform any presentation into ready-made study materialselect from outputs like summaries, definitions, and practice questions.
1 of 19
Download to read offline
More Related Content
Seattle code camp 2012
1. Look Ma, No Server!
Building Windows 8 Apps That
Connect Directly to Cloud Services
17. http://windows.github.com/
Paul Betts GitHub San Francisco, CA
https://github.com/fitzgen/github-api
Nick Fitzgerald Mozilla - Bellingham, WA
https://gist.github.com/2938355
Resources
18. WinJS-style Promises
doSomething(params, success_cb, fail_cb);
Everyone Else
doSomething(params, callback);
function callback(err, res) {
if (err) {
// handle error
}
else {
// woo hoo!
}
}
WinJS vs. the world