Automatic Transcriptions Database Model Discussion
0
General
This series looks really interesting, can't wait for the new videos!!!
Adding a Blog Post Show Action Discussion
2
General
Thank you for explaining the "magic" as well - it really helps to see how it works underneath the hood for better understanding!
CarlosLeonCode replied
How to Extend the Ubuntu Default Logical Volume Partition Discussion
0
General
ActionText remove attach file button from Trix editor
4
General
Is there a way to prevent the attach file button in the trix editor for ActionText? I mainly want the formatting ability for things like bold, italics, number lists, etc. But do not want the atta...
Chuck replied
Improving app:update command for Rails 7.2 Discussion
1
General
Using Rails main, betas, or release candidates are great ways to find bugs and contribute to Rails itself. 🎉
Ricky Garrison replied
__FILE__, __dir__, and Symlinks Discussion
0
General
Today I Learned!
1
General
I thought it would be fun to start a thread where we can post the things we've learned recently.
Today I learned that `__dir__` returns a full path while `File.dirname(__FILE__)` returns a relativ...
cjilbert504 replied
can't install rails
3
General
i have sqlite3 3.43.2 and ruby 3.2.2 on windows 11
I'm trying to download rails but nothing seems to be working. not homebrew, ubuntu or gem install rails bundler --no-document
i'm not sure which t...
anamint minths replied
How do I merge query parameters into URL like Nomad List?
0
General
[Nomad List](https://nomadlist.com/) is a crowdsourced database of cities for Digital Nomads. They do this really cool thing for SEO where as you apply filters, the database is queried and the home...
Setup Windows 10 Discussion
236
General
Hi,I got all the way through this so thanks for the walk through! I run "rails server -b 0.0.0.0" and the server boots fine but when I go to localhost:3000 in the browser, the browser icon spins bu...
How do I prevent ActiveRecord::PreparedStatementCacheExpired errors during deploys?
1
General
I'm using Hatchbox to deploy my Rails 7 application.
However, occasionally during deployment, I encounter the ActiveRecord::PreparedStatementCacheExpired error.
How can I avoid this issue to ensure...
Rails for Beginners Part 27: Twitter Accounts Page Discussion
17
General
This episode has been updated for Omniauth 2.0. 👍
How to use Fixtures to create sample test data Discussion
1
General
Chris, thanks for all the great videos. These are super informative.
I have a question about fixtures and TDD in general.
Should I be creating a fixture for every potential variation in my model?...
How do I post comment with ajax in rails 4.2 ? Can I please have a detailed example?
4
General
How do I post comment with ajax in rails 4.2 ? Can I please have a detailed example?
Authenticate By & Password Challenge Methods In Rails 7.1 Discussion
1
General
Great episode Collin! The `authenticate_by` method really is a bug piece of making _secure_ authentication from scratch in Rails. These are nuances that are important (and already done in Devise), ...
How do I display several posts in related "weeks"
17
General
I would like to structure my blog so that I can assign posts I have created with Trix and Shrine to weeks.
I want to have 12 teaserboxes on my index page which can then be clicked and if I click o...
Autocomplete a form field
2
General
Hi,
i have the following models:
users, markets, assignments, products, sales,
a user gets an assignment, and then he should enter his sales for the assignment.
i have a sales form with the foll...
Extracting Reusable Base Classes In Ruby Discussion
3
General
The cat is still playing in the background 😂
Testing HTTP Requests with Webmock Discussion
3
General
Great episode! Instead of testing private methods directly, I suggest to define a `FakeApiClient` class that extends `ApplicationClient` with some dummy methods. This allows testing public methods....