
A Simpler Build with Broadcasts Refreshes Discussion
0
General
My general rule of thumb is I'll use redirecting back/morphing for very simple or low-frequency pages such as admin pages where there's not a lot of user traffic, but will reach for turbo streams w...

Realtime Nested Comments: Part 1 Discussion
7
General
Amazing episode, Chris! Thank you so much for this!

Hash Fetch with Default Value Discussion
4
General
Guarantee you I've made this mistake many times over the years. 😅

Refactoring Rigid Code Discussion
0
General

Eigenclasses Discussion
6
General
Why does this video say it is private - I have seen it on my iPhone, but its so small, I wanted to see it on a big screen too
Also - I would enjoy a video on Ruby's Hash caching and Rails Lowlevel ...
waylonwesley replied

Unread Messages Indicators Discussion
0
General

How to Debug Ubuntu and Debian Packages Discussion
0
General
Get ready for epic drifts Drift Boss and dramatic car flips that you won't find in any other game!
Gwendolyn Mueller posted

Video Sync Cron Job Discussion
4
General
quite cool! Regards for sharing.
Emma Alva replied

Adding Referrals to Devise with the Refer gem Discussion
0
General
Hi! I'm a software developer working with Ruby on Rails, and I'm currently testing out the refer gem for possible integration into my project. I have a couple of questions:
1. Is it possible to ad...
Oscar Peña posted

Live Reloading with Hotwire Spark Discussion
3
General
I like the idea of morphing for live reloading. It makes for a very smooth experience. There is still lots to improve but I'm excited to have an official live reloading library for Hotwire.
Ashish Darji replied

Normalizes method in ActiveRecord Discussion
3
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

Permission Failed when deploying to render
1
Ruby
I am on windows 10 and i was trying to deploy to render but meeting the v=below error
Bundle complete! 14 Gemfile dependencies, 68 gems now installed.
Gems in the groups 'development' and 'test' ...
DanAnthony replied

Vibration alerts for deaf users
0
General
Hi Chris,
I am new to Rails and to this forum. Is there a mechanism for receiving an alert when a 'ticket' comes in that not only makes a sound but vibrates loudly for deaf users ? All users - w...
Phoebe posted

How to use AWS Cloud9 for Ruby on Rails development Discussion
7
General
I've been trying for a while to get Rails working on Cloud9, this was perfect!
Once comment: why not show the Cloud9 editor when editing the development.rb file?
Alfred Montalvo Jr replied

Dynamic CSS For User Specific Styling Discussion
0
General
Love solving problems like this with pure CSS and no JavaScript. 👌
Chris Oliver posted

Subscriptions with Stripe Discussion
96
General
Hey Chris! Not sure if this is just me, but there seems a problem downloading the video's.

Using Webhooks with Stripe Discussion
46
General
Hey Chris,Another great episode!How would you handle a monthly recurring cost without having the user create an account? For example, a donation site?
Adrien Nhem replied

Recurring events with the ice_cube gem Discussion
47
General
On my app I use a Event and a EventTrans model so for each time a event occurs we can have a record with info and other stuff. So for the Calendar we display the First event with the recurrent on t...

Admin Interfaces with Administrate Discussion
25
General
*shudder*.. "automagically"

Hashes in Ruby Discussion
10
General
If we use `h = HashWithIndifferentAccess.new({key: "value"})` it will allow us to access the value through both `h[:key]` and `h["key"]`.
João Vitor Pessoa replied