Need a suggestion on the approach I should take to implement the multi-version surveys system.
I have an existing survey feature in my application. As standard, a survey has many questions, and many answers are submitted against a question by different users. There is a result model per surv...

1
General
Need guidance regarding my project: Neophyte LMS system
I'm in online boot camp at Flatiron School studying Full-Stack Web Development. I need to create a learning platform for online students: courses, lessons, e-books, reading lists, grammar notes, es...

6
Rails
Docker Basics for Rails Discussion
Nice video. Coming back to docker after a couple years and you did a great job explaining what matters for rails setups.

17
General
Writing an ActiveRecord adapter
7
Since none currently exists, I'd like to write my own ActiveRecord adapter for the Immudb database. However, I've been searching for a while online and can't find any good resources on how to wr...

1
Rails
How to download multiple files from s3 on fly?
To download an entire bucket to your local file system, use the AWS CLI sync command, passing it the s3 bucket as a source and a directory on your file system as a destination, e.g. aws s3 sync s3:...

5
Rails
[ActiveRecord::RecordInvalid - Validation failed: Blog must exist]

8
Rails
Upload Cover Images in Rails with ActiveStorage Discussion
Hi Chris, thanks for the lecture, is there a way you recommend to crop the image before the upload?

4
General
routing errors when i try to submit a comment to a post
Hi Thank you, i followed this tutorial however i am getting
Routing Error when i click submit for the comment...
```
uninitialized constant Squeals
```
Rails.root: /home/ubuntu/workspace ...

1
Rails
How to Process Inbound Webhooks (Railsconf 2023) Discussion
When will the entire RailsConf be uploaded to youtube? 😳
Nice work as allways, thanks for sharing!

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

1
General
How do I generate SEO Friendly URL's for filter combinations in Rails?
Props on working towards SEO friendly URLs. They're not just good for SEO, but also enhance the user experience. To implement this in Rails, you'd have to use a combination of routing, model, and c...

7
General