SlideShare ist ein Scribd-Unternehmen logo
1 von 30
OPEN WEB DEVICE
    First Mobile running

    Firefox OS
Who is this guy?



My name is Francisco Jordano

twitter://mepartoconmigo

github://arcturus

I work for Telefonica Digital o/
A bit of history, please!




At Telefonica we love a open mobile space
A bit of history, please!




     We strongly believe that
web technologies are the way to go
A bit of history, please!




 In the other part of the world,
Mozilla was having the same idea
A bit of history, please!
What’s Firefox OS made of?




The Web is the Platform
What’s Firefox OS made of?
What’s Firefox OS made of?




 Gonk
   Solid linux kernel + drivers ...
What’s Firefox OS made of?




 Gecko
    Magic engine + new APIs



 Gonk
   Solid linux kernel + drivers ...
What’s Firefox OS made of?

 Gaia
      UI based on open web
           technologies


 Gecko
    Magic engine + new APIs



 Gonk
   Solid linux kernel + drivers ...
APIs, APIs, APIs everywhere!




https://wiki.mozilla.org/WebAPI
Telephony API

// First, obtain a telephony object.
var telephony = navigator.mozTelephony;

// Then, we dial out.
var outgoing = telephony.dial(phoneNumber);

// Receive an incoming call.
telephony.onincoming = function onincoming(event) {
  var incoming = event.call;

     // Answer the call.
     incoming.answer();
};



                Let’s make some calls
WebSMS API

// Send a sms
navigator.mozSms.send(number, text);

// Mark message read
navigator.mozSms.markMessageRead(id, value);

// Listen to incoming sms
navigator.mozSms.addEventListener('received',
  callback);




           or send some SMS
Open Web Apps API

// Request to install an Open Web App
var request = window.navigator.mozApps.install(
   manifestUrl);
request.onsuccess = function () {
   // Save the App object that is returned
   var appRecord = this.result;
   alert('Installation successful!')
};
request.onerror = function () {
   /* Display the error information from the
      DOMErrorobject
   */
   alert('Install failed, error: ' + this.error.name);
};


   Open Web Apps are just web apps!
Web Activities API


 // Launch WA for sending sms
 var activity = new MozActivity({
   name: 'new',
   data: {
     type: 'websms/sms',
     number: number
   }
 });
 //Pretty familiar for android devs ;)




Ask someone to do work for you!
Wifi API


     // Get an instance of the wifi manager
     var gWifiManager =
     navigator.mozWifiManager;

     // Current network
     gWifiManager.connection.network;

     // List available networks
     gWifiManager.getNetworks();




Why not, check where are you connected to.
APIS? Tons of them!
What we built on top of it




Gaia: The Firefox OS frontend
What we built on top of it




Gaia, built with standard web technologies:
               js + html + css
What we built on top of it




What means native in Firefox OS?
How we did?




Building Blocks!
How we can try it?




Nightly             B2G                 R2D2B2G

          http://nightly.mozilla.org/
How we can try it?




   Nightly            B2G              R2D2B2G

http://ftp.mozilla.org/pub/mozilla.org/b2g/nightly/
How we can try it?




Nightly          B2G          R2D2B2G

http://people.mozilla.com/~myk/r2d2b2g/
What means Firefox OS for me?




 Freedom!
What means Firefox OS for me?




 Creativity!
What means Firefox OS for me?
... also means Collaboration!



https://github.com/mozilla-b2g/gaia


irc.mozilla.org #b2g, #gaia, #webapi


https://lists.mozilla.org/listinfo/dev-gaia


          Participate!
Thanks!!

 See you in the
#gaia irc channel!

Weitere ähnliche Inhalte

Was ist angesagt?

Exploradores.caroes
Exploradores.caroesExploradores.caroes
Exploradores.caroes
maryespitia
 

Was ist angesagt? (20)

Deployment tales
Deployment talesDeployment tales
Deployment tales
 
Deployment tales
Deployment talesDeployment tales
Deployment tales
 
Vagrant hands on workshop for beginners
Vagrant hands on workshop for beginnersVagrant hands on workshop for beginners
Vagrant hands on workshop for beginners
 
Vagrant 101 Workshop
Vagrant 101 WorkshopVagrant 101 Workshop
Vagrant 101 Workshop
 
