The Unbearable Rightness of Being Wrong (A Programmer's Guide to Sanity)

Earlier this year, some awesome people who “read and write Ruby good” met at an event called RailsConf and delivered this poignant tweet in a bottle:

This simple reflection by the brilliant Sandi Metz really resonated with my own - not just surrounding code quality, but the journey of developing a wider architectural awareness as well as the communication skills & empathy needed to build good software efficiently.

Not long after, I joined the Engineering lot here at Deliveroo and my growth rate skyrocketed (let’s ignore the fact I’m 5’1 high in physical terms!), amplifying its meaning even more.

Proof - here’s a serial Post-it that keeps making its way into our retrospectives:

Graph on a Post-It: Comfort Zone v Knowledge

And this, in my opinion, is the most important tool any programmer needs to enjoy a life of code-writing zen. The ability to face the incessant unknown with humility and an adventurous curiosity. Not to mention the secret weapon words:

“I don’t know anything about that… yet!”

Unfortunately, it’s way too easy to fall victim to these alternative “I don’t know” suffixes:

In fact, all of these are perfectly effective growth-stunters. Progression requires discomfort. This is why building collaborative, supportive teams and the right environment where it’s okay to get things wrong is just as important as building software itself.

Caching and Buildpacks and Slugs, Oh My!

Fortunately, the team here are just that - ready to help and lend a hand when Stack Overflow just doesn’t cut it. And it turns out being a Roo isn’t just amazing for the variety of food at your fingertips - we get served a wide range of tasty technical challenges too.

I’ve already managed to ship code across a spectrum of areas, from the APIs supporting the app our restaurants use & internal event bus, to helping improve our customer analytics and mobile attribution, and even reacquainting with “The Frontend”, getting to know ES6, React and the ever-scaling array of modern build tools.

To illustrate the benefits of my points above, here are just two slices of the ‘Stuff Outside My Comfort Zone I Know Way More About Now’ cake my brain has consumed in the last 5 months.

HTTP Caching in Rails

As we do the startup thing and move away from a monolith towards a growing number of services, there are numerous factors to consider, not just around building or maintaining the applications themselves, but ensuring they communicate with each other really well. A lot of these are documented in our open guidelines for your reading pleasure.

One of these considerations is reducing roundtrips between the client and the server with suitable HTTP cache headers.

Cache All The Things!

I remember my first real deep dive into HTTP caching whilst pairing with my team member, Mathilda. All the various Cache Control options, the subject of Conditional Requests and Etags, figuring out the best way to implement it all in a reusable way for upcoming endpoints without over-designing a solution - there were a lot of new concepts to try get right and potentially get very wrong.

However, this was also a great opportunity to demystify something quite important when it comes to building performant services, whilst revising many other fundamentals of HTTP.

With a mix of research, constructive code reviews and team knowledge-sharing, we speed-learnt a few best practices and helped set some initial standards for our internal API going forward.

By the way, I should’ve called this section Understanding HTTP Caching Takes Time. Actually implementing all those crazy concepts in Rails? It took about 5 lines of code:

def show
  @sloth = Sloth.find(params[:id])
  expires_in(5.minutes, "must-revalidate": true, public: false)
  # responds with 304 if not stale

  if stale?(@menu, public: false)
    render json: SlothSerializer.new(@sloth)
  end
end

Bonus story: These topics fascinated me so much I gave a spontaneous lightning talk at this year’s EuRuKo entitled The HTTPancake Request (no name regrets!). I also prepared an extended version of it for a Women Hack for Non-Profits Tech Talks event at Twitter. You can find the slides for that here.

Custom Buildpacks aka Does My Slug Look Big In This?

We use Heroku to build, run and scale our apps. Each time you push to a repository, a compiler optimizes your application for distribution by pre-packaging and compressing it into something called a “slug”. Obviously, the larger your codebase and dependencies, the bigger your slug size, and Heroku impose a 300MB limit (post-compression) for any one project.

This is one good reason to try reduce the monolith and embrace a multi-service architecture. In the meantime, there were a few changes we could implement to take us out of that slug size danger zone and keep us shipping.

Dieting Slug

One of the workarounds was to reduce the size of our dependencies, removing documentation and test files within select gem folders from the slug itself. This seemed like a simple enough task, as Heroku already let you configure a .slugignore file in your project’s root to specify exclusions, much like .gitignore.

Unfortunately, it turned out the cleanup based on this configuration occurs before dependencies are installed, preventing us from solving our particular problem.

Luckily, others had already encountered this wall and I found this open source custom buildpack that mimicked the same functionality for any files post-build, simply by including a new file in your project’s root called .slug-post-clean.

Of course, things are never that easy and though this buildpack covered most of our needs, it didn’t cater for wildcards, which we needed due to compiled gem folders including versions in their name. Basically, we wanted our .slug-post-clean file to look something like this:

vendor/bundle/ruby/*/gems/sass-*/test
vendor/bundle/ruby/*/gems/nokogiri-*/test

It looked like I was going to have to wear my super dusty bash scripting hat and implement some file globbing capabilities.

I forked the repo, whipped up a quick and dirty sample Rails app to experiment with and got to work, refactoring some bits along the way. Once reviewed, we tested it on our staging instance and after a quick patch to reduce the output flooding the build logs, we successfully ran a production deploy with a ~10MB drop in slug size.

You can find this version of the buildpack here in case it comes in handy.

Bring On The New Year

I look forward to watching Deliveroo continue to grow freakishly fast, and myself alongside it over the next year. Unfortunately, staring at delicious food all day means I’ll probably have to deal with the belly-based kind of growth too. In any case, I hope you took away something from this post, even if it’s just the nice feeling that other developers encounter doubt too, and that’s it’s okay, embrace it.

Now, please enjoy this panda trying to be bigger by crawling on a snowman and it all going terribly wrong.

Panda + Snowman


About Kriselda Rabino

A picture of Kriselda Rabino

I’ve been a full-time “Person Who Builds Things With Code” since 2008 in my hometown of Sydney, back when the Frontend simply meant spending more time writing HTML, JavaScript and CSS - as opposed to, you know, setting up a linter for my build tool’s configuration file to ensure my modules are bundled and my transpiler can run and… fades off into a web-shaped abyss.

Eventually, I crossed over to the server-side where I did S-finger-shaped gang signs and built things with PHP, ColdFusion and my current friend, Ruby. I still think the client-side is kind of cool and am slowly trying to make friends with it again.

In my spare time I enjoy and teach a social dance called Brazilian Zouk, and am on the board over at the wonderful open source communities, WHFNP and EmpowerHack.