• Home

  • Custom Ecommerce
  • Application Development
  • Database Consulting
  • Cloud Hosting
  • Systems Integration
  • Legacy Business Systems
  • Security & Compliance
  • GIS

  • Expertise

  • About Us
  • Our Team
  • Clients
  • Blog
  • Careers

  • CasePointer

  • VisionPort

  • Contact
  • Our Blog

    Ongoing observations by End Point Dev people

    JSConf US 2013 — Day One

    Greg Davidson

    By Greg Davidson
    June 4, 2013

    Room With A View

    I attended JSConf in Amelia Island, FL last week. As you can see, the venue was pretty spectacular and the somewhat remote location lent itself very well to the vision set by the conference organizers. Many developers myself included, often find the line between work and play blurring because there is much work to be done, many new open source projects to check out, constant advancements in browser technology, programming languages, you name it. Keeping up with it all is fun but can be challenging at times. While the talks were amazing, the focus and ethos of JSConf as I experienced it was more about people and building on the incredible community we have. I highly recommend attending meetups or conferences in your field if possible.

    Without further ado, I’ve written about some of the talks I attended. Enjoy!

    Day One

    Experimenting With WebRTC

    Remy Sharp presented the first talk of the day about his experience building a Google Chrome Experiment with WebRTC and the peer to peer communication API. The game (headshots), was built to work specifically on Chrome for Android Beta. Because WebRTC is so young, the libraries supporting it (Peer.js, easyRTC, WebRTC.io, SimpleWebRTC) are very young as well and developing quickly. He found that “Libraries are good when you’re fumbling, bad when stuff doesn’t work”. The “newness” of WebRTC ate much more time than he had anticipated. Remi demoed the game and it looked like good fun. If you’re interested in checking out headshots further, the source code is up on GitHub.

    JavaScript Masterclass

    Angelina Fabbro gave a talk about levelling up your skills as a developer. She first broke everyone’s heart by telling us “we’re not special” and that nobody is a natural born programmer. She presented some data (studies etc) to support her point and argued that early exposure to the practice of logical thinking and practicing programming can make you seem like a natural.

    She described several ways to know you’re not a beginner:

    • You can use the fundamentals in any language
    • You are comfortable writing code from scratch
    • You peek inside the libraries you use
    • You feel like your code is mediocre and you’re unsure what to do about it

    …and ways to know you’re not an expert:

    • You don’t quite grok (understand) all the code you read
    • You can’t explain what you know
    • You aren’t confident debugging
    • You rely on references/docs too much

    “Welcome to the ambiguous zone of intermediate-ness”.

    Angelina suggested several ways to improve your skills. Ask “why?” obsessively, teach or speak at an event, work through a suggested curriculum, have opinions, seek mentorship, write in another language for a while etc. One book she specifically recommended was Secrets of the JavaScript Ninja by John Resig.

    JavaScript is Literature is JavaScript

    Angus Croll from Twitter presented a hilariously entertaining talk in which he refactored some JavaScript functions in the literary styles of Hemingway, Shakespeare, Bolaño, Kerouac, James Joyce and other literary figures. The talk was inspired by a blog post he’d written and had the entire conference hall erupting with laughter throughout.

    poolside.js

    Learning New Words

    Andrew Dupont continued in the literary, language-oriented vein, giving a talk which drew a parallel between olde english purists who did not want to adopt any “new” words and the differing views surrounding the EcmaScript 6 specification process. Dupont’s talk was very thought-provoking especially in light of the resistance to some proposals in the works (e.g. ES6 modules). Check out his slides—​the video will also be published in future.

    Flight.js

    Flight twitter

    Dan Webb spoke about Flight, a client-side framework developed by the team at Twitter and released this past January. They have been using it to run lots of twitter.com and most of tweetdeck as well. Webb got a laugh out of the room when he recalled the first comment on Hacker News after Flight was announced: “Why not use Angular?”. The motivation behind Flight’s design was to make a “system that’s easy to think about”. This aim was achieved by decoupling components (entirely self-contained).

    A Flight component is just a JavaScript object with a reference to a DOM node. The component can be manipulated, trigger events and listen to events (from other components). Applications are constructed by attaching Flight components to pieces of the DOM. Keeping the components independent in this way makes testing very easy. Complexity can be layered on but does not require any additional mental overhead. Dan suggested that Flight’s design and architecture would work very well with Web Components and Polymer in future.

    community conference css html javascript open-source tips tools


    Comments