Hey there! Check out HackerBooks.com - our latest project that let you search books from StackOverflow and HackerNews

Latest Screencasts (page 99)

RailsCasts #64 Custom Helper Modules

Railscasts - 2007-07-30 - free

Rails designates one helper module per controller, but that shouldn't stop you from making custom helper modules to help structure the code. Learn how in this episode.

Watch this screencast

RailsCasts #63 Model Name in URL

Railscasts - 2007-07-27 - free

By default, Rails uses the model's id in the URL. What if you want to use the name of the model instead? You can change this behavior by overriding the to_param method in the model. Watch this episode for details.

Watch this screencast

RailsCasts #62 Hacking ActiveRecord

Railscasts - 2007-07-25 - free

Have you ever wanted to temporarily disable all validations? Well, ActiveRecord doesn't support this, but that doesn't mean we can't add it. This episode will show you how to open up an existing class and change its behavior.

Watch this screencast

RailsCasts #61 Sending Email

Railscasts - 2007-07-23 - free

This is a brief guide to sending email in Rails. See how to configure the environment, generate a mailer, create a template, and deliver the mail.

Watch this screencast

RailsCasts #60 Testing without Fixtures

Railscasts - 2007-07-20 - free

Tests which rely heavily on fixtures are brittle and can be difficult to maintain. This episode will show a couple techniques for creating tests which don't use fixtures.

Watch this screencast

RailsCasts #59 Optimistic Locking

Railscasts - 2007-07-18 - free

When two people attempt to update the same record near the same time, one of the updates will likely be overwritten. You can solve this problem with optimistic locking.

Watch this screencast

RailsCasts #58 How to Make a Generator

Railscasts - 2007-07-16 - free

Rails comes with many built-in generators, but what if you want to customize them or make your own? Rails gives you a great way to do this which you will learn in this episode.

Watch this screencast

RailsCasts #57 Create Model Through Text Field

Railscasts - 2007-07-13 - free

Let's say you provide a select menu for setting which category a given product belongs to, but you also want the option of creating a new category by typing the name in a text field. See a great way to do that in this episode.

Watch this screencast

RailsCasts #56 The Logger

Railscasts - 2007-07-11 - free

Learn all about the logger in this episode. See how to send messages to the log and how to customize it.

Watch this screencast

RailsCasts #55 Cleaning Up the View

Railscasts - 2007-07-09 - free

This episode starts off with a big, messy template. Watch as this code shrinks and becomes more readable while the interface stays the same.

Watch this screencast