Tutorials

Setup Bulma CSS framework in your Rails application
In this tutorial, I will show you how to setup the CSS framework Bulma in a Rails applicationPrerequisitesRails 6.xCreate new rails projectGo to your terminal and execute rails new bulma-test. You can read the guide to Starting your Rails project ...

Using RequestStore with asynchronous I/O in Rails apps
Did you know it’s possible to write Rails apps using non-blocking, asynchronous I/O, the way Node apps work? Your app handles each web request in a fiber. Whenever that fiber fires off a blocking operation like a network call, it can yield the cur...

Monster Code: An application made with React, Ruby, SQLite, Sinatra and Active Record
In this blog one can get a more in depth analysis of the application my team made for our phase 3 project in the Flatiron School's software engineering bootcamp. React was used for the front end while Ruby, Active Record, Sinatra, and SQLite were ...

How to auto-generate OpenAPI docs for Django, Flask, Spring and Rails apps
The OpenAPI Specification (also/previously called Swagger) helps developers model, document, implement and test web applications and services APIs. It’s a wonderful thing! And unsurprisingly, it’s embraced by dev teams and documentation communitie...





Setting up Rubocop correctly with Gitpod and VSCode Ruby
I've recently come across Gitpod. Gitpod provides cloud-based development environments. They're similar to GitHub Codespaces, but in my opinion offer a better experience. Setting up an environment is simpler and they are all about ephemerality. Th...