SlideShare ist ein Scribd-Unternehmen logo
1 von 46
Downloaden Sie, um offline zu lesen
dojo is bizarro jQuery
                                    john hann
                                  @unscriptable
                                 lifeIMAGE, Inc.



Thursday, August 26, 2010
“bizarro” video tutorial




Thursday, August 26, 2010
video lessons learned


                              what does “bizarro” mean?

                   what can we learn about “bizarro” from
                                 the video?

                                    (discussion)



Thursday, August 26, 2010
video lessons learned




Thursday, August 26, 2010
video lessons learned
              what makes something bizarro:
              • it’s similar at first glance but...
              • nearly opposite once you learn more




Thursday, August 26, 2010
video lessons learned
              what makes something bizarro:
              • it’s similar at first glance but...
              • nearly opposite once you learn more
              lessons learned:
              • “opposite” is ambiguous
              • neither is undeniably better / perfect
              • can’t co-exist (really?)
              • not all behavior is appropriate to both


Thursday, August 26, 2010
similar at first glance...
                              height

                               hair

                               style

                              order




Thursday, August 26, 2010
but not quite the same...




                Kevin Gene Feldman    Jerry George Kramer

                     neat & pressed        relaxed

                            plaid           spots

Thursday, August 26, 2010
...and quite nearly
                                   opposite!




                             friendly         aloof

                             generous        stingy

                            unforgiving     accepting

Thursday, August 26, 2010
similar at first glance...
                             selector engine

                            dom abstractions

                            dom manipulation

                               animations




Thursday, August 26, 2010
Dojo:Zoomer
                            (jQuery-ish app done in dojo)
            http://demos.dojotoolkit.org/demos/cropper/




Thursday, August 26, 2010
dijit.form
                            (progressive enhancement demo)




                                 image: http://modernmechanics.com/

Thursday, August 26, 2010
but not quite the same...




                        $(‘*’)    dojo.query(‘*’)
                  $.fn.css()       dojo.style()
                  $(‘<div>’)     dojo.create(‘div’)
          $.fn.animate()          dojo.animate()
       3rd-party plugins           ±100 “dijits”

Thursday, August 26, 2010
plugd
              “loosely based on my favorite bits of jQuery”
                                   -- Peter Higgins (@phiggins)
              http://github.com/phiggins42/plugd




Thursday, August 26, 2010
plugd
                     .wrap()
                     .show(), .hide(), .toggle()
                     .append(), .appendTo()
                     .create()
                     .grab()
                     .size()
                     .animate()
                     .destroy()
                     .selectable()
                     .hover(), .hoverClass()
                     .end()


Thursday, August 26, 2010
plugd
              $("div.baz")
                .appendTo("body")
                .addClass("bar")
                .onclick(function(e){ /* … */ })
              ;

              $("<a href='foo.html'>bar</a>")
                .appendTo("body")
                .addClass("baz")
                .onclick(function(e){ /* … */ })
              ;


Thursday, August 26, 2010
but don’t be fooled...
                            the similarity ends here.




Thursday, August 26, 2010
but don’t be fooled...
                            the similarity ends here.
                            the bizarro dojo universe!
                                 prepare to enter



Thursday, August 26, 2010
up is down
              unlike the comfy world of jQuery, in the
              bizarro world of dojo…




Thursday, August 26, 2010
up is down
              unlike the comfy world of jQuery, in the
              bizarro world of dojo…

              dijits inject tiny bits of html into the dom
              servers spew javascript & json, not html
              “progressive enhancement” is a dirty word
              seo and html validation are shunned


Thursday, August 26, 2010
up is down
              unlike the comfy world of jQuery, in the
              bizarro world of dojo…


          wut? are we
              dijits inject tiny bits of html into the dom
              servers spew javascript & json, not html


          whack?!?!
              “progressive enhancement” is a dirty word
              seo and html validation are shunned


Thursday, August 26, 2010
up is down
              nah... ‘cuz now we’ve got super powers!




                            image: http://www.supermanhomepage.com/

