Tutorials
How Ruby Encodes References - Ruby Tiny Objects Explained
When you’re using Ruby and you care about performance, you’ll hear a specific recommendation: “use small, fast objects.” As a variation on this, people will suggest you use symbols (“they’re faster than strings!”), prefer nil to the empty string a...
Moving your Rails app from Google App Engine Flex to Standard environment
tl;dr Default GAE config for Standard Environment prevents Rails apps from running. It's because skip_files is preventing a key file from being uploaded.
Google App Engine currently has two environments: Standard and Flex. Without going into too ...
Be careful when using error reporting services and serverless functions
First, a disclaimer: the problem presented by this blog post happened when using AWS Lambda, Honeybadger, and Ruby. If you're using a different cloud provider, error reporting service and/or programming language, this might not be a problem, which...