Skip to content

Instantly share code, notes, and snippets.

View touv's full-sized avatar

Nicolas Thouvenin touv

View GitHub Profile
@touv
touv / gist:d8f2f56efb11d76bcf06718c1b7e223a
Last active March 8, 2018 13:05
Enable Webcam in Windows guest on Ubuntu Virtualbox
VBoxManage list vms
VBoxManage list webcams
VBoxManage controlvm "vthouveni" webcam attach .1
@touv
touv / jason-toarray.sh
Created May 14, 2018 09:42
Exemple de passage du JSON vers des variables BASH
#!/bin/sh
# "DATABASES": [
# {
# "MYSQL_DATABASE": "database1",
# "MYSQL_USER": "user",
# "MYSQL_PASSWORD": "toto"
# },
# {
# "MYSQL_DATABASE": "database2",
@touv
touv / httpd.conf
Created June 8, 2018 12:07
Apache reverse proxy conf for ezmaster
<VirtualHost *:443>
ServerName exemple.fr
ServerAlias *.exemple.fr
SSLEngine on
SSLProxyEngine on
comm -13 <(docker ps -a --format '{{.Names}}'|egrep "^\w+\-\w+\-.*$"|sed -e s/-[0-9]*$//g|sort|uniq) <(docker exec ezmaster_db mongo --quiet --eval 'db.adminCommand( { listDatabases: 1 } )'|jq -r '.databases[] | .name'|awk '{ print $1}'|sort|uniq)|awk '{print "docker exec ezmaster_db mongo",$1,"--eval \x27 db.dropDatabase(); \x27"}'