ScotlandJS 2014 - day 2

(With a bit of delay, because socialising happened)

I am typing this at Brew Lab, having my last flat white at Edinburgh (total count in two weeks = about 7, I think). They aren't paying me for this free advertising, but I want to say that it's a cool hipster place literally and metaphorically up my street, coffee is quite good, and not only the wi-fi is free and works, but they also have power sockets. So there you go.

Keynote by Mikeal Rogers

Yesterday we barely made it in time for Mikeal Rogers' keynote, and am certainly glad we rushed! I didn't take many notes because I was mesmerised by his lighthearted telling of the evolution of his own code and how the improvements in node.js have brought better overall benefits not only for node.js, but also for the modules that have evolved alongside.

The whole talk is interesting to watch, but two things that stood out for me were why the node.js module ecosystem was so rich and growing:

  1. simplicity of interface: javascript module.exports = function() { /* ... */ } --he explicitly insisted in returning a function call and not a simple object
  2. simplicity of callbacks signature: javascript function(err, res) { /* ... */ }

I am pretty sure there was a third thing but he changed to some other topic or I got distracted, and forgot about it. So maybe it wasn't that important!

"Refactoring legacy code" by Sugendran Ganess

What stood out for me: you want to have as many tests as possible and aspire to the maximum code coverage as possible. So when/if you refactor and you inadvertently change the existing behaviour of the system you notice before it's too late.

Also: you want to be in master as soon as possible.

Finally he pointed to a couple of tools I want to check out: istanbul.js, platojs.

"Beyond the AST - A Fr**ework for Learnable Programming" by Jason Frame

This was totally unlike what I was actually expecting. The AST part tricked me into believing we were going to listen to some tree building and languages and grammar, but it was actually an enjoyable examination of how we generally teach programming and where we are doing it wrong. He said that natural language is taught in an incremental manner, and once you have a base you can start "getting creative". In contrast, programming is often taught by throwing a list of concepts and constructs on the faces of people, and we expect them to get creative instantly. Which doesn't quite work.

He also showed a prototype (?) environment he'd built that would fade out blocks of code that weren't in the current scope (according to where the cursor was), so new programmers could notice or get a feel that those things weren't accessible. That would allow him to "remove most sources of frustrations" for beginners.

This environment was also able to execute the program at a slower pace so you could see how the drawings would happen on the screen one at the time, instead of all in just one go. This reminded me to me learning programming with Logo and having to wait for the fill operation to complete because it would raster each line horizontally, from left to right, pixel by pixel. And it wasn't fast :P (Incidentally, I discussed whether slow computers might be better for learning a couple years ago).

Some interesting lessons here, since us in my team are focused in getting more people to build apps, and so we spend lots of time analysing the current offering of materials and tools and trying to identify where the pain points are i.e. where the frustrations occur.

"High Performance Visualizations with Canvas" by Ryan Sandor Richards

This was a nice talk that described what the title says quite succinctly and to the point. He showed how to build graphs using static and realtime data, and something important - how to nicely transition between existing and incoming data, even when various latencies would occur ("networks are going to be networks"). Some of the interesting suggestions that not everyone might know about were, for example:

  • do not redraw static content in each frame. Just draw it once at the beginning and keep it on top with a higher z-index. In his example he would overlay an SVG object (with static content) with a Canvas object underneath (which would hold the changing chart)
  • Image copying is super fast. So if you already drawn part of the content, and can reuse it in the next frame, do it! Copy pixels!

However, I think he "cheated". All the graphs and examples he showed were based in squares and new data would just come from the right and slide left, so bringing on new data was just a matter of copying the old canvas into the "display" canvas, only one unit to the left, and drawing the new one. When you don't have much overlapping, it's "easy" to increase performance "dramatically". I was maybe expecting how to get crazy performance with complex visualisations where you can't use this trick, but he didn't cover that. Instead, he recognised that complex d3 visualisations would turn your computer "into a nuclear reactor". A problem to solve, or a WebGL+GLSL job?

He also released a library for doing all these things: Epoch.

"Cylon.js: The JavaScript Evolution Of Open Source Robotics" by Ron Evans and his friend whose name I didn't make a note of

This was a really entertaining, amusing and awesome talk! Ron was a very eloquent speaker who gave plenty of brilliant quotes for me to tweet, and then they also did lots of demos to SHOW not tell that their JS framework would allow you to write the same JS code once and run it in a myriad of physical devices. Arduino, Texel, some sort of round robots that would move by themselves, Pebble, and even drones and that sort of controller for "reading brain waves". Sorry about not making a note of all of them--I was so amused by the display that I totally forgot.

