Real-time Comments and Voting
Play
23:49 CC

Real-time Comments and Voting

#331 Jan 9, 2022 pro
Using Hotwire we'll create a comment and voting system from scratch without any javascript. With the help of Turbo, we enable real-time updates and broadcasts of comments and votes.

Deploying Static Sites
Play
9:26 CC

Deploying Static Sites

#330 Jan 2, 2022 free
Github Pages and Gitlab Pages are both great places to quickly and easily push up static sites directly from your code repository.

Local Mail Delivery
Play
8:39 CC

Local Mail Delivery

#329 Dec 26, 2021 pro
Sending out emails is an important for of communication in our Rails applications. In this episode, we look at creating a local smtp relay with a web frontend to view the emails sent from our Rails application.

Rails Routes
Play
14:45 CC

Rails Routes

#328 Dec 19, 2021 pro
Routing in Rails is small but an important part of our applications. The Rails router recognizes URLs and dispatches them to a controller's action, or to a Rack application. It can also generate paths and URLs, avoiding the need to hardcode strings in your views.

Optimistic Locking
Play
9:15 CC

Optimistic Locking

#327 Dec 12, 2021 pro
Optimistic Locking is a feature to prevent collision when two users are editing the same record. In this episode, we look at adding this feature into a Rails 7 application that is using Turbo.