Thursday, August 26, 2010
up is down
              nah... ‘cuz now we’ve got super powers!

              modular widgets

              centralized ui logic

              html5 offline-ready*

              ipad & google-pad “native” html5 apps**
              * sheesh! you gotta do some of the work yourself, slacker!
              ** requires PhoneGap or equivalent

                            image: http://www.supermanhomepage.com/

Thursday, August 26, 2010
up is down
              progressive enhancement? pffffftt!
              that’s for lame-o blogs
              and marketing sites!
              no javascript?
              no admittance!
              ie mobile and wap phones can
              find another bizarro world
              where web 1.0 is still king!



                                             image: http://hildygottlieb.com/

Thursday, August 26, 2010
up is down
              screw validation!
              it adds no value* since
              dijit’s html snippets are
              already easy to grok
              and debug:
              •tiny & modular,
              •unit-testable
              * ok ok already! “resistance is futile”. we get it. we also get that validation
              helps future-proof your html. dojo 1.6 will be valid html5.

                               image: http://www.themindrobber.co.uk/

Thursday, August 26, 2010
down is up
              on the bizarro dojo seas...
              one script tag will
              conjure a salvo of .js
              downloads




                                       image: http://davelandweb.com/

Thursday, August 26, 2010
down is up
              on the bizarro dojo seas...
              one script tag will
              conjure a salvo of .js
              downloads
              or not.




                                       image: http://davelandweb.com/

Thursday, August 26, 2010
down is up
              on the bizarro dojo seas...
              one script tag will
              conjure a salvo of .js
              downloads
              or not.
              ‘cuz a dojo pirate shoots
              whatever size .js
              slugs he wishes!
                                          image: http://davelandweb.com/

Thursday, August 26, 2010
down is up
              dojo.require() imports dependencies

              dojo’s build system packages javascript
              and html

                             my.HawtCalndr                     dojo.date
                            dojo.require(‘dojo.date’);   dojo.provide(‘dojo.date’);




Thursday, August 26, 2010
down is up
                                  (show me the codez!)
                            (dojo.require() and dojo.provide())




                                    image: http://makezine.com/

Thursday, August 26, 2010
“hello” when he leaves

              dojo pirates can say
              anything they want –
              and in any language –
              and not get confused




                            image: http://www.savagechickens.com/

Thursday, August 26, 2010
“hello” when he leaves
              dijit’s html snippets are tokenized and
              are locale-aware
              <div class=“my-hawt-widget”>
              ! <button>${buttonLabel}</button>
              </div>

              dojo.requireLocalization();
              this.buttonLabel = dojo.i18n.getLocalization(
              ! ‘my.HawtWidget’, ‘strings’)[‘buttonLabel’];



Thursday, August 26, 2010
“hello” when he leaves
                                  (more coadz!)
                      (templates, tokens, and i18n. oh my!)




                             image: http://modernmechanix.com/
Thursday, August 26, 2010
“good bye” when he arrives
              dojo’s bizarro components are loose and
              ignorant of their own parents!


              but this is a good
              thing! you want
              your “babies” to be
              independent!



Thursday, August 26, 2010
“good bye” when he arrives
              dojo.connect() allows loose coupling
              dojo.publish() and dojo.subscribe()
              provide global app events

                     my.HawtWidget                my.HawtCalndr
              dojo.subscribe(‘timezone_chg’,   onChangeTz: function (e) {
                 function (tz, bool) {         dojo.publish(‘timezone_chg’,
                   /* do something! */         !   [‘PDT’, true]);
                 }                             }
              );




Thursday, August 26, 2010
“good bye” when he arrives
                                 (back to the javascript!)
                            (dojo.connect(), dojo.publish(), and
                                     dojo.subscribe())




                                    image: http://thedawgpound.com/
Thursday, August 26, 2010
and now for
              something completely
                               bizarro
                                 cujo.js
                            web app platform




Thursday, August 26, 2010
what is cujo.js?
              web app platform:

              •MVC-based framework
              •CSS-centric, object-oriented
              •based on dojo & dijit
              •templates, guidance, examples, training



