Lucian Ghinda
All about coding

All about coding

Follow
homeRuby/Rails Tips and TILShortsEssaysAbout meWeekly Ruby NewsletterBlog Newsletter
Tag

coding

#coding

More content

Read more stories on Hashnode


Articles with this tag

Stay up to date with new Ruby or Rails features

May 31, 20233 min read

Inspired by this post from Ruby for all: https://twitter.com/rubyforall/status/1660641879170625536 Here is one possible way to stay up to date with...

Stay up to date with new Ruby or Rails features

We should adopt and use new Ruby features

Feb 3, 20236 min read

Emotion is motion and words shape our reality · A bit of (personal) history I learned Ruby, I think, around 2007, and back then, it was a language...

We should adopt and use new Ruby features

How to get class name and module name in Ruby

Oct 6, 20221 min read

How to get the class name To get the class name: class User def call = puts self.class.name end User.new.call #=> User This will work even if the...

How to get class name and module name in Ruby

What is a class in Ruby?

Sep 19, 20222 min read

I will try to explain what a class is in some other way, somehow quoting or paraphrasing in some parts what @steveklabnik said a very long time ago in...

What is a class in Ruby?

How to learn Ruby

Sep 2, 20224 min read

A short opinionated guide about how to learn Ruby programming language · I think learning Ruby has three parts: OOP + SOLID in Ruby Ruby...

How to learn Ruby

Write code that is easy to change

Jul 10, 20225 min read

How to think about design principles and what to do to improve your skills in this area · I read this article about DRY and this prompted me to write...

Write code that is easy to change