Python+anaconda Development Environment
Python+anaconda Development EnvironmentPython+anaconda Development Environment
Python+anaconda Development Environment
 
CocoaPods for private libraries
CocoaPods for private librariesCocoaPods for private libraries
CocoaPods for private libraries
 
Phpconf 2013 - Agile Telephony Applications with PAMI and PAGI
Phpconf 2013 - Agile Telephony Applications with PAMI and PAGIPhpconf 2013 - Agile Telephony Applications with PAMI and PAGI
Phpconf 2013 - Agile Telephony Applications with PAMI and PAGI
 
Vagrant for Development
Vagrant for DevelopmentVagrant for Development
Vagrant for Development
 
Gestión de la configuración - Jenkins ci
Gestión de la configuración - Jenkins ciGestión de la configuración - Jenkins ci
Gestión de la configuración - Jenkins ci
 
Developing OpenResty Framework
Developing OpenResty FrameworkDeveloping OpenResty Framework
Developing OpenResty Framework
 
[MeetUp][2nd] 컭on턺
[MeetUp][2nd] 컭on턺[MeetUp][2nd] 컭on턺
[MeetUp][2nd] 컭on턺
 
Internals of OpenRuko PaaS, an open source Heroku clone implementation
Internals of OpenRuko PaaS, an open source Heroku clone implementationInternals of OpenRuko PaaS, an open source Heroku clone implementation
Internals of OpenRuko PaaS, an open source Heroku clone implementation
 
Vagrant
VagrantVagrant
Vagrant
 
Symfony in microservice architecture
Symfony in microservice architectureSymfony in microservice architecture
Symfony in microservice architecture
 
Vagrant step-by-step guide for Beginners
Vagrant step-by-step guide for BeginnersVagrant step-by-step guide for Beginners
Vagrant step-by-step guide for Beginners
 
Last Month in PHP - April 2016
Last Month in PHP - April 2016Last Month in PHP - April 2016
Last Month in PHP - April 2016
 
Open source git
Open source   gitOpen source   git
Open source git
 
Making of GameOver
Making of GameOverMaking of GameOver
Making of GameOver
 
Exploradores.caroes
Exploradores.caroesExploradores.caroes
Exploradores.caroes
 
Puppet Camp Berlin 2015: Felix Frank | Rapid Testing Setups for Puppet
Puppet Camp Berlin 2015: Felix Frank | Rapid Testing Setups for PuppetPuppet Camp Berlin 2015: Felix Frank | Rapid Testing Setups for Puppet
Puppet Camp Berlin 2015: Felix Frank | Rapid Testing Setups for Puppet
 

Ähnlich wie Open Web Device: The first phone running Firefox OS!

Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
Christian Heilmann
 
(Christian heilman) firefox
(Christian heilman) firefox(Christian heilman) firefox
(Christian heilman) firefox
NAVER D2
 
Empowering the "mobile web"
Empowering the "mobile web"Empowering the "mobile web"
Empowering the "mobile web"
Chris Mills
 
App開發 - Web Developer的逆襲
App開發 - Web Developer的逆襲App開發 - Web Developer的逆襲
App開發 - Web Developer的逆襲
益祥 許
 
Web APIs & Apps - Mozilla
Web APIs & Apps - MozillaWeb APIs & Apps - Mozilla
Web APIs & Apps - Mozilla
Robert Nyman
 
夜宴8期《Dive into Mozilla Labs》
夜宴8期《Dive into Mozilla Labs》夜宴8期《Dive into Mozilla Labs》
夜宴8期《Dive into Mozilla Labs》
Koubei Banquet
 
WebAPIs & Apps - Mozilla London
WebAPIs & Apps - Mozilla LondonWebAPIs & Apps - Mozilla London
WebAPIs & Apps - Mozilla London
Robert Nyman
 

Ähnlich wie Open Web Device: The first phone running Firefox OS! (20)

Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
 
Firefox OS - HTML5 for a truly world-wide-web
Firefox OS - HTML5 for a truly world-wide-webFirefox OS - HTML5 for a truly world-wide-web
Firefox OS - HTML5 for a truly world-wide-web
 
PhoneGap - Now and the Future
PhoneGap - Now and the FuturePhoneGap - Now and the Future
PhoneGap - Now and the Future
 
Firefox OS Intro, Inside OUT
Firefox OS Intro, Inside OUTFirefox OS Intro, Inside OUT
Firefox OS Intro, Inside OUT
 
