Ruby / Rails Inside
@rubyinside
733
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
733 subscribers
Ruby / Rails Inside
https://featurist.co.uk/blog/hosting-rails-apps-for-free-on-oracle-cloud-with-dokku/
archive.featurist.co.uk
Hosting Rails apps for free on Oracle Cloud with Dokku
Dokku has always been a low effort way to have your own Heroku. And now on a free infrastructure.
Ruby / Rails Inside
https://www.honeybadger.io/blog/active-support-cache-increment/
Honeybadger Developer Blog
Rails' Hidden Gems: ActiveSupport Cache Increment and Decrement
You've probably used `Rails.cache` to read, write, and fetch cached data in Rails—but did you know you can also work with counters? In this series, Jonathan Miles introduces us to some of the lesser-known tools hidden in your Rails codebase.
Ruby / Rails Inside
https://www.youtube.com/watch?v=-TZk-En9kT8
YouTube
Adding Tip Tap editor to Rails - Episode 3 - Recreate Notion in Rails
Notion is a text editor on steroids; so we need our own headless text editor. And we need steroids. In this episode, we add Tip Tap into our Rails app via a StimulusJS controller, and explore how Tip Tap work. Oh, and then we save data to the server.
Links:…
Ruby / Rails Inside
https://greg.molnar.io/blog/6-security-improvements-in-rails-7/
{ Greg Molnar }
6 security improvements in Rails 7
Rails is one of the most secure framework by default for a long time, but still there is always room for improvement, and the lates version brings a few nice improvements.
Ruby / Rails Inside
https://dmitrytsepelev.dev/natural-language-programming-with-ruby?utm_source=ruby_flow&utm_campaign=ruby_natural
dmitrytsepelev.dev
How to make Ruby interpreter run program written in a natural language
Building a Ruby DSL that can understand and execute a program written in an almost natural language
Ruby / Rails Inside
https://www.youtube.com/watch?v=CR2FCYia8C4
YouTube
Real-Time Page Updates With Hotwire in Just 5 Minutes
🔥
FREE SaaS Idea Validation Playbook https://mixandgo.com/lp/idea-validation
🔥
Learn Ruby on Rails https://mixandgo.com/lp/practical-ruby-on-rails
In this video we're looking at how to use ActionCable to broadcast TurboStreams over Web-sockets.
Ruby / Rails Inside
https://shopify.engineering/porting-yjit-ruby-compiler-to-rust
Shopify
Our Experience Porting the YJIT Ruby Compiler to Rust - Shopify
In this post, I want to give a nuanced perspective on our experience porting YJIT from C to Rust. I'll talk about the positives, but also discuss the things that we found challenging or suboptimal in our experience.
Ruby / Rails Inside
https://nts.strzibny.name/hybrid-docker-compose-rails/
Notes to self
A hybrid development Docker Compose setup for Rails
Lots of developers choose between dockerizing their development setup or leaving it as is. There is also a viable hybrid approach in combining Docker Compose with native processes.
Ruby / Rails Inside
https://fpsvogel.com/posts/2022/ruby-hash-dot-syntax-dig-performance-benchmarks
Felipe Vogel
Dot syntax and deep_fetch for Ruby hashes
benchmarks and usability considerations
Ruby / Rails Inside
https://hanamimastery.com/episodes/21-serialization-with-alba
Hanami Mastery - a knowledge base to hanami framework
JSON Serialization with Alba in Hanami
Serialize your API responses in Hanami applications with alba - the fastest ruby serialization gem
Ruby / Rails Inside
https://thoughtbot.com/blog/a-case-for-query-objects-in-rails
thoughtbot
A Case for Query Objects in Rails
When is it best to reach for query objects and how can we best structure them?
Ruby / Rails Inside
https://shopify.engineering/shopify-ruby-at-scale-research-investment
Shopify
Shopify Invests in Research for Ruby at Scale
Shopify is investing on Ruby on Rails at scale by funding high-profile academics to focus their work towards Ruby and the needs of the Ruby community.
Ruby / Rails Inside
https://shopify.engineering/our-favorite-moments-from-railsconf-2022
Shopify
Our Favorite Moments From RailsConf 2022
The Rails community gathered in Portland for the first in-person RailsConf in two years. Shopify developers recap a few highlights from the three-day event.
Ruby / Rails Inside
https://blog.saeloun.com/2022/05/24/sql-query-in-rails.html
Saeloun Blog
How to write SQL queries in Rails?
ActiveRecord in Rails helps developers to simplify the process of interacting with databases.
Ruby / Rails Inside
https://blog.appsignal.com/2022/05/25/an-introduction-to-polymorphism-in-ruby-on-rails.html
Appsignal
An Introduction to Polymorphism in Ruby on Rails | AppSignal Blog
Learn how you can implement polymorphism in your Rails application for cleaner code.
Ruby / Rails Inside
https://rails-hosting.com/2022/
Rails-Hosting
2022 Ruby on Rails Community Survey Results
Over 2,600 members of the Rails community from 92 countries kindly contributed their thoughts on tools, frameworks, and workflows in their day to day development lives. From these responses we hope to get an understanding of where Rails stands as a framework…
Ruby / Rails Inside
https://thoughtbot.com/blog/a-case-for-query-objects-in-rails
thoughtbot
A Case for Query Objects in Rails
When is it best to reach for query objects and how can we best structure them?
Ruby / Rails Inside
https://www.rubberduckdevshow.com/episodes/43-typed-or-untyped-ruby/
Rubberduckdevshow
Rubber Duck Dev Show Episode 43 | Typed or Untyped Ruby
In this episode of the Rubber Duck Dev Show, we discuss the new features of ruby that allow you to set types for your variables. We discuss the pros and cons and discuss static vs. dynamic typing in general.
Ruby / Rails Inside
https://www.twnsnd.com/posts/how_i_100xd_bulk_import_speed_in_rails_with_some_gnarly_sql.html
TWNSND
100x'ing bulk import speed in Rails with gnarly SQL
A presentation covering how I improved bulk import performance on a large-scale Rails application to less than 1% of it's original processing time.
Ruby / Rails Inside
https://www.honeybadger.io/blog/rails-activerecord-store/
Honeybadger Developer Blog
Hidden Gems: ActiveRecord Store
PostgreSQL and MySQL are great for structuring data using relationships, but what if you don't always know the structure up-front? That's where `ActiveRecord::Store` really shines. It's like NoSQL, without changing da...