Loops & Blocks in Ruby Discussion
One of my favs in the series so far! : )

4
General
How to use Fixtures to create sample test data Discussion
Fixture design in TDD can be a bit of an art. You don't necessarily need a fixture for every possible variation. Focus on essential scenarios and edge cases. If variations impact behavior significa...

3
General
How do I prevent ActiveRecord::PreparedStatementCacheExpired errors during deploys?
I had this too. Make sure to warm up your app before deploying, and check your database connection pool settings. It helps prevent those annoying cache errors during deploys.

2
General
Rails for Beginners Part 27: Twitter Accounts Page Discussion
That's awesome news! Thanks for the update. Keeping the content current is so important, especially when it comes to frameworks like Omniauth. Excited to check it out!

17
General
Refactoring our Ruby code Discussion
Great tip! Pausing the video to challenge yourself and build the program independently can help reinforce your learning and problem-solving skills. It's a fantastic way to actively engage with the ...

2
General
Rails Components From Scratch Discussion
With gem ViewComponent, how to make component render partial in it's self directory as action view?

15
General
Using Vuex with a Rails Backend Discussion
Hi! I am really in doubt if I start my project with the Hotwire approach vs the Vue approach. One of the main concerns is that I intend tô have a PWA for mobile. In this case are both ways suitab...

1
General
Help to debug inside Jumpstart
Hey Alex,
You'll either want to run the rails server in its own terminal (without bin/dev) or switch to using overmind instead of foreman. I personally use overmind and it lets you connect to each...

2
Rails
Jumpstart Pro - Installing Dependencies on Cloud9
You'd need to install Ruby, Postgres, and Redis on Cloud9. We did a screencast on Cloud9 here: https://gorails.com/episodes/aws-cloud9-ruby-on-rails-development

4
Servers
Setup Windows 11 Discussion
also just make sure you are using Ubuntu22.04/WSL2 and higher to unlock systemd.. doing this you will also be able to install gui apps like dbeaver to connect to directly to services inside the WSL...

3
General