Firefox OS - Answering global challenges
Firefox OS - Answering global challengesFirefox OS - Answering global challenges
Firefox OS - Answering global challenges
 
(Christian heilman) firefox
(Christian heilman) firefox(Christian heilman) firefox
(Christian heilman) firefox
 
Introduction to Apache Cordova (Phonegap)
Introduction to Apache Cordova (Phonegap)Introduction to Apache Cordova (Phonegap)
Introduction to Apache Cordova (Phonegap)
 
Hybrid Mobile Applications
Hybrid Mobile ApplicationsHybrid Mobile Applications
Hybrid Mobile Applications
 
Empowering the “Mobile Web” with Chris Mills
Empowering the “Mobile Web” with Chris MillsEmpowering the “Mobile Web” with Chris Mills
Empowering the “Mobile Web” with Chris Mills
 
Empowering the Mobile Web - Mills
Empowering the Mobile Web - MillsEmpowering the Mobile Web - Mills
Empowering the Mobile Web - Mills
 
Empowering the "mobile web"
Empowering the "mobile web"Empowering the "mobile web"
Empowering the "mobile web"
 
Firefox OS Presentation
Firefox OS PresentationFirefox OS Presentation
Firefox OS Presentation
 
App開發 - Web Developer的逆襲
App開發 - Web Developer的逆襲App開發 - Web Developer的逆襲
App開發 - Web Developer的逆襲
 
Txjs
TxjsTxjs
Txjs
 
Web APIs & Apps - Mozilla
Web APIs & Apps - MozillaWeb APIs & Apps - Mozilla
Web APIs & Apps - Mozilla
 
Developing FirefoxOS
Developing FirefoxOSDeveloping FirefoxOS
Developing FirefoxOS
 
夜宴8期《Dive into Mozilla Labs》
夜宴8期《Dive into Mozilla Labs》夜宴8期《Dive into Mozilla Labs》
夜宴8期《Dive into Mozilla Labs》
 
Banquet 08
Banquet 08Banquet 08
Banquet 08
 
WebAPIs & Apps - Mozilla London
WebAPIs & Apps - Mozilla LondonWebAPIs & Apps - Mozilla London
WebAPIs & Apps - Mozilla London
 
Getting Your Hooks Into Cordova
Getting Your Hooks Into CordovaGetting Your Hooks Into Cordova
Getting Your Hooks Into Cordova
 

Kürzlich hochgeladen

Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
Nitya salvi
 
一比一原版(UofG学位证书)圭尔夫大学毕业证学历认证快速办理
一比一原版(UofG学位证书)圭尔夫大学毕业证学历认证快速办理一比一原版(UofG学位证书)圭尔夫大学毕业证学历认证快速办理
一比一原版(UofG学位证书)圭尔夫大学毕业证学历认证快速办理
txkonu
 
Van Gogh Powerpoint for art lesson today
Van Gogh Powerpoint for art lesson todayVan Gogh Powerpoint for art lesson today
Van Gogh Powerpoint for art lesson today
lucygibson17
 
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
txkonu
 
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu DhabiMussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
romeke1848
 
一比一原版Offer(文凭)意大利那不勒斯美术学院毕业证成绩单学历认证
一比一原版Offer(文凭)意大利那不勒斯美术学院毕业证成绩单学历认证一比一原版Offer(文凭)意大利那不勒斯美术学院毕业证成绩单学历认证
一比一原版Offer(文凭)意大利那不勒斯美术学院毕业证成绩单学历认证
20goy65g
 
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Nitya salvi
 
如何办理澳洲迪肯大学毕业证(Deakin毕业证书)毕业证成绩单原版一比一
如何办理澳洲迪肯大学毕业证(Deakin毕业证书)毕业证成绩单原版一比一如何办理澳洲迪肯大学毕业证(Deakin毕业证书)毕业证成绩单原版一比一
如何办理澳洲迪肯大学毕业证(Deakin毕业证书)毕业证成绩单原版一比一
avy6anjnd
 
