aph·o·rism /afəˌrizəm/ noun
a pithy observation that contains a general truth, such as, “if it ain't broke, don't fix it.”.
how did i get here?
⬇ Luddite
aph·o·rism /afəˌrizəm/ noun
a pithy observation that contains a general truth, such as, “if it ain't broke, don't fix it.”.
how did i get here?
⬇ Luddite
| root# apt-get update | |
| root# apt-get upgrade | |
| // dependencies for Ruby | |
| root# apt-get install -y git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev \ | |
| libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev \ | |
| libpcre3-dev unzip | |
| // Node.js v7 | |
| root# curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - |
| AllCops: | |
| DisplayCopNames: true | |
| DisplayStyleGuide: true | |
| TargetRubyVersion: 2.4 | |
| DisabledByDefault: true | |
| Exclude: | |
| - db/**/** | |
| - bin/* | |
| # Prefer &&/|| over and/or. |
| module Encryptable | |
| def encrypt(key) | |
| crypt.encrypt_and_sign(key) | |
| end | |
| def decrypt(key) | |
| crypt.decrypt_and_verify(key) | |
| end | |
| private |
| wget https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tgz | |
| tar xzf Python-2.7.18.tgz | |
| cd Python-2.7.18 | |
| sudo ./configure --enable-optimizations | |
| sudo make altinstall | |
| sudo ln -s "/usr/local/bin/python2.7" "/usr/bin/python" |