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

Righteous Javascript, Dude!

Righteous Javascript, Dude!

My talk on getting teenagers interested in programming, presented at CascadiaJS 2013.

Zachary Bruggeman

November 14, 2013
Tweet

More Decks by Zachary Bruggeman

Other Decks in Programming

Transcript

  1. (Thoughts on the challenges of getting more teenagers interested in

    programming, why Javascript is the best first language to learn, and how we can influence the next generation.)
  2. The Spinning Wheel is licensed under a CC BY-NC-SA 3.0

    license, from Tiny Speck’s game Glitch.
  3. Computer Science 11 is an introduction to computer programming and

    video game design that expands on concepts learned in Information Technology 10. Students will learn programming language by the development of computer games utilizing programs such as Gamemaker 8 and a brief introduction to UNITY 3d. In the end the student will learn programming language and will have made fully functioning computer games in both 2d and 3d. COURSE DESCRIPTION
  4. puts "hello, world!" # ruby print("hello, world!") # python class

    HelloWorldApp { public static void main(String[] args) { System.out.println("hello, world!") } } // java