This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: GnuPG/MacGPG2 v2.0.20 (Darwin) | |
Comment: GPGTools - https://gpgtools.org | |
mQINBFIKB18BEADWZvUf+2taIgGEl+AbZVOEuPt1movmT2KG9qY0354RS4EVJU+s | |
3edCSm55ynazcJo6ikSEsVFb2LKa9Lmqpf//32Q3Mpt10AX7nLcnxYBrMCu6uVBV | |
l+9cpPKIFtOLLZQvLN4LhgS39wAi+Azin3on3LrTWc7knRwCeGrx+UupbDdYiExm | |
sVleD9gjKX9ri/sqEdBlNZV48pXrCGbEC3b50Jh1rdPIUg//KZMAwThuOzXo2Y8l | |
9pWLWZqbuNXCBNDixq3TVOZAptWrvSSCQDrfA+wJbho9dRR3jurgoF9kb8BiJnsL | |
CZkf2R8tMUfgG866okRisRCIE8VbRX19bS6is0czKa/1/HJc0NDhLV4hig2aijsP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: OpenPGP.js v.1.20130712 | |
Comment: http://openpgpjs.org | |
xsBNBFINLngBCACTfqW1ZsIPtaBCeXGQ+KuG66wBCTVNodqhY5P292sekYOG | |
1ldjADX1bO/T88nqQlBgJi/gwzOb9dDkD/MXjcdX3buJS+oiPsHdG9+v34Xq | |
owZCbZP4XAHC3epXkpN/K/kMdjY5mPorakeP4eXWKT3XfKwhe/GoZ3eXcxaH | |
tfGIK1M055fBCQIuOusgMf55dbsfg9QyzTbXZciP0x9PuUvrd3TaYpebBmYq | |
cTc0Z44feQevj+/GQxh8Il4i+eJF1mpa1gzVbAKfnAXu1zxqOuHIwfbaKlgM | |
f32fXFC17ya/2ZQ7wkme/E2XOTrSjuSYLj5hewDccYat+T9dtaZRfFWjABEB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *> | |
ServerName example.com | |
WSGIDaemonProcess www user=max group=max threads=5 | |
WSGIScriptAlias / /home/max/Projekte/flask-upload/flask-upload.wsgi | |
<Directory /home/max/Projekte/flask-upload> | |
WSGIProcessGroup www | |
WSGIApplicationGroup %{GLOBAL} | |
Order deny,allow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
slp=0s | |
rep=0 | |
vol=1 | |
text='Type something Here for me to say.' | |
while getopts 'w:r:v:t:' OPTION | |
do | |
case $OPTION in |