Welcome to My Blog
Welcome to my blog! Here you'll find the latest posts covering Ruby on Rails development, technical insights, and my experiences as a Technical Lead.
## Latest Posts
-
Rails Skeleton App with Docker: A Clean Setup for Beginners (No Local Install Needed)
Learn how to create a Rails 8 project with PostgreSQL using Docker - no local Ruby, Rails, or database installation required. Perfect for beginners and teams. -
A Modern Software Development Lifecycle (SDLC) with Everyday Tools
Delivering high-quality software products requires a well-defined and disciplined Software Development Lifecycle (SDLC). In our day-to-day work, we leverage a rich set of tools that support every phase of the SDLC — from planning to development, testing, deployment, and monitoring. -
Mastering Event Delegation in JavaScript
When building dynamic web applications, attaching individual event listeners to many elements can become inefficient. That’s where event delegation comes in — a powerful JavaScript pattern that optimizes performance and simplifies code. -
Understanding the JavaScript Event Loop
The JavaScript Event Loop is one of the most fundamental concepts to understand when working with asynchronous operations in the browser or Node.js. -
My Daily Hacks to Make Development Life Easier
Debugging dedicated day - Productivity tools and shortcuts for developers -
Add useful touchpad gestures to ubuntu
Macbook like touch gestures in ruby -
Ruby code to bytecode
Our code’s journey before actually getting executed to the machine level. -
Simple Notifications
A very simple gem providing the notifications functionality to any model in a Rails application. -
=== Triple equal in ruby
a === bIt means If (a) describes a set, would (b) a member of that set?```ruby(1..5) === 3 # => true(1..5) === 6 # => false -
:send method in ruby(Dynamic dispatch)
Dynamic dispatch in ruby allows us to send messages to an object.