Developer Advocacy Part 2: Live Coding

In the world of Developer Relations, there comes a time that fills a lot of us with dread: the moment when we’re required to perform live on stage. Live demos are the best way in which to showcase our company's products and share knowledge with our community. As developers, our only real instruments to convince and even surprise our audience is a laptop and a few lines of code. It’s definitely one of the major hurdles of being a Developer Advocate, and, unfortunately, we tend to struggle with it publicly. With some missteps, lots of practice, and more than 5 years of experience, I’ve learned to simplify live coding demos and fulfill these basics:

  1. Always entertain your audience
  2. Keep the demo to within 5 minutes
  3. Showcase only one piece of functionality
  4. Do everything from scratch
  5. Minimize your setup in order to reduce friction
  6. When in doubt, simplicity is key

My demos either live within the world of mobile apps (specifically Android) or are simple web apps, done to showcase a specific feature. Here’s a look at the tools I use to support live coding, keeping in mind the six basics defined above.

Android

For Android there's sadly not too much you can use outside of Android Studio. I do need to give Genymotion a big shout-out, though. Their emulator offers a top-notch developer experience through speed and great usability. I felt like Genymotion decreased the amount of time that I encountered crashes and sluggishness -- even with x86 images and utilizing GPU support.

Web-apps

Unlike with Android, there are plenty of choices for web developers when it comes to tools and editors. 99% of my live coding is done in either Ruby or Node.js. I tend to pick simple web frameworks like Sinatra or Express since they're generally well-known and allow me to focus on my app instead of going through tedious setup procedures.

When dealing with a single file, I usually tend to pick vi(m). This allows me to stress how easy the integration is since I don't need to rely on code completion. It makes the coding experience a blast because of all those amazing keyboard shortcuts. If you're looking for a pretty basic .vimrc you can check out mine on GitHub.

For more complex projects, I use either Atom or Sublime. I feel that both editors are similar in terms of look & feel, and come with a set of common functionality -- like package control. They allow me to navigate easily through multiple files and switch between tabs without messing up my code -- thereby decreasing audience confusion.

iTerm and screen

My terminal of choice is iTerm, since it gives me a lot of flexibility when it comes to splitting my panes and using tabs. Usually I use it in combination with screen to control which content I present and when.

A prominent example is creating a new screen session called node that handles starting and reloading my app’s components. Try opening up a new tab or pane in iTerm and entering:

screen -S node  
nodemon  

Then I open up a new session that I'll use for coding in vim:

screen -S vim  
vim  

The last step in my screen setup would be attaching the live code session to another iTerm tab/window/pane by entering screen -x vim.

Live reloading

As displayed above I use nodemon for Node.js. nodemon watches your directory for changes and restarts the app when needed. A similar tool for Ruby is called Shotgun -- it allows you to run Sinatra apps by calling shotgun app.rb.

Code snippets

Whenever I have to quickly enter information that is not really relevant to the live coding experience -- like client credentials, defining required dependencies, and such -- I tend to go for a combination of Alfred and Dash. This allows me quick insertion of code while not forcing me to leave my actual coding environment.

What's next?

I'd be happy to hear what tools, IDEs, and tweaks you use in order to improve your live coding experience and make the event more fun for yourself and your audience.

This post briefly mentioned that I am not a fan of code snippets and copy & paste coding. My next blog post will cover why and when exceptions should be made.

  1. DISCLAIMER: This article is not intended to be an endorsement for any of the products or services mentioned. The user experiences described herein were that of the author’s and not guaranteed by Braintree to be the typical user experience.

***
Tim Messerschmidt As a long-time mobile and web developer, Tim channels his knowledge as Head of Developer Relations. He’s passionate about startups and serves as a mentor at multiple incubators and accelerators. More posts by this author

You Might Also Like