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://boringrails.com/tips/heroku-data-clips
Boring Rails: Skip the bullshit and ship fast
Use Heroku Dataclips to share query and do ad-hoc data exports
Heroku Dataclips enable you to create SQL queries for your Heroku Postgres databases and share the results with colleagues, third-party tools, and the public. Recipients of a dataclip can view the data in their browser and also download it in JSON and CSV…
Ruby / Rails Inside
https://blog.arkency.com/discord-bot-talking-to-slack-hosted-on-repl-dot-it/
Arkency Blog
Discord-to-Slack bot hosted on repl.it
Hi, we're Arkency and it's our blog with meaty content.
Ruby / Rails Inside
http://sciruby.com/blog/2021/02/16/tensors/
Sciruby
Tensors using NumRuby - SciRuby
Tensor word can have slightly different meaning depending upon the nature of study, like it’s defined differently in Physics, slightly …
Ruby / Rails Inside
https://longliveruby.com/articles/rails-design-patterns-the-big-picture
Ruby / Rails Inside
https://bigbinary.com/blog/rails-7-adds-enumerable-maximum
BigBinary
Rails 7 adds Enumerable#maximum | BigBinary Blog
Rails 7 series | Ruby 7.0 adds Enumerable#maximum
Ruby / Rails Inside
https://www.honeybadger.io/blog/ruby-code-loader-zeitwerk/
Honeybadger Developer Blog
Code Loaders in Ruby: Understanding Zeitwerk
What makes Rails magical? It just might be its code loader. Put a few files in the right places, and - presto! - you have a web app. When you use a class, Rails handle...
Ruby / Rails Inside
https://scottbartell.com/2021/02/24/finding-and-fixing-missing-indexes-in-a-rails-app/
Scott Bartell
Finding and Fixing Missing Indexes in a Rails app
Using NewRelic to find and fix a missing index in a Rails application
Ruby / Rails Inside
https://boringrails.com/tips/rails-date-before-after
Boring Rails: Skip the bullshit and ship fast
Never mix up greater/less than when comparing dates again
When it comes to compare dates, for some reason my brain really struggles. I mix up < and >= all the time and end up flipping them.
Ruby / Rails Inside
https://pragmaticpineapple.com/render-async-adds-support-for-rails-turbo/
Pragmaticpineapple
render_async Adds Support for Rails Turbo
Read about changes in the new version and how Turbo is supported.
Ruby / Rails Inside
https://blog.planetargon.com/entries/top-10-technical-podcasts-as-chosen-by-the-rails-community
Planet Argon Blog
Top 10 Technical Podcasts (as Chosen by the Rails Community)
Are you on the search for new podcasts to help you sharpen your coding skills? Well, I have good news!
In the spring of 2020, we surveyed over 2,000 Ruby on...
Ruby / Rails Inside
https://blog.appsignal.com/2021/02/24/troubleshooting-activerecord-performance.html
AppSignal Blog
Troubleshooting ActiveRecord Performance | AppSignal Blog
You usually don't need to worry about AcriveRecord and its inner workings. This post comes in handy when performance issues arise and you have to start worrying about it.
Ruby / Rails Inside
https://blog.thegnar.co/querying-papertrail-object-changes-json
blog.thegnar.co
The Gnar Blog - Querying PaperTrail Object Changes in JSON
Ramblings from The Gnar Company team on all things tech, culture, and process.
Ruby / Rails Inside
https://technology.doximity.com/articles/the-hidden-gems-of-ruby-s-irb
Doximity
The Hidden Gems of Ruby's IRB
Read more on the Doximity Technology Blog about how our engineers and data scientists are building the largest online network for clinicians.
Ruby / Rails Inside
https://blog.rebased.pl/2021/02/22/redis-rate-limiter.html
Rebased Blog
Redis rate limiter
At Rebased we have an internal time tracking project called Harmonogram. Its backend is built in Ruby on Rails. It started as a playground for new hires to get used to company culture and conventions, but over time grew into a fully-functional tool. When…
Ruby / Rails Inside
https://boringrails.com/tips/rails-pluck-single-values
Boring Rails: Skip the bullshit and ship fast
Pluck single values out of ActiveRecord models or Enumerables
Rails has a great, expressive term called pluck that allows you to grab a subset of data from a record. You can use this on ActiveRecord models to return one (or a few) columns.
Ruby / Rails Inside
https://blog.saeloun.com/2021/02/25/rails-allows-benchmark-method-to-be-called-from-anywhere
Saeloun Blog
Rails allows benchmark method to be called from anywhere
Rails allows benchmark method to be called from anywhere with Rails.benchmark(
Ruby / Rails Inside
https://blog.saeloun.com/2021/02/26/rails-introduces-new-syntax-for-enum
Saeloun Blog
Rails 7 introduces new syntax for enum
Rails 7 introduces new syntax for enum and few other changes
Ruby / Rails Inside
https://www.ombulabs.com/blog/rails/hotwire/introducing-hotwire.html
Introducing Hotwire
Introducing Hotwire - The Lean Software Boutique
One of the most visible and controversial new developments with the release of Rails 6.0 is Hotwire. Like anything in web development, the growing ...
Ruby / Rails Inside
https://blog.saeloun.com/2021/03/01/rails-6.1-adds-config-for-lazy-image-loading.html
Saeloun Blog
Rails 6.1 adds config option to control image_tag loading attribute
Rails 6.1 adds a config option to set a default value for the loading attribute of all image_tags. This is in line with the latest official HTML standard.
Ruby / Rails Inside
https://gorails.com/episodes/rails-subdomain-cookies
GoRails
Sharing Cookies with Subdomains in Rails (Example) | GoRails
Want to login your user across all subdomains in your Rails app? Here's how.