This file contains hidden or 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
Clean Code Talks | |
by Misko Hevery | |
Unit Testing | |
http://www.youtube.com/watch?v=wEhu57pih5w | |
Don't Look For Things! | |
http://www.youtube.com/watch?v=RlfLCWKxHJ0 | |
Inheritance, Polymorphism, & Testing |
This file contains hidden or 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
# Find this line and insert the code below it (adapted to use your sitename/server). | |
# RewriteBase / | |
# Use files on the dev server instead of syncing them locally. | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule ^sites/sitename/(files/.*)$ http://dev.whatever.com/sites/sitename/$1 [L,QSA] |
This file contains hidden or 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
/** | |
* Text Color Plugin | |
*/ | |
GENTICS.Aloha.TextColor = new GENTICS.Aloha.Plugin('TextColor'); | |
/** | |
* Configure the available languages | |
*/ | |
GENTICS.Aloha.TextColor.languages = ['en', 'ru']; |