
How do I dynamically update views when objects change
9
Rails
Hello,
I have objects called lockouts. I have several views where the users lockouts are listed or displayed. I want to update those views without having to refresh the page. So if an attribute of ...
LOLCONCEPTS replied

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

JavaScript not working for Bootstrap 5 on Rails 7
5
Rails
Hello,
I have started learning Ruby on Rails recently. I came across your site when trying to figure out issue I am having when installing Bootstrap 5 with Rails 7.
The bootstrap framework is insta...
Malinda Schmeler replied

How to determine acceptable memory baseline for my application?
7
Rails
Hey everyone, I have a Rails app deployed on Render's "Starter" plan which only includes 512MB of memory. My Rails app is a very simple blog that doesn't do anything crazy (as far as I know) with r...
Adam Taylor replied

Structured Output with Gemini 2.0 Discussion
2
General
Structured output makes advanced AI integrations actually possible. Imagine trying to parse a string response every time without structured json output! 😅
Marcus S replied

Fatal - not a git repository on server (deployed with Capistrano)
1
Rails
Some time recently, my app started throwing `fatal: not a git repository (or any of the parent directories): .git` on the server. It shows up if I ever remote in and run a bundle exec command (e.g....
attractive colt replied

Deploying our Password Manager to Fly Discussion
3
General
Awesome!

What do you listen to while coding?
24
General
So i had an interesting chat with fellow community member Jacob, and we are wondering what music do you listen to while you're coding?
What really gets you in the zone as you work hard creating yo...
genovesecamilla replied

Password Sharing Roles & Permissions Discussion
4
General
this on was confusing to me indeed. i was not able to follow, why we do what we do in each refactoring.
thanks, i will rewatch this
Alex H. replied

@mentions for Users with ActionText in Rails 6 Discussion
2
General
@chris this is an excellent feature. Is this implementation still the best way to achieve this using rails 8 and updated stimulus, action_text, action_mailer?
banshee nightmare replied

How Rails.env works with EnvironmentInquirer & StringInquirer Discussion
2
General
Love seeing the internals of Rails features and learning just how simple they are. 👍
D john replied

ActiveSupport Concerns: Making A Duration Calculation Module Discussion
1
General
Great episode !
D john replied

How to send Webhook?
11
Rails
I'm building a content management service which needs to send a webhook everytime the user saves a record.
What's a best practice to send webhooks in a rails app? A LOT of tutorials are about rece...
Chris Oliver replied
Solved

Sending Webhooks with Exponential Backoff Discussion
6
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

activeadmin with devise_invitable
3
Gems / Libraries
Hey everyone,
I know... I'm still using AA... Anyways, I'm looking for a complete guide on being able to invite my non-admin devise users through the admin panel. Strangely I can't find a single, ...

Designing our Web Scraper UI with TailwindCSS Discussion
3
General
Wow!
This episode is incredibly relevant to me! I manage [littlebirdelectronics.com.au](http://littlebirdelectronics.com.au), an Australian distributor for brands like Adafruit, SparkFun, Pololu, ...

Can a Rails app send messages through Signal Messenger?
4
Rails
I'm trying to figure out if it's possible to have a Rails application send messages to user via Signal messenger (as opposed to an email or SMS).
Has anyone tried to do this?
Waqas Mo replied

User research around Rails AI code editor
0
Gems / Libraries
Hi everyone, fellow Rails dev here. I'm doing some research to better understand how Rails developers choose and buy IDEs and how AI features play a part in that. I'm doing 45 minute interviews in ...
Matthew Kaliara posted

How to send SMS Messages in Rails with Twilio Discussion
5
General
Great intro! We use Twilio to send SMS notifications to our users.
Question - I set up the Twilio client in an initializer. Is there any advantage to this over setting it up in the Twilio service ...