Use Atom > Open Your Stylesheet to open the styles.less file in the editor, then add the following:
atom-text-editor::shadow {
.wrap-guide {
visibility: hidden;
}
}
Use Atom > Open Your Stylesheet to open the styles.less file in the editor, then add the following:
atom-text-editor::shadow {
.wrap-guide {
visibility: hidden;
}
}
Puma v2.11.3 OpenSSL Error
gem install puma -v '2.11.3' -- --with-cppflags=-I/usr/local/opt/openssl/include
Eventmachine v1.0.5 OpenSSL Error
gem install eventmachine -v '1.0.5' -- --with-cppflags=-I/usr/local/opt/openssl/include
Change Apple OS X Dock size from Apple Terminal
defaults write com.apple.dock tilesize -int 32; killall Dock
32
is icon size
libv8 Error Fix
brew install homebrew/versions/v8-315
brew link --overwrite v8-315 --force
gem install libv8 -v '3.16.14.13' -- --with-system-v8
gem install therubyracer -v '0.12.2' -- --with-system-v8
Install wget on Raspberry Pi
$ apt-get update
$ apt-get upgrade -y
$ apt-get dist-upgrade -y
$ apt-get install wget
Background Download File In Raspberry Pi Terminal
$ nohup wget -qc download_file_url & exit
$ ps aux | grep wget
$ kill pid
Prefences/keybindig-user
[
{ "keys": ["option+command+["], "command": "reindent"}
]
Install redis 3.2.3
curl -o http://download.redis.io/releases/redis-3.2.3.tar.gz
tar xzf redis-3.2.3.tar.gz
cd redis-3.2.3
make
cp src/redis-server src/redis-cli /usr/local/bin
Linux update date and time on internet
sudo date -s "$(wget -qSO- --max-redirect=0 google.com 2>&1 | grep Date: | cut -d' ' -f5-8)Z"