Ruby / Rails Inside
@rubyinside
735
subscribers
15
photos
2.51K
links
Daily Ruby / Ruby on Rails articles. Curated channel.
Faker::Hacker.say_something_smart
Suggest link/news
https://t.me/NoMethodError
Download Telegram
Join
Ruby / Rails Inside
735 subscribers
Ruby / Rails Inside
https://hanamimastery.com/episodes/2-listing-articles-with-hanami-view
Hanami Mastery - a knowledge base to hanami framework
Listing articles in Hanami and Dry-View
In this episode I explain the Hanami architecture related to views rendering, by using Hanami View, Hanami Actions and templates, to list articles for a blog applicaton.
Ruby / Rails Inside
https://www.youtube.com/watch?v=PuNbdfdFBjk
YouTube
A Day in the Life of a Ruby Object - Jemma Issroff
Your code creates millions of Ruby objects every day, but do you actually know what happens to these objects?
In this talk, we’ll walk through the lifespan of a Ruby object from birth to the grave: from .new to having its slot reallocated. We’ll discuss…
Ruby / Rails Inside
https://www.youtube.com/watch?v=AFpq1pDQagw
YouTube
Profiling to make your Rails app faster - Gannon McGibbon
As you grow your Rails app, is it starting to slow down? Let’s talk about how to identify slow code, speed it up, and verify positive change within your application. In this talk, you’ll learn about rack-mini-profiler, benchmark/ips, and performance optimization…
Ruby / Rails Inside
youtube.com/watch?v=EiBrQin0nbU
YouTube
Debugging: Techniques for Uncertain Times - Chelsea Troy
When we learn to code, we focus on writing features while we understand what the code is doing. When we debug, we don’t understand what our code is doing. The less we understand, the less likely it is that our usual programming mindset—the one we use for…
Ruby / Rails Inside
https://www.youtube.com/watch?v=44qVL-cwtyM
YouTube
How to be a great developer without being a great coder - Nicole Carpenter
Learning to code is an individual journey filled with highs and lows, but for some, the lows seem far more abundant. For some learning to code, and even for some professionals, it feels like we're struggling to tread water while our peers swim laps around…
Ruby / Rails Inside
https://www.youtube.com/watch?v=BQhWfLp6UbU
YouTube
Realtime Apps with Hotwire & ActionMailbox - Chris Oliver
Hotwire enables realtime activity in our Rails application with very little Javascript. We'll build a realtime customer support application in just a few minutes using Hotwire for realtime updates and ActionMailbox for handling inbound emails.
Ruby / Rails Inside
https://www.youtube.com/watch?v=Q7uOPVfZ3Go
YouTube
Hotwire Demystified - Jamie Gaskins
DHH stunned the Rails world with his announcement of Hotwire from Basecamp. Even folks in the non-Rails web-development community took notice.
In this talk, you will learn about the building blocks of Hotwire and how they compose to create a streamlined…
Ruby / Rails Inside
https://www.youtube.com/watch?v=sIxvxp7E0xg
YouTube
Frontendless Rails frontend - Vladimir Dementyev
Everything is cyclical, and web development is not an exception: ten years ago, we enjoyed developing Rails apps using HTML forms, a bit of AJAX, and jQuery—our productivity had no end! As interfaces gradually became more sophisticated, the "classic" approach…
Ruby / Rails Inside
https://blog.engineyard.com/how-to-build-your-own-gem-in-ruby
Ruby / Rails Inside
https://prathamesh.tech/2021/05/23/adding-jemalloc-to-rails-apps-on-heroku/
Prathamesh Sonpatki
Adding jemalloc to Rails apps on Heroku
How to enable jemalloc on Heroku for Rails apps
Ruby / Rails Inside
https://pganalyze.com/blog/postgres-14-performance-monitoring
pganalyze
A look at Postgres 14: Performance and Monitoring Improvements
We take a look at whats new in Postgres 14, with idle and active connection scaling, memory monitoring, query IDs and more
Ruby / Rails Inside
https://k0kubun.medium.com/ruby-3-jit-can-make-rails-faster-756310f235a
Medium
Ruby 3 JIT can make Rails faster
I’ve wondered Why Rails becomes slow with JIT for a long time. Today, I’m pleased to share my answer to the question in this article, which…
Ruby / Rails Inside
https://blog.saeloun.com/2021/05/25/rails-add-range-serializer-for-activejob
Saeloun Blog
Rails 7 adds range serializer for ActiveJob
ActiveJob in Rails 7 allows a range to be passed as an argument to perform method.
Ruby / Rails Inside
https://www.honeybadger.io/blog/ruby-method-lookup/
Honeybadger Developer Blog
Understanding Ruby Method Lookup
Ruby lets you express yourself like few other languages, with a minimum of boilerplate. It's fantastic until it isn't. Until one day when you think you're calling the `foo` method you wrote last week, but instead, you...
Ruby / Rails Inside
https://blog.thegnar.co/activerecord-new-block
blog.thegnar.co
The Gnar Blog - ActiveRecord's New Takes a Block, Kid
Ramblings from The Gnar Company team on all things tech, culture, and process.
Ruby / Rails Inside
https://dunae.ca/notes/2021/05/25/sorbet-stability.html
Alex’s Blag
Sorbet Journey, Part 4: Sorbet Stability
Sorbet is now deeply integrated into our Rails app. That’s great.
Ruby / Rails Inside
https://pganalyze.com/blog/postgres-row-level-security-ruby-rails
pganalyze
Using Postgres Row-Level Security in Ruby on Rails
Learn how to create and implement a row level security policy in Rails, allowing to limit the database rows a user can access.
Ruby / Rails Inside
https://weblog.rubyonrails.org/2021/5/28/this-week-in-rails-active-record-encrytion-several-performance-optimizations-and-much-more/
Riding Rails
Active Record Encrytion, several performance optimizations, and much MORE!
Hi, zzak here! お久しぶりです! This time I will be recapping the past month or so of Rails. Hang on! There’s a ton of stuff to catch up on!!
Ruby / Rails Inside
https://everydayrails.com/2021/05/29/pronto-github-actions-code-quality.html
Everydayrails
Automatic code review with Pronto and GitHub Actions |
Everyday Rails
Nobody likes to be the one to pick through your pull request for style guide and security violations. Here's how to ask robots to do the work for you, automatically!
Ruby / Rails Inside
https://www.honeybadger.io/blog/ruby-rbs-type-annotation/
Honeybadger Developer Blog
Understanding RBS, Ruby's new Type Annotation System
Ruby's flexibility has always been both its greatest strength and its greatest weakness. You can write amazingly expressive programs. You can also slip and break them ...