https://github.com/petkaantonov/bluebird/wiki/Optimization-killers
http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/
| { | |
| "PhotoshopRFLW": { | |
| "version": 0.2, | |
| "doc": { | |
| "version": "1.1.0", | |
| "timeStamp": 1393457484.487, | |
| "count": 18, | |
| "id": 1174, | |
| "file": "/Users/zuse/Desktop/Untitled-1.psd", | |
| "bounds": { |
| POST /_search | |
| { | |
| "query": { | |
| "filtered": { | |
| "query": { | |
| "match_all": {} | |
| }, | |
| "filter": {} | |
| } | |
| } |
| #!/bin/bash | |
| git_pull() | |
| { | |
| out=$(sudo -u www-data git pull -f 2>&1) | |
| rcheck "!! Cannot pull into local repo\n$out" | |
| echo "Deployed into `pwd`" | |
| } | |
| rcheck() | |
| { |
| #!/usr/bin/python | |
| import os | |
| import re | |
| import time | |
| import sys | |
| import thread | |
| from threading import Thread |
| Zuse-Air:local zuse$ pwd | |
| /usr/local | |
| Zuse-Air:local zuse$ rm mysql | |
| Zuse-Air:local zuse$ sudo rm -rf mysql-5.5.19-osx10.6-x86_64/ | |
| Zuse-Air:StartupItems zuse$ pwd | |
| /Library/StartupItems | |
| Zuse-Air:StartupItems zuse$ sudo rm -rf MySQLCOM/ |
| web: node backend.js |
| # Run this in shell | |
| # Then create/load user profile, click "Advanced..." and tick "Disable Warning" | |
| Oculus_LibOVR_HSWToggleEnabled=1 /Applications/Oculus/Tools/OculusConfigUtil.app/Contents/MacOS/OculusConfigUtil |
| * { | |
| font-size: 12pt; | |
| font-family: monospace; | |
| font-weight: normal; | |
| font-style: normal; | |
| text-decoration: none; | |
| color: black; | |
| cursor: default; | |
| } |
| Content = (DocType / Comment / BalancedTag / SelfClosingTag / Text)* | |
| DocType = "<!doctype " doctype:[^>]* ">" { | |
| return { | |
| type: 'DocType', | |
| content: doctype.join('') | |
| }; | |
| } | |
| Comment = "<!--" c:(!"-->" c:. {return c})* "-->" { |