Latest Free Screencasts
RailsCasts #302 In-Place Editing
Railscasts - 2011-11-28 - free
Edit an attribute in-place without leaving a page using the Best In Place gem. Learn how to add validations and support for various field types.
Watch this screencastRailsCasts #296 Mercury Editor
Railscasts - 2011-11-07 - free
Mercury allows you to edit a section of HTML directly in the web browser through a WISYIWYG editor. Here I show how to integrate Mercury into a Rails app and save the changes back to the database.
Watch this screencastBuilding a Star-Rating System in Ruby on Rails with jQuery
Teach Me To Code - 2011-07-05 - free
Specification Clicking a star rating turns on the stars to the left of the star I clicked. Clicking a star submits the star rating. When I refresh the page, the star ratings should be persistent. We’ll be using Rails’ functions including: form_for hidden_field Rails Helpers We’ll be using jQuery functions including: click each ajax <code> [...]
Watch this screencastCreating a Simple Bookmarklet
Screencasts Org - 2011-07-04 - freeIn this quick video tutorial we'll show you what a bookmarklet is, and how you'd go about to create one. What you'll Learn What a Bookmarklet is How to create a simple Bookmarklet
Watch this screencastRailsCasts #267 CoffeeScript Basics
Railscasts - 2011-05-23 - free
CoffeeScript allows you to write JavaScript in a concise, elegant fashion. Here I convert JavaScript code to CoffeeScript in a Rails 3.1 app.
Watch this screencastCoffeeScript: The Cool Parts
Teach Me To Code - 2011-05-13 - free
CoffeeScript offers more than nice syntax for setting and managing data and functions. It also offers Classes, Inheritance, access to a ‘super’ method, Ruby-style string interpolation, easy variable and function bindings, and chained comparisons. Here’s the code I showed in the video: class Vehicle constructor: (@name) -> move: (miles) -> console.log @name + " drove [...]
Watch this screencastRails 3.1 Beta – Sprockets, CoffeeScript, and JQuery – A Teach Me To Code Tutorial
Teach Me To Code - 2011-05-07 - free
Ruby on Rails 3.1 is moving to use Sprockets to compile CoffeeScript into JavaScript and include JQuery in it’s JavaScript by default. This is a quick demo of how it all hangs together to manage your JavaScript in Rails 3.1.
Watch this screencastRailsCasts #263 Client Side Validations
Railscasts - 2011-04-25 - free
Showing validation errors inline as the user is filling out the form can lead to a better use experience. Learn how to do this using the Client Side Validations gem.
Watch this screencastCoffeeScript Basics – A Teach Me To Code Tutorial
Teach Me To Code - 2011-04-15 - free
CoffeeScript is now going to be a default installation with Ruby on Rails. So, I installed CoffeeScript and NodeJS and have been playing with it for the last hour or so. Here are the basics you need to know to use CoffeeScript including functions, arrays, hashes (objects), control functions (if, else, unless) and loops. [...]
Watch this screencastRailsCasts #261 Testing JavaScript with Jasmine
Railscasts - 2011-04-11 - free
Are you testing your JavaScript? Learn how to add specs using Jasmine. This episode also covers jQuery integration with jasmine-jquery.
Watch this screencast