I hereby claim:
- I am synchrone on github.
- I am synchrone (https://keybase.io/synchrone) on keybase.
- I have a public key whose fingerprint is 67C2 9A55 5411 FC93 8D07 FF7E 9FB1 575A CF58 CE59
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| ####### | |
| # Keep in mind that Ubuntu 14.04 has a little broken python-boto. I found that installing https://launchpad.net/~chris-lea/+archive/ubuntu/python-boto does help | |
| ###### | |
| declare -x S3_USE_SIGV4=True #required for eu-central-1 | |
| declare -x AWS_ACCESS_KEY_ID= |
| server { #generic php-fpm setup, really | |
| server_name i; | |
| root /var/www/i/www; | |
| client_max_body_size 20m; | |
| index index.php index.htm index.html; | |
| location ~ ^.+\.php$ { | |
| if ( -f $document_root/../maintenance) { | |
| return 503; | |
| } |
| <?php | |
| function random_number($length=1){ | |
| $number = array(); | |
| for($i=0; $i < $length; $i++){ | |
| $number[] = mt_rand(0,9); | |
| } | |
| return $number; | |
| } | |
| function company_itn(){ |