Save 36% for Black Friday! Learn more

Rails for Beginners Part 41: Next Steps Discussion

5
General
Thanks Cris I think I have something wrong cause the schedule tweets is not sending tweet at all. I have change the UTC to America/Brasilia. Could give me some advice in my https://github.com/adalb...
Jake Govett replied

How to Build a Slack Slash Command App with Rails Discussion

11
General
/soo nice /great job!
taggame replied

Adding TailwindCSS to Rails Discussion

11
General
For those with the problem of "bin/dev: line 8: exec: foreman: not found" - Install the foreman gem -> bundle add foreman. - Add the "bundle" word to the beginning of this line of code (bundle...
Ivan Hrekov replied

Base62 Decoding Short Codes Discussion

6
General
Intresting, I had the same requirement so I created this gem https://github.com/xiaohui-zhangxh/xencoder , it can encode/decode interger to BaseX and prevent it to be decoded without seed
M87 replied

Dynamic Authorization Roles with Pundit Discussion

5
General
Well this couldn't have come at a better time! Thanks Chris!!! I'll be hiding the UI for creating and editing roles and providing at a higher price plan, there's a lot of value in this
Amir Aziz replied

Parsing Markdown Code Line Highlighting with Ruby Discussion

1
General
These types of problems are fun to code golf because they can be implemented so many different ways. ⛳️🏌️‍♂️
marilyn ohara replied

Handling New Messages with Turbo Streams Discussion

7
General
In case you're interested, you can sign up for our [Learn Hotwire course](https://learnhotwire.com/) here. We're covering Hotwire with Rails and Native with iOS and Android, diving deep into the de...

How to use HTML Button Form Attributes Discussion

6
General
This would have saved me a ton of time last year when I spend hours trying to organize the delete button. 🤦‍♂️

Organizing Rails Model Files Discussion

7
General
Great episode, Collin: thank you I also found the annotate output at the top of the file annoying, so my team now has annotate config set to output at the bottom of the file: Annotate.set_def...
leo rasy replied

SQL Learning Path - Having Statements Discussion

6
General
I have a question about replacing `store_id` with `stores.name` if we add JOIN to the query (4:50 for example). Would it be valid replacement if there are multiple stores with the same name but obv...
cjilbert504 replied

Ruby Data Class Discussion

0
General

Improving the Rails Route Generator Discussion

5
General
good
marilyn ohara replied

Contributing To Thor Discussion

2
General
Awesome stuff!
marilyn ohara replied

Adding Turbo Frame Test Helpers Discussion

0
General
Does GoRail allow users to use group accounts?
marilyn ohara posted

Magic Link Authentication with generates_token_for in Rails 7.1 Discussion

10
General
is magic link login considered secure ? can it be used for a production website reliably ? Thanks
Nathan Ruehs replied

Should I switch to RoR from Laravel?

6
General
Hello there, I'm a web developer and using Laravel for day-to-day life. It's been around 5 years of developing with Laravel. But I feel neither comfortable nor confident using Laravel. And I feel ...
Tonni Alex replied
Solved

Meta Tags from Scratch with Current Attributes, ActiveModel & render_in Discussion

5
General
Hey Chris! Sounds like you’re doing awesome work! Helping Rails developers build apps is a fantastic contribution. Keep it up!
Billie Jollie replied

Single Table Inheritance Discussion

0
General

How To Add Custom Renderers To Rails Discussion

0
General

A Simpler Build with Broadcasts Refreshes Discussion

1
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...