
Separate JavaScript Importmaps For Rails Engines Discussion
3
General
Good stuff! I have an idea for another episode/lesson:
When using TailwindCSS (which is pretty much the standard nowadays) in an Rails app, I found myself wanting to build "plugins" or extended fun...
Mateusz Żołądek replied

Fixing Counter Caches in the Paranoia Gem Discussion
1
General
That's EXACTLY the type of advanced stuff, that I'd love seeing more in Go Rails!
Jeni RANDRIAMIHAJASOA replied

Eigenclasses Discussion
4
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 ...

Designing Database Models for a Password Manager Discussion
3
General
Quick tip: try to refrain from writing lines at the bottom of your terminal as it makes it difficult to read when we pause the video as the video player UI obscures the text. An easy fix would be t...
SophiaJames replied

Encrypting Passwords In The Database Discussion
1
General
How can i run this
```
EDITOR="code --wait" rails credentials:edit --environment=development
```
command in my windows machine?
CarlosLeonCode replied

How To Add Impersonation To Rails Authentication Generator Discussion
8
General
I really love how flexible and easy to customize the new Rails 8 authentication generator is. Think we should cover 2 Factor Auth next?
Chris Oliver replied

How to use Dev Containers with Rails Discussion
21
General
Pretty excited about this because it makes Rails development so much easier to start for beginners or for teams using various operating systems.
I also forgot to mention, there is a `devcontainer`...
Chris Oliver replied

How do you setup email in your application and link it to a record
4
General
Hey Chris.
I have been trying to look online but haven't been successful in finding out the following. Say you made a CRM application in Rails and setup a pop3/imap email in the app. How would y...
Lillian Thuram replied

Dynamic Nested Forms with Turbo Discussion
44
General
Great demo of an awesome new ability. Thanks!
cjilbert504 replied

Security Hardening Servers with Fail2Ban Discussion
7
General
Great epiode Chris! Would love to see more like this!
CummerataMagnus replied

How do I disable testing in Jumpstart pro?
2
Testing
I am having a conflict with test data in jumpstart Pro. It continues to automatically add accounts that are conflicting with my other test data. I’m encountering an issue where Jumpstart Pro’s auto...
Chris Oliver replied

When pre/eager loading an association, is there any way to get the associated data from a cache?
2
Rails
```
class Category < ActiveRecord::Base
# columns: name
has_many :books
end
class Book < ActiveRecord::Base
# columns: title, category_id
belongs_to :category
end
```
Given the abov...
DuaneOgburn replied

Sending Webhooks with Exponential Backoff Discussion
8
General
Hi,
love the episode!
Just a tiny remark; when running this code;
```
def send_create_webhook!
User.has_webhook_enabled.find_each do |user|
SendWebhookJob.perform_later(user.webhook_...
Richard Payne replied

How to use params.expect in Rails 8+ Discussion
1
General
I just used it for the first time yesterday - a much nicer API!
Chris Oliver replied

How to find someone on whatsapp through something related to them
11
General
Is there an easier way for people to find someone on [url=https://techgara.com/whatsapp-aero]Whatsapp Aero[/url]
with meager information related to that account. Examples include house number, pet...
CharlenePratt replied

Code Review: Refactoring the Receipts gem for Composability Discussion
1
General
One thing I've found helpful is to purposefully start with a very concrete approach (like you following the designer's template) and only refactor it later to make it more flexible if and when it's...
EssaMattou replied