- Webkit bug #27922
- Opera bug DSK-283297@bugs.opera.com
Moved to CSS auto-reload
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
| # /usr/local ➤ ls | |
| PS1="\[\e[0;33m\]\W ➤ \[\e[0m\]" | |
| # http://github.com/mbrubeck/compleat | |
| source /usr/local/share/compleat-1.0/compleat_setup |
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
| class String | |
| # Shortcut for File.join | |
| # Usage | |
| # '..'/'foo' -> '../foo' | |
| def /(path) | |
| File.join(self, path.to_s) | |
| end | |
| end |
Moved to NV/tab_character_size
Tab size UserJS
8 spaces for the tab character is too many. I'd prefer 2.
Supported browsers: Firefox, Google Chrome, Opera, and Safari.
beforeafter
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
| dog = 'Bob' | |
| class << dog | |
| def what | |
| self | |
| end | |
| end | |
| dog.what #'Bob' | |
| ''.what #NoMethodError |
Deprecated! Use LiveReload instead.
via xrefresh#17
ruby ws_dir_watcher.rb ~/my_site- Open chrome://extensions/
- "Developer mode", then press "Load unpacked extension" button
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
| google.ac | |
| google.ae | |
| google.af | |
| google.ag | |
| google.am | |
| google.com.ar | |
| google.as | |
| google.at | |
| google.com.au | |
| google.az |
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 queue(){ | |
| function runQueue(){ | |
| var result = arguments; | |
| var args = runQueue.args; | |
| for (var i=0; i<args.length; i++) { | |
| result = [args[i].apply(this, result)]; | |
| } | |
| return result[0]; | |
| } | |
| runQueue.args = arguments; |
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 chain(fn){ | |
| // Chain factory | |
| var list = [fn]; | |
| return function oneChain(fn){ | |
| if (arguments.length) { | |
| list.push(fn); | |
| return oneChain; | |
| } else { | |
| var result; | |
| while (list.length) { |