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
| .plan { | |
| background-color: red; | |
| } |
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
| #!/bin/sh | |
| npm install -g browserify | |
| echo "installed browserify" | |
| wget https://gist.githubusercontent.com/jerolimov/3756821/raw/d040f68f3adbbc0d137abd38cf3b945423858ddb/youtube.js | |
| echo "fetched youtube.js" | |
| browserify youtube.js -o out.js | |
| echo "the result is in out.js" | |
| #utana chmod +x yt.sh && ./yt.sh |
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
| Categories | Apples | Pears | Oranges | Bananas | |
|---|---|---|---|---|---|
| John | 8 | 4 | 6 | 5 | |
| Jane | 3 | 4 | 2 | 3 | |
| Joe | 86 | 76 | 79 | 77 | |
| Janet | 3 | 16 | 13 | 15 |
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
| var STATE = { | |
| books: new Backbone.Collection([], { | |
| model: Models.BOOK_MODEL | |
| }), | |
| users: new Backbone.Collection([], { | |
| model: Models.USER_MODEL | |
| }), | |
| categories: new Backbone.Collection([], { | |
| model: Models.CATEGORY_MODEL | |
| }) |