My daughter and I love playing problem-solving/adventure games together. Here's a record of them.
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 . -not \( -name .svn -prune -o -name .git -prune \) -type f -print0 | xargs -0 file -In | grep -v binary | cut -d ":" -f1 | xargs -0 sed -i '' -E "s/[[:space:]]*$//" |
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
| Function::property = (prop, desc) -> | |
| Object.defineProperty this.prototype, prop, desc | |
| class Foo | |
| @property 'neat' | |
| get: -> | |
| 42 | |
| class Bar extends Foo | |
| @property 'neat' |