Avoid any system permissions issue :-)
curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh -o install_nvm.sh
bash install_nvm.sh
source ~/.profile
nvm install 10.16.3
nvm use 10.16.3
server { | |
listen 80; | |
server_name my_app.com; | |
index index.html index.htm; | |
charset utf-8; | |
access_log off; | |
error_log /dev/null; |
setError(msg: string): void { | |
const provider = this.$refs.provider as InstanceType< | |
typeof ValidationProvider | |
> | |
provider.applyResult({ | |
errors: [msg], | |
failedRules: {}, | |
}) | |
}, |
Vue.js 11 hrs 3 mins █████████▎░░░░░░░░░░░ 44.1% | |
TypeScript 5 hrs 50 mins ████▉░░░░░░░░░░░░░░░░ 23.3% | |
PHP 5 hrs 42 mins ████▊░░░░░░░░░░░░░░░░ 22.8% | |
JSON 48 mins ▋░░░░░░░░░░░░░░░░░░░░ 3.3% | |
JavaScript 25 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.7% |
Running 22.11 km ▏░░░░░░░░░░░░░░░░░░ 10.46/h | |
Swimming 0.00 km ░░░░░░░░░░░░░░░░░░░ 0.00/h | |
Cycling 1817.95 km ██████████████████▊ 22.65/h | |
Last month 266.68 km 66 achievements 10:24h |
# Generated by iptables-save v1.4.21 on Mon Apr 25 12:53:52 2016 | |
*filter | |
:INPUT ACCEPT [0:0] | |
:FORWARD ACCEPT [0:0] | |
:OUTPUT ACCEPT [0:0] | |
-A INPUT -i lo -j ACCEPT | |
-A INPUT -p tcp -m tcp --dport 80 -j ACCEPT | |
-A INPUT -p tcp -m tcp --dport 443 -j ACCEPT | |
-A INPUT -p tcp -m tcp -s hostname.com --dport 22 -j ACCEPT | |
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT |
{ | |
"directory": "./resources/assets/vendor" | |
} |
git log --author="Fábio Santos" --oneline --shortstat --after="2017-01-01" | grep -E " files? changed," |
C:\php
C:\php\php.ini-production
to php.ini
extension_dir
and change the existing value to "C:\php\ext"
extension=php_curl.dll
C:\php
# Replace _WEBSITE.COM_ with YOUR_DOMAIN.TLD | |
# Replace _ADMIN_FOLDER_ with YOUR_ADMIN_FOLDER | |
server { | |
listen 80; | |
listen [::]:80; | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
server_name 127.0.0.1 _WEBSITE.com_ www._WEBSITE.com_; |