Upgrade to Pro — share decks privately, control downloads, hide ads and more …

JavaScript and The Monomyth

Tian Davis
October 11, 2014

JavaScript and The Monomyth

JavaScript and The Monomyth explores the story of JavaScript as you've never seen before.

Learn more about The Monomyth. Dig deeper into the story of JavaScript: http://tiandavis.com/posts/javascript-and-the-monomyth/

Tian Davis

October 11, 2014
Tweet

More Decks by Tian Davis

Other Decks in Programming

Transcript

  1. JS Atwood’s Law Any application that can be written in

    JavaScript, will eventually be written in JavaScript.
  2. It is by going down into the abyss that we

    recover the treasures of life. -Jospeh Campbell
  3. The thing in the cave that was so dreaded has

    become the center. -Jospeh Campbell
  4. var ua = navigator.userAgent.toLowerCase(); 
 if (ua.indexOf('safari') != -1) {

    if (ua.indexOf('chrome') > -1) { //alert(‘I HAZ CHROME SKILLZ’); } else { //alert(‘ALL UP IN YOUR SAFARI’); } }
  5. package com.example.foo.client;! ! import com.google.gwt.core.client.EntryPoint;! import com.google.gwt.core.client.GWT;! ! public class

    Foo implements EntryPoint {! public void onModuleLoad() {! GWT.log("Hello World!", null);! }! }