Tutorials


Building a friendly ship racing 2D game in Ruby - Pair programming with Mark Cipolla - YouTube
Mark and I start building a nautical themed 2d game, we pair program to build the basics of the game. In these sessions I will be pairing with a different person each episode to build out our game :)You can find more information about ruby2d at t...


The easiest way to monitor your app in production is email?
You could spend time coding a beautiful, custom dashboard to show you a summary of everything in real time. On top of coding it you'll spend time designing, testing, securing and deploying it. Plus digging into problems that pop up (what is monito...


Episode 317 - Error Tracking from Scratch - YouTube
In this episode, we look at creating a middleware to track errors to publish to another error "from scratch" error monitoring application.In this episode, we look at creating a middleware to track errors to publish to another error "from scratch" ...

File uploading in GraphQL API in Rails with ActiveStorage
ActiveStorage was launched with Rails 6.0 that is a built-in file manager for local, S3, or any other storage platforms. ActiveStorage own documentation is quite extensive to explain how it manages file uploads and how to call them.While working w...


Using Dynamic Config Variables in Ruby on Rails Apps
Config variables should never be embedded directly in the codebase. It is a common practice to extract them into a separate configuration layer. A standard approach for Ruby on Rails apps is to use static ENV variables that can only be changed via...