Skip to content

Instantly share code, notes, and snippets.

View aespaldi's full-sized avatar

Anne aespaldi

  • Yellow Jersey Software
View GitHub Profile
@aespaldi
aespaldi / form-validator.js
Created December 17, 2013 03:26 — forked from ksolo/form-validator.js
Form Validation
// shorthand for $(document).ready();
$(function(){
//Your code...
});
@aespaldi
aespaldi / carousel.js
Created December 17, 2013 03:19 — forked from ksolo/carousel.js
Image Carousel
/* Here is your chance to take over Socrates!
Spend 10 minutes on each of the following hacks to the Socrates website.
Enter them in the console to make sure it works and then save
your results here.
Choose a new pair for each. Add your names to the section you complete.
*/
class Car
@@WHEELS = 4
def initialize(args)
@color = args[:color]
@wheels = @@WHEELS
end
def drive
@status = :driving
end
def brake