I hereby claim:
- I am micheleorsi on github.
- I am micheleorsi (https://keybase.io/micheleorsi) on keybase.
- I have a public key whose fingerprint is F846 98A8 2306 114C C604 7478 69AB 77A6 10F6 6B7F
To claim this, I am signing this object:
| From emergency-unit (arduino & sensors) | |
| GET | |
| http://sample-env-kmuwwhu5qf.elasticbeanstalk.com/rest/units/<id-device>?accelerometrox=123&accelerometroy=124&accelerometroz=125 | |
| From windows app: | |
| POST | |
| http://sample-env-kmuwwhu5qf.elasticbeanstalk.com/rest/reviews/<type> | |
| POST | |
| http://sample-env-kmuwwhu5qf.elasticbeanstalk.com/rest/hosting/people |
| SELECT | |
| custom_channel_id, | |
| SUM(earnings) AS earnings | |
| FROM | |
| [google.com:adsense-reports:Reports.DailyCustomChannelReport] | |
| GROUP BY | |
| custom_channel_id | |
| ORDER BY | |
| earnings DESC | |
| LIMIT |
| #!/bin/bash | |
| # SETTINGS | |
| # You should specify here your worker name | |
| USERNAME="username" | |
| # You should specify here your worker password | |
| PASSWORD="password" | |
| # You should specify here how long each pool should run for | |
| TIMEOUT="6h" | |
| # The path where your miner is located | |
| MINER_PATH="./minerd" |
| # set public key | |
| # update VM | |
| sudo apt-get update | |
| # JAVA installation | |
| sudo add-apt-repository ppa:webupd8team/java && sudo apt-get update && sudo apt-get install oracle-java7-installer && sudo apt-get install oracle-java7-set-default | |
| # install git | |
| sudo apt-get install git zip ant |
| # set public key | |
| # change timezone to PST (sudo dpkg-reconfigure tzdata) | |
| # update VM | |
| $ sudo apt-get update && sudo apt-get upgrade | |
| # install java | |
| $ sudo apt-get -y install openjdk-7-jdk | |
| $ java -version |
| # run every 10 minutes | |
| */10 * * * * $GAE_PATH/appcfg.py -A <application-name> -V <release-name> -M <module> --oauth2 --include_all --append -n 1 request_logs $LOG_PATH`date +\%y-\%m-\%d`-log.log |
| export JAVA_HOME="$(/usr/libexec/java_home -v 1.7)" | |
| export HOMEBREW_GITHUB_API_TOKEN=<token> | |
| export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin | |
| export ANDROID_HOME=/usr/local/opt/android-sdk | |
| export CLICOLOR=1 | |
| export LSCOLORS=GxFxCxDxBxegedabagaced | |
| # Amazon AWS | |
| #export AWS_ACCESS_KEY="<key>" |
| #!/bin/bash | |
| # Check args | |
| if [ $# \< 2 ]; then | |
| echo "Usage: $(basename $0 $1) <file> <cache-millisec>"; | |
| exit 1; | |
| fi | |
| #file name | |
| fileName=""; |
I hereby claim:
To claim this, I am signing this object:
| # once a day at 23:50 | |
| 50 23 * * * <command> | |
| # every 2 hours at 00 minutes | |
| 0 */2 * * * <command> | |
| # every hour at 29 and 59 minutes (that means every half an hour) | |
| 29,59 * * * * <command> | |
| # every hour at 59 minutes |