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

Latest Free Screencasts (page 31)

RailsCasts #18 Looping Through Flash

Railscasts - 2007-04-13 - free

Displaying flash messages in the layout can be a pain at times. In this episode you will learn an easy way to display any kind of flash message by looping through the hash.

Watch this screencast

RailsCasts #17 HABTM Checkboxes

Railscasts - 2007-04-11 - free

It is often asked: how do I create a list of checkboxes for managing a HABTM association? Ask no more because this episode will show you how to do exactly that.

Watch this screencast

RailsCasts #16 Virtual Attributes

Railscasts - 2007-04-09 - free

Keep your controllers clean and forms flexible by adding virtual attributes to your model. This very powerful technique allows you to create form fields which may not directly relate to the database.

Watch this screencast

RailsCasts #15 Fun with Find Conditions

Railscasts - 2007-04-06 - free

You can pass more than simple strings to find conditions. Arrays, ranges, and nil values can be passed as well. In this episode you will see the tricks involved with passing these odd objects to find conditions. (Update: audio fixed).

Watch this screencast

RailsCasts #14 Performing Calculations on Models

Railscasts - 2007-04-04 - free

Did you know ActiveRecord provides class methods for performing calculations on models? You can even use these methods through associations.

Watch this screencast

RailsCasts #13 Dangers of Model in Session

Railscasts - 2007-04-02 - free

Be careful when storing a model in a session. It will behave differently than you expect and can easily get out of sync with the database. Instead of storing the model directly in the session, store the id to the model and use that to fetch it from the database....

Watch this screencast

RailsCasts #12 Refactoring User Name Part 3

Railscasts - 2007-03-30 - free

In the final part of this series you will see how to refactor your tests. Keeping tests clean is important because it will make testing easier to do in the future.

Watch this screencast

RailsCasts #11 Refactoring User Name Part 2

Railscasts - 2007-03-28 - free

Testing and refactoring go hand in hand. Refactoring is all about improving code without changing its behavior. Testing is all about making sure you don't change the behavior while you are improving the code.

Watch this screencast

RailsCasts #10 Refactoring User Name Part 1

Railscasts - 2007-03-26 - free

Learn how to clean up your code through refactoring. This episode will show you how to move code from the view into the model to remove duplication and simplify the view.

Watch this screencast

RailsCasts #9 Filtering Sensitive Logs

Railscasts - 2007-03-23 - free

Are you accepting sensitive user data? Passwords, credit card numbers, etc. By default, Rails stores all submitted parameters in plain text in the logs. This episode will show you how to filter this sensitive input so it doesn't show up in the log file.

Watch this screencast