FULL ENJOY —📞9711106444 ✦/ Vℐℙ Call Girls in Ghaziabad | Delhi🫶
FULL ENJOY —📞9711106444 ✦/ Vℐℙ Call Girls in Ghaziabad | Delhi🫶FULL ENJOY —📞9711106444 ✦/ Vℐℙ Call Girls in Ghaziabad | Delhi🫶
FULL ENJOY —📞9711106444 ✦/ Vℐℙ Call Girls in Ghaziabad | Delhi🫶
delhimunirka15
 
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
Sheetaleventcompany
 
codes and conventions of film magazine and website.pptx
codes and conventions of film magazine and website.pptxcodes and conventions of film magazine and website.pptx
codes and conventions of film magazine and website.pptx
17duffyc
 
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptxLESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
matthewmirafuentes
 
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptxEngineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
DanielRemache4
 

Kürzlich hochgeladen (20)

Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
Call Girls In Sindhudurg Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service E...
 
Call Girls Varanasi Just Call 8617370543Top Class Call Girl Service Available
Call Girls Varanasi Just Call 8617370543Top Class Call Girl Service AvailableCall Girls Varanasi Just Call 8617370543Top Class Call Girl Service Available
Call Girls Varanasi Just Call 8617370543Top Class Call Girl Service Available
 
一比一原版(UofG学位证书)圭尔夫大学毕业证学历认证快速办理
一比一原版(UofG学位证书)圭尔夫大学毕业证学历认证快速办理一比一原版(UofG学位证书)圭尔夫大学毕业证学历认证快速办理
一比一原版(UofG学位证书)圭尔夫大学毕业证学历认证快速办理
 
Van Gogh Powerpoint for art lesson today
Van Gogh Powerpoint for art lesson todayVan Gogh Powerpoint for art lesson today
Van Gogh Powerpoint for art lesson today
 
Completed Event Presentation for Huma 1305
Completed Event Presentation for Huma 1305Completed Event Presentation for Huma 1305
Completed Event Presentation for Huma 1305
 
THE ARTS OF THE PHILIPPINE BALLET PRESN
THE ARTS OF  THE PHILIPPINE BALLET PRESNTHE ARTS OF  THE PHILIPPINE BALLET PRESN
THE ARTS OF THE PHILIPPINE BALLET PRESN
 
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
 
Headshots and Personal Branding by Julie King Photography
Headshots and Personal Branding by Julie King PhotographyHeadshots and Personal Branding by Julie King Photography
Headshots and Personal Branding by Julie King Photography
 
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu DhabiMussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
 
Top Rated Lucknow Escorts Service, ₹5000 Best Hot Call Girls With Room +91-82...
Top Rated Lucknow Escorts Service, ₹5000 Best Hot Call Girls With Room +91-82...Top Rated Lucknow Escorts Service, ₹5000 Best Hot Call Girls With Room +91-82...
Top Rated Lucknow Escorts Service, ₹5000 Best Hot Call Girls With Room +91-82...
 
一比一原版Offer(文凭)意大利那不勒斯美术学院毕业证成绩单学历认证
一比一原版Offer(文凭)意大利那不勒斯美术学院毕业证成绩单学历认证一比一原版Offer(文凭)意大利那不勒斯美术学院毕业证成绩单学历认证
一比一原版Offer(文凭)意大利那不勒斯美术学院毕业证成绩单学历认证
 
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
 
如何办理澳洲迪肯大学毕业证(Deakin毕业证书)毕业证成绩单原版一比一
如何办理澳洲迪肯大学毕业证(Deakin毕业证书)毕业证成绩单原版一比一如何办理澳洲迪肯大学毕业证(Deakin毕业证书)毕业证成绩单原版一比一
如何办理澳洲迪肯大学毕业证(Deakin毕业证书)毕业证成绩单原版一比一
 
Jaro je tady - Spring is here (Judith) 3
Jaro je tady - Spring is here (Judith) 3Jaro je tady - Spring is here (Judith) 3
Jaro je tady - Spring is here (Judith) 3
 
FULL ENJOY —📞9711106444 ✦/ Vℐℙ Call Girls in Ghaziabad | Delhi🫶
FULL ENJOY —📞9711106444 ✦/ Vℐℙ Call Girls in Ghaziabad | Delhi🫶FULL ENJOY —📞9711106444 ✦/ Vℐℙ Call Girls in Ghaziabad | Delhi🫶
FULL ENJOY —📞9711106444 ✦/ Vℐℙ Call Girls in Ghaziabad | Delhi🫶
 
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
 
