PagerDuty is looking for a Ruby on Rails Staff Engineer
0
General
At PagerDuty, one of our biggest systems is written in Ruby on Rails and it is a massive monolith. We need to modernize this monolith and we are looking for a stellar Staff Engineer with deep RoR e...
Anand Vijay posted
When pre/eager loading an association, is there any way to get the associated data from a cache?
3
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...
xiwog82932 replied
Eigenclasses Discussion
10
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 ...
Robin Madsen replied
Wrapping Up Our URL Shortener Discussion
4
General
Congrats to everyone who has made it this far! The URL shortener was a great little project and I'm sure there's lots more improvements you can add to it.
What did you think of this project?
Thread Safety with Mutexes in Ruby Discussion
6
General
In a Rails application that does standard CRUD for the most part, what would be a good use case for something like this? In the ferrum_pdf example you gave, it looks like you want to ensure there's...
evelynnotting replied
Devise with multiple User Models with single login form
11
Gems / Libraries
Hi im trying to have 3 type of devise users but one to have a single login. I need to find a way to make the routes to go to a site/login for all 3 of then.
Im not using the 1 User model with 3 typ...
Solved
Concept Application: Assert Difference Deep Dive Discussion
0
General
Your First Ruby Gem Discussion
7
General
Thanks Collin
I've authored a few gems already, but this was a really useful look at the "bare-bones" approach rather than use the "bundle gem your-name-here # and fill in the blanks" approach.
...
ReactJS with Rails
12
Javascript
I'd love to see a series on a **_real world_** app using **ReactJS** with Rails API.
Deploy Ubuntu 26.04 Resolute Raccoon Discussion
0
General
How to use the Ruby 2.6 Just-in-Time (JIT) Compiler Discussion
6
General
Nice!
Eddie Collins replied
Hash Fetch with Default Value Discussion
5
General
Guarantee you I've made this mistake many times over the years. 😅
Enim Korche replied
Facing Issue in ferrum_pdf
0
Gems / Libraries
I have tried to generate a PDF using Ferrum PDF, but getting an error on my server :
"Browser did not produce a websocket URL within 60 seconds, try to increase:process_timeout."
In my local develo...
Azad Singh posted
Rails 8.1 Structured Events Discussion
0
General
Help
1
Ruby
Implement a Ruby method can_you_vote? that returns true or false depending on the given age.
This method should take one arguments (age), an Integer, and return a Boolean(true/false).
can_you_vote...
How much does it cost to built an e commerce app ?
2
General
How much does it cost to build an e commerce app. Cost to built an e commerce with features to sell the products in different countries.
John Datanvy replied
SMTP not relaying SMS text messages
1
Servers
Heya guys, thanks in advance for any assistance on this. I'm getting a weird behavior that just started happening last month. I have a MS Server 2019 (on premise VM) that is setup as a SMTP relay. ...
Alek Zapatchco replied
Lazy Requiring Dependencies in Ruby Discussion
7
General
I love removing dependencies. 💖
Also, learning how libraries can make features or dependencies optional is a great thing to learn along the way.
How do I create a reply comment system?
12
Rails
I have been trying to get the hang of rails and I understand most of Rails but I'm currently stuck on how I would go about and create a reply commenting system. For example, just like on GoRails.&n...
How to add Lazy Load Hooks to Rails Plugins Discussion
0
General
Have you used lazy load hooks to extend a gem with some interesting features?