Run this magic line
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
For Arch Linux add this line to /etc/sysctl.d/99-sysctl.conf:
fs.inotify.max_user_watches=524288
Then execute:
| Add this to your bashrc file. | |
| export PATH=${PATH}:/home/user/Android/Sdk/tools | |
| export ANDROID_HOME=/home/user/Android/Sdk/ | |
| export PATH=${PATH}:/home/user/Android/Sdk/plathform-tools | |
| export PATH=$HOME/.node/bin:$PATH |
| Set prefix first | |
| yarn config set prefix ~/.yarn | |
| Then add this to your bashrc | |
| export PATH=$HOME/.node/bin:$PATH | |
| export PATH=$HOME/.yarn/bin:$PATH | |
| Then reload your terminal or run | |
| source ~/.bashrc |
| reference: http://suite.boundlessgeo.com/docs/latest/dataadmin/pgGettingStarted/firstconnect.html | |
| To set the default password: | |
| Run the psql command from the postgres user account: | |
| sudo -u postgres psql postgres | |
| Set the password: |
| def send_text_message(phone_number, message) do | |
| ExTwilio.Api.create(ExTwilio.Message, | |
| [to: phone_number, | |
| from: Application.get_env(:ex_twilio, :send_number), | |
| body: message]) | |
| end |
| kubectl delete pod --grace-period=0 --force --namespace='auditionmagic-v2' 'auditionmagic-v2-web-2499205047-p54l6' |
| git fetch origin pull/1119/head:fix/compulsory-button-text <--- just a sample |
| Install dependencies, create a virtual environment, download, install & configure | |
| sudo apt-get install virtualenv python-pip libpq-dev python-dev | |
| cd | |
| virtualenv pgadmin4 | |
| cd pgadmin4 | |
| source bin/activate | |
| wget https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.4/pip/pgadmin4-1.4-py2.py3-none-any.whl |
Run this magic line
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
For Arch Linux add this line to /etc/sysctl.d/99-sysctl.conf:
fs.inotify.max_user_watches=524288
Then execute:
go to about:config
search layers.acceleration.force-enabled
set value to true
#CURL
curl -L -C - -o "myfile.zip" "http://example.com/file.zip"
#ARIA
aria2c -c -m 0 -o "myfile.zip" "http://example.com/file.zip"
#WGET
wget -d -c --tries=0 --read-timeout=30 -O "myfile.zip" "http://example.com/file.zip"