/etc/ppp/ip-up
Attempt to manage vpn routing table with Related Stackoverflow Question:
https://superuser.com/a/206826/55267
Related answer:
https://superuser.com/a/206826/55267
# setup
# sudo /sbin/rcvboxdrv -h | |
# Unloading modules: | |
# Loading modules: modprobe: FATAL: Module vboxnetadp not found in directory /lib/modules/4.4.3-1-ARCH | |
# modprobe: FATAL: Module vboxnetflt not found in directory /lib/modules/4.4.3-1-ARCH | |
# modprobe: FATAL: Module vboxpci not found in directory /lib/modules/4.4.3-1-ARCH | |
# modprobe: FATAL: Module vboxdrv not found in directory /lib/modules/4.4.3-1-ARCH | |
# Solution | |
# from https://forum.antergos.com/topic/818/can-t-run-my-vitualbox/4 |
#!/usr/bin/env python | |
import json | |
import sys | |
try: | |
dotenv = sys.argv[1] | |
except IndexError as e: | |
dotenv = '.env' | |
with open(dotenv, 'r') as f: |
/etc/ppp/ip-up
Related Stackoverflow Question:
https://superuser.com/a/206826/55267
Related answer:
https://superuser.com/a/206826/55267
# setup
AWS_S3_BUCKET= | |
AWS_S3_ACCESS_KEY_ID= | |
AWS_S3_SECRET_ACCESS_KEY= |
from something that starts with
-----BEGIN OPENSSH PRIVATE KEY-----
to something that starts with
# > It happened to me and it turned out that I removed erroneously the postgres user from "ssl-cert" group, set it back with | |
gpasswd -a postgres ssl-cert | |
# Fixed ownership and mode | |
sudo chown root:ssl-cert /etc/ssl/private/ssl-cert-snakeoil.key | |
sudo chmod 740 /etc/ssl/private/ssl-cert-snakeoil.key | |
# now postgresql starts! (and install command doesn't fail anymore) | |
sudo /etc/init.d/postgresql start |
#!/usr/bin/env bash |
You should have some tools installed like Homebrew, a text editor such as Sublime Text and it's subl command line app inside a bin
folder and some basic terminal knowledge.
This gist is a more detailed version of niepi's gist with things that worked for me. It may help someone :)
$ brew install php --with-apache --with-mysql --with-pgsql --with-intl
You'll need jupyter and some tools to draw plots :)
pip3 install jupyter
pip3 install matplotlib numpy pandas
jupyter notebook
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# T: an array containing the values of the coins | |
# L: integer wich is the total to give back | |
# Output: Minimal number of coins needed to make a total of L | |
def dynamicCoinChange( T, L ): | |
Opt = [0 for i in range(0, L+1)] | |