This talk left me excited about building something with robots, which I guess it's a measure of success. Good job!

"Make: the forgotten build tool" by James Coglan

An excellent introduction to make that actually answered the questions I wish someone had answered for me about 10 years ago. It really tempts me to go back to make, only I know that Windows users always have all the issues with it and so we have to write the build system in node so it's something they can execute without having to install an additional tool (cygwin or whatever). Ah, I'm torn, because I really like make + bash...

"The Realtime Web: We're Doing it Wrong" by Jonathan Martin

So--Jonathan was a good speaker, and the slides were fascinating to watch because they had plenty of animations that at that point of the day seemed really cool to look at. However, after the talk I still don't know what are we actually doing wrong. I was expecting some sort of utterly mind-blowing revelation but it never happened.

Lunch

With Mikeal Rogers, Angelina Fabbro and Mike MacCana, at a place with lots of pork meat and lots of drawings and watercolours of happy pigs in the walls. There's absolutely nothing to complain about this.

Yum.

"No more grunt watch: Modern build workflows with Broccoli" by Jo Liss

Revelation time: for the longest time, I thought Broccoli was a joke-response to the myriad of task runners such as Grunt, Gulp, and etc. So imagine when I learned that it was for reals!

Jo went straight to the point and showed why Broccoli was better than Grunt in specific domains, and demonstrated how to use Broccoli to build a project. The syntax seemed way more imperative than Grunt's--and way easier to understand. The core concept in Broccoli is trees of files, which, I confirmed with her afterwards, is why Broccoli is called Broccoli. I mean, just look at one and see how it branches into smaller broccolis!

"Build Your Own AngularJS" by Tero Parviainen

Being honest: Tero didn't catch my attention during the first minutes so I zoned out and kept thinking about how to improve canvas performance. Related: this article about graphics performance in Firefox OS/mobile devices.

"Don't Go Changin'" by Matt Field

This was a disappointment to me: I thought he'd show a magic clever hack to work with immutable objects in JavaScript but instead he started describing how he'd do things with Clojure where those things are actually native. I tried to stay but my brain wasn't patient enough for a short introduction on Clojure on the spot, so I left. But...

Impromptu conversation in the hallway!

... I happened to find Jo Liss and some other guy (whose name I didn't catch, sorry) in the hallway. And somehow we engaged on a conversation about how to onboard new contributors to your project, or even how to get someone to contribute at all. A suggestion was to encourage newcomers to start fixing things in the documentation---a simple "task" that shouldn't break the code. I described how some teams do it in Mozilla: there's the Bugs Ahoy! website which keeps tracks of bugs marked as "good first bug" and bugs with assigned mentors. Also, at a past work week in my team we had a similar conversation where we agreed that having an explicit and visible list of issues/to do items made it easy for people to actually get their hands dirty.

Also: how do you steer the project in a direction that makes sense without frustrating contributors and/or maintainers, and without falling in the Feature Creep pit either? One suggestion was to make it very clear what the project was about. Don't try to solve all the issues, but rather do something, and do it well.

And empower your contributors. Once someone steps in and submits something valuable, treat them as equal peers. Give them commit access. People don't rush to make stupid things when they get superpowers (unless they're villains). Instead, they feel honoured and try to make the best they can. Or in other words: if you trust people, you'll get way better outcomes than if you think they're all silly and irresponsible.

At this point we actually left the conference before it finished because... ~ BRAIN FRIED ~

So sorry but I can't comment on the rest of the talks.

However, I can tell you that I realised that yesterday was the Eurovision finale, and since Angelina had never seen one, we had a fun time watching it, with me explaining all the politics in play. We really appreciated the impromptu booing, felt the pain of the pretty Finland guys losing to the Netherlands and wholeheartedly agreed that

  1. the stage was one of the best parts of the show, and
  2. any act with keytars should get an extra bunch of points.

Conclusion

This was a good conference with WORKING WI-FI, lots of different topics---although not all of them catered to me, which I guess is OK, and good atmosphere overall.

However at times it felt a bit weird that there weren't even 10 non-males at the room (that's a guesstimation based on external looks, and includes the three non-male speakers out of a total 26 talks). The speakers were also quite homogeneously white males so mmm. Often I went to the ladies toilette and the automatic light sensor would turn on the lights, because there were so few of us that it had turned off after a long period of no one entering. That's unnerving. Is it the Scotland JS community that skewed? I see wider diversity in London events, and I want to see wider diversity in other events too.

I also want to thank Pete Aitken and the rest of the team for organising this conference and being as accommodating, efficient and helpful as they were every time we asked them for anything. Thanks!

You can also read ScotlandJS 2014, day 1.