Thursday, August 26, 2010
why is cujo.js bizarro?
              data flows magically between nodes & server
              template languages disappear
              (and so does the id attribute!)


              views invoke the holey web trinity, instilling
              powers to lesser browsers
              ancient browsers grok css2.1 and css3*
              *dude! not all of css3! I’ve got a life ya know.




Thursday, August 26, 2010
data flows magically
              dojo data stores are hawt!
                                            json-rest
              data stores are data models   couchdb
                                              flickr
              most handle client-server       google
              communication so you don’t        csv
              data binding provides the        xml
              “last mile”                      atom
                                               etc...
              the end result: “live” data

Thursday, August 26, 2010
template languages
                                disappear
              why do we even need a {{template language}}?
              html5 data-* attrs ftw!

              inheritance: data-cujo-override

              loops: data-cujo-iter

              conditionals: data-cujo-if
              “oohtml”, anyone?


                                           image: http://thedawgpound.com/

Thursday, August 26, 2010
views invoke the
                            holey web trinity
              oojs + oohtml + oocss => cujo.mvc.View
              complete module, yet still overridable
              my/HawtWidget.js:
              dojo.provide(‘my.HawtWidget’);
              cujo.requireCss(‘my.HawtWidget’);
              cujo.requireHtml(‘my.HawtWidget’);
              ...


