authorImg Alkesh Ghorpade
authorImg Alkesh Ghorpade

I am a seasoned developer with over 9 years of experience in Ruby on Rails and Golang. My passion lies in tackling complex data structures and algorithm problems, always pushing myself to learn and grow. In my downtime, I find solace in the pages of books and the soothing sounds of a guitar. But I'm not just a one-trick pony! I love to stay active and challenge myself in other ways too. Whether it's on the football pitch, cricket field, table tennis table, or badminton court, I'm always up for some fun activities.

Rails 6 adds support for disabling database advisory locks

Rails 6 adds support for database configuration to disable advisory locks
authorImg Narendra Rajput
authorImg Narendra Rajput

Narendra is a Ruby on Rails Developer.

Find timezone from latitude & longitude in ruby using timezone gem

Find timezone from latitude & longitude in ruby using timezone gem
authorImg Aditya Narsapurkar
authorImg Aditya Narsapurkar

Aditya is a Ruby on Rails and ReactJS Developer.

Rails 6 upgrades to rails notes command and introduction of Rails::Command::NotesCommand

Rails 6 introduces several upgrades to rails notes command and adds Rails::Command::NotesCommand to be used by rake notes under the hood.
authorImg Romil Mehta
authorImg Romil Mehta

Romil is a Ruby on Rails Developer.

Ruby 2.7 adds warning for Proc.new and proc without block and error for lambda without block

In Ruby 2.7 Proc.new and proc with no block in a method called with a block is warned now and lambda with no block in a method called with a block will give errors.
authorImg Romil Mehta
authorImg Romil Mehta

Romil is a Ruby on Rails Developer.

Ruby 2.7 adds FrozenError#receiver

Ruby 2.7 has added `FrozenError#receiver` to return the frozen object on which modification was attempted
authorImg Romil Mehta
authorImg Romil Mehta

Romil is a Ruby on Rails Developer.

Rails 6 adds touch_all method to ActiveRecord::Relation

Rails 6 has added touch_all method to ActiveRecord::Relation to update the updated_at timestamp of multiple records at once.
authorImg Narendra Rajput
authorImg Narendra Rajput

Narendra is a Ruby on Rails Developer.

Running scheduled jobs in multiple timezones using clockwork

Scheduling background jobs in multiple timezones with clockwork
authorImg Romil Mehta
authorImg Romil Mehta

Romil is a Ruby on Rails Developer.

Ruby 2.7 adds Time#ceil and Time#floor methods

Ruby 2.7 adds Time#ceil and Time#floor methods to round up and down the decimal part of Time (nanosecond) to the specified digit
authorImg Romil Mehta
authorImg Romil Mehta

Romil is a Ruby on Rails Developer.

Ruby 2.7 adds beginless range

A beginless range is experimentally introduced in ruby 2.7.
authorImg Romil Mehta
authorImg Romil Mehta

Romil is a Ruby on Rails Developer.

Rails 6 adds Array#extract!

Rails 6 adds Array#extract! to remove and return the elements for which the block returns a true value.