A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |
| -- Two dashes start a one-line comment. | |
| --[[ | |
| Adding two ['s and ]'s makes it a | |
| multi-line comment. | |
| --]] | |
| ---------------------------------------------------- | |
| -- 1. Variables and flow control. | |
| ---------------------------------------------------- |
| /* Based on Sublime Text's Monokai theme */ | |
| .cm-s-monokai.CodeMirror {background: #272822; color: #f8f8f2;} | |
| .cm-s-monokai div.CodeMirror-selected {background: #49483E !important;} | |
| .cm-s-monokai .CodeMirror-gutters {background: #272822; border-right: 0px;} | |
| .cm-s-monokai .CodeMirror-linenumber {color: #d0d0d0;} | |
| .cm-s-monokai .CodeMirror-cursor {border-left: 1px solid #f8f8f0 !important;} | |
| .cm-s-monokai span.cm-comment {color: #75715e;} | |
| .cm-s-monokai span.cm-atom {color: #ae81ff;} |
| var crosswalk = { | |
| folder: { | |
| arm: 'tools/crosswalk-cordova-7.36.154.13-arm', | |
| x86: 'tools/crosswalk-cordova-7.36.154.13-x86' | |
| } | |
| }; | |
| // https://crosswalk-project.org/#documentation/cordova/migrate_an_application | |
| var addCrosswalk = { | |
| command: [ |
Soundflower is no software from an Apple authorized vendor, so you might need to adjust your system preferences, to be able to install software from third party vendors. Here's how to do that: https://www.tekrevue.com/tip/gatekeeper-macos-sierra/