Tutorials




How to store large JSON in PostgreSQL with Rails Attributes API
If you store large objects in the database (such as JSON), for example, data for big reports, then this can take up a lot of space. To reduce the size of data, you can compress and store in binary form.PostgreSQL has a bytea field type for storing...

A Simple Way to Find Known Memory Leaks in Your Dependencies
In this blog post I will introduce bundler-leak -- A bundler plugin to find known memory leaks in your dependencies.The bundler-leak plugin is a fork of the famous bundler-audit.Just like bundler-audit, bundler-leak works thanks to a couple of com...

Ruby on Rails Application Performance Optimization Tutorial
You created a web application in Ruby on Rails, and it seems like it's business logic works correctly, the UI is user-friendly, and the design is very attractive. But, are you sure that it will really meet all the expectations of its users?Applica...

A web file manager in Rails to move, download, upload and delete files
This project offers a very simple file explorer to see files in a directory, it allows to display and download files.This also allows to rename and delete files and directories simply by clicking a button.This project was quickly created to simpli...


Fail Fast and Fail Often: Handling API Errors at Scale
At Monolist, we’re building the software engineer’s ideal inbox. Our users depend on us to surface all relevant and actionable tasks and context across all the tools and services they use. For a typical engineer, this includes emails, outstanding ...