Interested in learning web development, new language or just want to keep yourself updated with what's happening in information technologies? This site brings you the vast collection of screencast / video from net that can help you learn new technology, keep you informed of what's new, provide how to video tutorials and help you advance in information technology field. Not to mention seeing is better then reading or listening.

Enabling Tab Completion in IRB

In many ways irb is to Ruby what IPython is to Python. Irb is a interactive shell for the Ruby language that allows you to test your code and make sure...

The Original Ruby on Rails Screencasts

These three screencasts are the original three videos which helped spark the Ruby on Rails phenomenon. Learn here how to write a blog in just 15 minute...

Build a Full Rails Server on Ubuntu

This 10 minute demo shows how easy it is to install Ruby, Rails, Apache, Mongrel, Subversion, and MySQL on an Ubuntu server. Capistrano and the deprec ...

Railscasts Week 3

Let Ryan Bates take you through a growing series of great Rails tips.

Railscasts Week 2

Let Ryan Bates take you through a growing series of great Rails tips.

Railscasts Week 1

Let Ryan Bates take you through a growing series of great Rails tips.

Layouts and content_for

If you want to change something in the layout on a per-template basis, content_for is your answer! This allows templates to specify view code that can be placed anywhere in a layout.

All About Layouts

Everything you wanted to know about layouts: global layouts, controller layouts, shared layouts, dynamic layouts and action layouts. Yes, there really are that many ways to specify a layout.

Shortcut Blocks with Symbol to_proc

It may have a goofy syntax, but the Symbol#to_proc feature Rails adds allows you to do simple blocks very quickly and easily

Using with_scope

Learn how to use with_scope - a very powerful method which will allow your custom find methods to accept any find options. Just like magic!