Thursday, August 26, 2010
ancient browsers grok
                         css2.1 and css3
              once you take control of the stylesheets,
              the sky is the limit!
              ever wish this worked in IE6?
              ! .myWidget.selected {}
              or this?
              ! .myMenu > .myMenuItem[href=”#”] {}
              or this?
              ! transition: left 0.5s bounce 0.25s;

Thursday, August 26, 2010
ancient browsers grok
                         css2.1 and css3
              once you take control of the stylesheets,
              the sky is the limit!
              ever wish this worked in IE6?
              ! .myWidget.selected {}
              or this?
              ! .myMenu > .myMenuItem[href=”#”] {}
              or this?
              ! transition: left 0.5s bounce 0.25s;

Thursday, August 26, 2010
cujo.js in action
                              (demo and codez!)




Thursday, August 26, 2010
even more bizarro
              all things dojo:
              http://dojotoolkit.org/
              http://twitter.com/dojo
              #dojo channel on freenode
              keep up to date with cujo.js:
              http://cujojs.com/
              http://twitter.com/cujojs
              http://twitter.com/unscriptable (me)
                             image: http://modernmechanics.com/

Thursday, August 26, 2010

Weitere ähnliche Inhalte

Was ist angesagt? (6)

Groovy Introduction at Javaforum 2010
Groovy Introduction at Javaforum 2010Groovy Introduction at Javaforum 2010
Groovy Introduction at Javaforum 2010
 
issue1
issue1issue1
issue1
 
Getting Started with Dojo Toolkit
Getting Started with Dojo ToolkitGetting Started with Dojo Toolkit
Getting Started with Dojo Toolkit
 
Clojure Reducers / clj-syd Aug 2012
Clojure Reducers / clj-syd Aug 2012Clojure Reducers / clj-syd Aug 2012
Clojure Reducers / clj-syd Aug 2012
 
HTML5 Apps - Cross platform
HTML5 Apps - Cross platformHTML5 Apps - Cross platform
HTML5 Apps - Cross platform
 
So, you think you know widgets.
So, you think you know widgets.So, you think you know widgets.
So, you think you know widgets.
 

Andere mochten auch

[Spanish translation] Global CRE Trends Infographic 2013
[Spanish translation] Global CRE Trends Infographic 2013[Spanish translation] Global CRE Trends Infographic 2013
[Spanish translation] Global CRE Trends Infographic 2013
JLL
 
Changing Winds Ahead: Japan Corporate Real Estate Survey Overview
Changing Winds Ahead: Japan Corporate Real Estate Survey OverviewChanging Winds Ahead: Japan Corporate Real Estate Survey Overview
Changing Winds Ahead: Japan Corporate Real Estate Survey Overview
JLL
 

Andere mochten auch (19)

Corporate Real Estate at the Crossroads - Cost vs. Value: Australian CRE tren...
Corporate Real Estate at the Crossroads - Cost vs. Value: Australian CRE tren...Corporate Real Estate at the Crossroads - Cost vs. Value: Australian CRE tren...
Corporate Real Estate at the Crossroads - Cost vs. Value: Australian CRE tren...
 
U.S. Lodging Sector 2014 Wellness Check
U.S. Lodging Sector 2014 Wellness CheckU.S. Lodging Sector 2014 Wellness Check
U.S. Lodging Sector 2014 Wellness Check
 
JLL’s Mid-Year Skyline Update: A Closer Look at OH, MI & PA
JLL’s Mid-Year Skyline Update: A Closer Look at OH, MI & PAJLL’s Mid-Year Skyline Update: A Closer Look at OH, MI & PA
JLL’s Mid-Year Skyline Update: A Closer Look at OH, MI & PA
 
Risks Ahead: Global Corporate Real Estate Trends 2013
Risks Ahead: Global Corporate Real Estate Trends 2013Risks Ahead: Global Corporate Real Estate Trends 2013
Risks Ahead: Global Corporate Real Estate Trends 2013
 
The Future of Work - 2001 Presentation
The Future of Work - 2001 PresentationThe Future of Work - 2001 Presentation
The Future of Work - 2001 Presentation
 
Seven key commercial real estate investment themes for 2016
Seven key commercial real estate investment themes for 2016Seven key commercial real estate investment themes for 2016
Seven key commercial real estate investment themes for 2016
 
January 2016 U.S. employment update and outlook
January 2016 U.S. employment update and outlookJanuary 2016 U.S. employment update and outlook
January 2016 U.S. employment update and outlook
 
Sistema operativo
Sistema operativoSistema operativo
Sistema operativo
 
[Spanish translation] Global CRE Trends Infographic 2013
[Spanish translation] Global CRE Trends Infographic 2013[Spanish translation] Global CRE Trends Infographic 2013
[Spanish translation] Global CRE Trends Infographic 2013
 
Re-engineering the workplace for the next generation
Re-engineering the workplace for the next generationRe-engineering the workplace for the next generation
Re-engineering the workplace for the next generation
 
Japan CRE Index 2013
Japan CRE Index 2013Japan CRE Index 2013
Japan CRE Index 2013
 
Changing Winds Ahead: Japan Corporate Real Estate Survey Overview
Changing Winds Ahead: Japan Corporate Real Estate Survey OverviewChanging Winds Ahead: Japan Corporate Real Estate Survey Overview
Changing Winds Ahead: Japan Corporate Real Estate Survey Overview
 
4 data center trends to watch
4 data center trends to watch 4 data center trends to watch
4 data center trends to watch
 
Grocery stores compete for attention | JLL Retail
Grocery stores compete for attention | JLL RetailGrocery stores compete for attention | JLL Retail
Grocery stores compete for attention | JLL Retail
 
RECon Latin America 2016 – Retailers on the move
RECon Latin America 2016 – Retailers on the moveRECon Latin America 2016 – Retailers on the move
RECon Latin America 2016 – Retailers on the move
 
U.S. employment rate data and trends June 2014
U.S. employment rate data and trends June 2014U.S. employment rate data and trends June 2014
U.S. employment rate data and trends June 2014
 
EMEA Corporate Occupier Conditions – Autumn 2015 [Infographic]
EMEA Corporate Occupier Conditions – Autumn 2015 [Infographic]EMEA Corporate Occupier Conditions – Autumn 2015 [Infographic]
EMEA Corporate Occupier Conditions – Autumn 2015 [Infographic]
 
Reducing greenhouse gas emissions one building at a time
Reducing greenhouse gas emissions one building at a timeReducing greenhouse gas emissions one building at a time
Reducing greenhouse gas emissions one building at a time
 
Implications For The Next Generation Office
Implications For The Next Generation OfficeImplications For The Next Generation Office
Implications For The Next Generation Office
 

Ähnlich wie dojo is bizarro jQuery

Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010
Zi Bin Cheah
 
The IT Philharmonic - OSCON 2010
The IT Philharmonic - OSCON 2010 The IT Philharmonic - OSCON 2010
The IT Philharmonic - OSCON 2010
Chef Software, Inc.
 

Ähnlich wie dojo is bizarro jQuery (16)

Introduction to jQuery :: CharlotteJS
Introduction to jQuery :: CharlotteJSIntroduction to jQuery :: CharlotteJS
Introduction to jQuery :: CharlotteJS
 
Rejectkaigi 2010
Rejectkaigi 2010Rejectkaigi 2010
Rejectkaigi 2010
 
Dojo Basics Js UserGroup Chicago
Dojo Basics Js UserGroup ChicagoDojo Basics Js UserGroup Chicago
Dojo Basics Js UserGroup Chicago
 
CSS3 now
CSS3 nowCSS3 now
CSS3 now
 
Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010
 
CSS3: The Future is Now at Drupal Design Camp Boston
CSS3: The Future is Now at Drupal Design Camp BostonCSS3: The Future is Now at Drupal Design Camp Boston
CSS3: The Future is Now at Drupal Design Camp Boston
 
Pony Pwning Djangocon 2010
Pony Pwning Djangocon 2010Pony Pwning Djangocon 2010
Pony Pwning Djangocon 2010
 
Advanced android
Advanced androidAdvanced android
Advanced android
 
Mongodb on Ruby And Rails (froscon 2010)
Mongodb on Ruby And Rails (froscon 2010)Mongodb on Ruby And Rails (froscon 2010)
Mongodb on Ruby And Rails (froscon 2010)
 
HTML5/CSS3 @ Baidu
HTML5/CSS3 @ BaiduHTML5/CSS3 @ Baidu
HTML5/CSS3 @ Baidu
 
Rapid Prototyping
Rapid PrototypingRapid Prototyping
Rapid Prototyping
 
Geekup Leeds - Why the YUI?
Geekup Leeds - Why the YUI?Geekup Leeds - Why the YUI?
Geekup Leeds - Why the YUI?
 
The jQuery Divide
The jQuery DivideThe jQuery Divide
The jQuery Divide
 
Github flow
Github flowGithub flow
Github flow
 
Jquery Introduction
Jquery IntroductionJquery Introduction
Jquery Introduction
 
The IT Philharmonic - OSCON 2010
The IT Philharmonic - OSCON 2010 The IT Philharmonic - OSCON 2010
The IT Philharmonic - OSCON 2010
 

Kürzlich hochgeladen

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Kürzlich hochgeladen (20)

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
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
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
[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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
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
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
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...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 

dojo is bizarro jQuery

  • 1. dojo is bizarro jQuery john hann @unscriptable lifeIMAGE, Inc. Thursday, August 26, 2010
  • 3. video lessons learned what does “bizarro” mean? what can we learn about “bizarro” from the video? (discussion) Thursday, August 26, 2010
  • 5. video lessons learned what makes something bizarro: • it’s similar at first glance but... • nearly opposite once you learn more Thursday, August 26, 2010
  • 6. video lessons learned what makes something bizarro: • it’s similar at first glance but... • nearly opposite once you learn more lessons learned: • “opposite” is ambiguous • neither is undeniably better / perfect • can’t co-exist (really?) • not all behavior is appropriate to both Thursday, August 26, 2010
  • 7. similar at first glance... height hair style order Thursday, August 26, 2010
  • 8. but not quite the same... Kevin Gene Feldman Jerry George Kramer neat & pressed relaxed plaid spots Thursday, August 26, 2010
  • 9. ...and quite nearly opposite! friendly aloof generous stingy unforgiving accepting Thursday, August 26, 2010
  • 10. similar at first glance... selector engine dom abstractions dom manipulation animations Thursday, August 26, 2010
  • 11. Dojo:Zoomer (jQuery-ish app done in dojo) http://demos.dojotoolkit.org/demos/cropper/ Thursday, August 26, 2010
  • 12. dijit.form (progressive enhancement demo) image: http://modernmechanics.com/ Thursday, August 26, 2010
  • 13. but not quite the same... $(‘*’) dojo.query(‘*’) $.fn.css() dojo.style() $(‘<div>’) dojo.create(‘div’) $.fn.animate() dojo.animate() 3rd-party plugins ±100 “dijits” Thursday, August 26, 2010
  • 14. plugd “loosely based on my favorite bits of jQuery” -- Peter Higgins (@phiggins) http://github.com/phiggins42/plugd Thursday, August 26, 2010
  • 15. plugd .wrap() .show(), .hide(), .toggle() .append(), .appendTo() .create() .grab() .size() .animate() .destroy() .selectable() .hover(), .hoverClass() .end() Thursday, August 26, 2010
  • 16. plugd $("div.baz") .appendTo("body") .addClass("bar") .onclick(function(e){ /* … */ }) ; $("<a href='foo.html'>bar</a>") .appendTo("body") .addClass("baz") .onclick(function(e){ /* … */ }) ; Thursday, August 26, 2010
  • 17. but don’t be fooled... the similarity ends here. Thursday, August 26, 2010
  • 18. but don’t be fooled... the similarity ends here. the bizarro dojo universe! prepare to enter Thursday, August 26, 2010
  • 19. up is down unlike the comfy world of jQuery, in the bizarro world of dojo… Thursday, August 26, 2010
  • 20. up is down unlike the comfy world of jQuery, in the bizarro world of dojo… dijits inject tiny bits of html into the dom servers spew javascript & json, not html “progressive enhancement” is a dirty word seo and html validation are shunned Thursday, August 26, 2010
  • 21. up is down unlike the comfy world of jQuery, in the bizarro world of dojo… wut? are we dijits inject tiny bits of html into the dom servers spew javascript & json, not html whack?!?! “progressive enhancement” is a dirty word seo and html validation are shunned Thursday, August 26, 2010
  • 22. up is down nah... ‘cuz now we’ve got super powers! image: http://www.supermanhomepage.com/ Thursday, August 26, 2010
  • 23. up is down nah... ‘cuz now we’ve got super powers! modular widgets centralized ui logic html5 offline-ready* ipad & google-pad “native” html5 apps** * sheesh! you gotta do some of the work yourself, slacker! ** requires PhoneGap or equivalent image: http://www.supermanhomepage.com/ Thursday, August 26, 2010
  • 24. up is down progressive enhancement? pffffftt! that’s for lame-o blogs and marketing sites! no javascript? no admittance! ie mobile and wap phones can find another bizarro world where web 1.0 is still king! image: http://hildygottlieb.com/ Thursday, August 26, 2010
  • 25. up is down screw validation! it adds no value* since dijit’s html snippets are already easy to grok and debug: •tiny & modular, •unit-testable * ok ok already! “resistance is futile”. we get it. we also get that validation helps future-proof your html. dojo 1.6 will be valid html5. image: http://www.themindrobber.co.uk/ Thursday, August 26, 2010
  • 26. down is up on the bizarro dojo seas... one script tag will conjure a salvo of .js downloads image: http://davelandweb.com/ Thursday, August 26, 2010
  • 27. down is up on the bizarro dojo seas... one script tag will conjure a salvo of .js downloads or not. image: http://davelandweb.com/ Thursday, August 26, 2010
  • 28. down is up on the bizarro dojo seas... one script tag will conjure a salvo of .js downloads or not. ‘cuz a dojo pirate shoots whatever size .js slugs he wishes! image: http://davelandweb.com/ Thursday, August 26, 2010
  • 29. down is up dojo.require() imports dependencies dojo’s build system packages javascript and html my.HawtCalndr dojo.date dojo.require(‘dojo.date’); dojo.provide(‘dojo.date’); Thursday, August 26, 2010
  • 30. down is up (show me the codez!) (dojo.require() and dojo.provide()) image: http://makezine.com/ Thursday, August 26, 2010
  • 31. “hello” when he leaves dojo pirates can say anything they want – and in any language – and not get confused image: http://www.savagechickens.com/ Thursday, August 26, 2010
  • 32. “hello” when he leaves dijit’s html snippets are tokenized and are locale-aware <div class=“my-hawt-widget”> ! <button>${buttonLabel}</button> </div> dojo.requireLocalization(); this.buttonLabel = dojo.i18n.getLocalization( ! ‘my.HawtWidget’, ‘strings’)[‘buttonLabel’]; Thursday, August 26, 2010
  • 33. “hello” when he leaves (more coadz!) (templates, tokens, and i18n. oh my!) image: http://modernmechanix.com/ Thursday, August 26, 2010
  • 34. “good bye” when he arrives dojo’s bizarro components are loose and ignorant of their own parents! but this is a good thing! you want your “babies” to be independent! Thursday, August 26, 2010
  • 35. “good bye” when he arrives dojo.connect() allows loose coupling dojo.publish() and dojo.subscribe() provide global app events my.HawtWidget my.HawtCalndr dojo.subscribe(‘timezone_chg’, onChangeTz: function (e) { function (tz, bool) { dojo.publish(‘timezone_chg’, /* do something! */ ! [‘PDT’, true]); } } ); Thursday, August 26, 2010
  • 36. “good bye” when he arrives (back to the javascript!) (dojo.connect(), dojo.publish(), and dojo.subscribe()) image: http://thedawgpound.com/ Thursday, August 26, 2010
  • 37. and now for something completely bizarro cujo.js web app platform Thursday, August 26, 2010
  • 38. what is cujo.js? web app platform: •MVC-based framework •CSS-centric, object-oriented •based on dojo & dijit •templates, guidance, examples, training Thursday, August 26, 2010
  • 39. why is cujo.js bizarro? data flows magically between nodes & server template languages disappear (and so does the id attribute!) views invoke the holey web trinity, instilling powers to lesser browsers ancient browsers grok css2.1 and css3* *dude! not all of css3! I’ve got a life ya know. Thursday, August 26, 2010
  • 40. data flows magically dojo data stores are hawt! json-rest data stores are data models couchdb flickr most handle client-server google communication so you don’t csv data binding provides the xml “last mile” atom etc... the end result: “live” data Thursday, August 26, 2010
  • 41. template languages disappear why do we even need a {{template language}}? html5 data-* attrs ftw! inheritance: data-cujo-override loops: data-cujo-iter conditionals: data-cujo-if “oohtml”, anyone? image: http://thedawgpound.com/ Thursday, August 26, 2010
  • 42. views invoke the holey web trinity oojs + oohtml + oocss => cujo.mvc.View complete module, yet still overridable my/HawtWidget.js: dojo.provide(‘my.HawtWidget’); cujo.requireCss(‘my.HawtWidget’); cujo.requireHtml(‘my.HawtWidget’); ... Thursday, August 26, 2010
  • 43. ancient browsers grok css2.1 and css3 once you take control of the stylesheets, the sky is the limit! ever wish this worked in IE6? ! .myWidget.selected {} or this? ! .myMenu > .myMenuItem[href=”#”] {} or this? ! transition: left 0.5s bounce 0.25s; Thursday, August 26, 2010
  • 44. ancient browsers grok css2.1 and css3 once you take control of the stylesheets, the sky is the limit! ever wish this worked in IE6? ! .myWidget.selected {} or this? ! .myMenu > .myMenuItem[href=”#”] {} or this? ! transition: left 0.5s bounce 0.25s; Thursday, August 26, 2010
  • 45. cujo.js in action (demo and codez!) Thursday, August 26, 2010
  • 46. even more bizarro all things dojo: http://dojotoolkit.org/ http://twitter.com/dojo #dojo channel on freenode keep up to date with cujo.js: http://cujojs.com/ http://twitter.com/cujojs http://twitter.com/unscriptable (me) image: http://modernmechanics.com/ Thursday, August 26, 2010