This gist is no longer valid. Please see Compass-Rails for instructions on how to install.
The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.
You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.
- Communicating more effectively - At Envy Labs we produce screencasts for our clients all the time. Whether it's demoing a new feature or for a presentation for an invester, they're often much more effective and pleasent than a phone call or screen sharing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* BabyHint does a line-by-line check for common beginner programming mistakes, | |
* such as misspelling, missing spaces, missing commas, etc. It is used in | |
* conjunction with JSHINT to report errors to the user. | |
* | |
* Each error returned contains the members: | |
* { | |
* row : the row at which the error was found | |
* column : the column at which the error was found | |
* text : the error messaage |