This file contains 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
{ | |
// Editor look and feel | |
"editor.tabSize": 2, | |
"editor.wordWrap": "on", | |
"workbench.colorTheme": "One Dark Pro", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.cursorBlinking": "phase", | |
"editor.cursorSmoothCaretAnimation": true, | |
// Formatting on save | |
"editor.codeActionsOnSave": { |
This file contains 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/bash | |
# Requires: | |
# brew install fortune lolcat cowsay | |
#place in /usr/local/bin/ and make executable | |
foo=$(fortune) | |
echo $foo | cowsay | lolcat |
This file contains 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/bash | |
# Requires: | |
# sudo apt-get install -y fortune lolcat spd-say cowsay | |
#place in /usr/bin/ and make executable | |
fortune | spd-say -e | cowsay | lolcat |
This file contains 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
VERSION="v5.7.0" | |
USERNAME="$(whoami)" | |
sudo yum install -y gcc-c++ make | |
# or: yum groupinstall 'Development Tools' | |
curl -O http://nodejs.org/dist/latest/node-${VERSION}.tar.gz | |
tar -xvzf node-${VERSION}.tar.gz | |
cd node-${VERSION} | |
./configure --prefix=/opt/node |