Storyboard short: Ferrarius Tries to Sing
Storyboard short: Ferrarius Tries to SingStoryboard short: Ferrarius Tries to Sing
Storyboard short: Ferrarius Tries to Sing
 
codes and conventions of film magazine and website.pptx
codes and conventions of film magazine and website.pptxcodes and conventions of film magazine and website.pptx
codes and conventions of film magazine and website.pptx
 
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptxLESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
 
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptxEngineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
Engineering Major for College_ Environmental Health Engineering by Slidesgo.pptx
 

Open Web Device: The first phone running Firefox OS!

  • 1. OPEN WEB DEVICE First Mobile running Firefox OS
  • 2. Who is this guy? My name is Francisco Jordano twitter://mepartoconmigo github://arcturus I work for Telefonica Digital o/
  • 3. A bit of history, please! At Telefonica we love a open mobile space
  • 4. A bit of history, please! We strongly believe that web technologies are the way to go
  • 5. A bit of history, please! In the other part of the world, Mozilla was having the same idea
  • 6. A bit of history, please!
  • 7. What’s Firefox OS made of? The Web is the Platform
  • 9. What’s Firefox OS made of? Gonk Solid linux kernel + drivers ...
  • 10. What’s Firefox OS made of? Gecko Magic engine + new APIs Gonk Solid linux kernel + drivers ...
  • 11. What’s Firefox OS made of? Gaia UI based on open web technologies Gecko Magic engine + new APIs Gonk Solid linux kernel + drivers ...
  • 12. APIs, APIs, APIs everywhere! https://wiki.mozilla.org/WebAPI
  • 13. Telephony API // First, obtain a telephony object. var telephony = navigator.mozTelephony; // Then, we dial out. var outgoing = telephony.dial(phoneNumber); // Receive an incoming call. telephony.onincoming = function onincoming(event) { var incoming = event.call; // Answer the call. incoming.answer(); }; Let’s make some calls
  • 14. WebSMS API // Send a sms navigator.mozSms.send(number, text); // Mark message read navigator.mozSms.markMessageRead(id, value); // Listen to incoming sms navigator.mozSms.addEventListener('received', callback); or send some SMS
  • 15. Open Web Apps API // Request to install an Open Web App var request = window.navigator.mozApps.install( manifestUrl); request.onsuccess = function () { // Save the App object that is returned var appRecord = this.result; alert('Installation successful!') }; request.onerror = function () { /* Display the error information from the DOMErrorobject */ alert('Install failed, error: ' + this.error.name); }; Open Web Apps are just web apps!
  • 16. Web Activities API // Launch WA for sending sms var activity = new MozActivity({ name: 'new', data: { type: 'websms/sms', number: number } }); //Pretty familiar for android devs ;) Ask someone to do work for you!
  • 17. Wifi API // Get an instance of the wifi manager var gWifiManager = navigator.mozWifiManager; // Current network gWifiManager.connection.network; // List available networks gWifiManager.getNetworks(); Why not, check where are you connected to.
  • 18. APIS? Tons of them!
  • 19. What we built on top of it Gaia: The Firefox OS frontend
  • 20. What we built on top of it Gaia, built with standard web technologies: js + html + css
  • 21. What we built on top of it What means native in Firefox OS?
  • 23. How we can try it? Nightly B2G R2D2B2G http://nightly.mozilla.org/
  • 24. How we can try it? Nightly B2G R2D2B2G http://ftp.mozilla.org/pub/mozilla.org/b2g/nightly/
  • 25. How we can try it? Nightly B2G R2D2B2G http://people.mozilla.com/~myk/r2d2b2g/
  • 26. What means Firefox OS for me? Freedom!
  • 27. What means Firefox OS for me? Creativity!
  • 28. What means Firefox OS for me?
  • 29. ... also means Collaboration! https://github.com/mozilla-b2g/gaia irc.mozilla.org #b2g, #gaia, #webapi https://lists.mozilla.org/listinfo/dev-gaia Participate!
  • 30. Thanks!! See you in the #gaia irc channel!

Hinweis der Redaktion

  1. \n
  2. \n
  3. 2 competitors\nexpensives phones\nwe want cheap phones with the same characteristics\n
  4. We dont want to compete with other high end manufacturers\n
  5. OMG! We are screw!\nWait a moment, let’s be clever, let’s talk to them and collaborate\n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n