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

Latest Screencasts (page 5)

RailsCasts #112 Anonymous Scopes

Railscasts - 2008-06-02 - free

The scoped method allows you to generate named scopes on the fly. In this episode I show how to use anonymous scopes to improve the conditional logic which was used in the previous episode on advanced search form.

Watch this screencast

RailsCasts #111 Advanced Search Form

Railscasts - 2008-05-26 - free

If you need to create an advanced search with a lot of fields, it may not be ideal to use a GET request as I showed in episode 37. In this episode I will show you how to handle this by creating a Search resource.

Watch this screencast

RailsCasts #109 Tracking Attribute Changes

Railscasts - 2008-05-21 - free

Rails 2.1 keeps track of the changes you make to a model's attributes. It also allows you to see what the previous value was. But watch out for the gotcha! See this episode for details.

Watch this screencast

RailsCasts #108 named_scope

Railscasts - 2008-05-19 - free

The named_scope method in Rails 2.1 makes performing finds on models very elegant and convenient. See how in this episode.

Watch this screencast

RailsCasts #103 Site Wide Announcements

Railscasts - 2008-04-28 - free

Sometimes you need to display an administrative announcement to every page on the site and give the users the ability to hide the announcement. See how in this episode.

Watch this screencast

RailsCasts #91 Refactoring Long Methods

Railscasts - 2008-02-03 - free

In this episode I walk you through an exercise in refactoring by taking a long method and making it more concise.

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 #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 #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