Looking for a job?

I also help you to find (dev) work

I'm building a course about how to operate a job search at full power.
See you soon ;)

Explore my last articles on my blog

View all posts ยป

I write mostly for beginners, sharing my current discoveries to the community. I'm currently building also the newsletter, so stay tuned!

Ruby constants

Ruby constants

Constant are not so often used in Ruby, however, it's always good to know how they work when the need arises. Constants are simply variables that are not meant to be changed.

How to create tons of Rails apps

How to create tons of Rails apps

Yes, I already now about the rails new command. But what if you want better defaults, like an existing controller, an existing view, or another way to to launch the Procfile?

Rails new options

Rails new options

Let's see the official way to create Rails application, as well as the minimalistic option.

Ruby Enumerator, the what, the why, the how

Ruby Enumerator, the what, the why, the how

Before we start using Enumerators, we need to understand the concept of Enumeration and the tools Ruby gives us for Enumeration. Also, we will be assuming that you are comfortable with blocks in Ruby.