Speed up Rails boot times with Bootsnap Discussion
8
General
Hey Chris! This is really helping booting my apps faster! Thanks so much!
Vernon Morrison replied
Canonical Links From Scratch with Rails Discussion
0
General
Really useful walkthrough—the url_for and content_for approach keeps canonical links simple, flexible, and easy to maintain without adding another dependency.
Vernon Morrison posted
Transferring Files Between Hosts Discussion
0
General
Nice episode! File transfers are one of those things that seem basketball stars simple until you actually have to deal with a remote server. Looking forward to seeing how the two tools compare in p...
Lazy Requiring Dependencies in Ruby Discussion
12
General
I love removing dependencies. 💖
Also, learning how libraries can make features or dependencies optional is a great thing to learn along the way.
Meta Tags from Scratch with Current Attributes, ActiveModel & render_in Discussion
10
General
Hey Chris! Sounds like you’re doing awesome work! Helping Rails developers build apps is a fantastic contribution. Keep it up!
ColeHarry replied
Normalizes method in ActiveRecord Discussion
4
General
I would like to add that you can add multiple attributes to be normalized
```ruby
normalizes [:phone:, :fax, :mobile], with: -> phone_number { phone_number.gsub(/\D/, '') }
```
Tobias L. Maier replied
Devise
10
Rails
I watched the Gorails Rails Password Reset 2 part video for password reset. My question is my devise setup only create encrypted_password, and reset_password_token, not password or token columns. C...
paxtonleiny replied
How to use the Browser Guard in Rails Discussion
7
General
If you're building a no build Rails application that makes use of modern browser features (like ONCE Campfire!), you'll definitely want to use this.
Richard Ryan replied
Realtime Notifications with ActionCable Discussion
22
General
Thanks, Chris! This is an awesome episode, you're the man!
HTML Learning Path - Form Parameter Naming Conventions In Rails Discussion
2
General
Overall epic course on the basics of HTML Collin. Thank you for taking the time to create these videos. I was always wondering about the tag being used to break the controls to a new line. Never s...
Karan Kumar replied
Categorizing Transactions Discussion
1
General
@Piso Wifi is a popular internet vending system that allows users to access the internet by inserting coins. It is widely used in small businesses, internet kiosks, and public areas because it prov...
Single Table Inheritance (STI) with ActiveRecord in Rails Discussion
9
General
Thanks Chris, It's funny that we just stopped using this design pattern at Gitlab
https://docs.gitlab.com/ee/development/database/single_table_inheritance.html
rossgarnett replied
Adding CSS Design Discussion
2
General
why don't you used tailwind?
Kentastic replied
Adding Turbo Frame Test Helpers Discussion
6
General
Does GoRail allow users to use group accounts?
Tommy Gun replied
Sorting Blog Posts With Scopes Discussion
4
General
How can I do that? I want to post my discussion, but I cannot find my post after posting it. pls, help me!
Filip Łapiński replied
How to add a Command Palette to your Ruby on Rails app Discussion
16
General
Amazing information providing by your article, thank you so much for taking the time to share a wonderful article.
Poly Trackk replied
Monitoring Cron Jobs with Whenever Discussion
3
General
I like this approach. Having cron jobs report their status and logs makes troubleshooting much easier, especially when something silently fails.
Hugo Spencer replied
Invoker Commands and View Transitions Discussion
4
General
Thanks Collin, this covers some modern browser stuff I didn't know existed before. I guess I was just stuck using the extra JS-Tools I knew and never wondered what browsers can do out of the box no...
Hugo Spencer replied
Ruby's Tap Method Discussion
4
General
Just tap it in. Give it a little tappy. Tap tap taparoo.
Deploying the Web Scraper Rails app to Production & Setting Up Cron Jobs Discussion
7
General
I wish the linking of the database was a bit more clear. My app was pulling in the credential in the database.yml file instead of simply linking via the DATABASE_URL environment variable. I had to ...
Lucas Reed replied