I hereby claim:
- I am icoloma on github.
- I am icoloma (https://keybase.io/icoloma) on keybase.
- I have a public key whose fingerprint is 1273 BC17 C42F 96B1 616D A4E8 5164 B8EC 99C7 D0E7
To claim this, I am signing this object:
| var http = require('http') | |
| // To use: execute "node maps-csp-test.js" and open a browser at localhost:8000 | |
| // remember to restart the server after making any changes | |
| var server = http.createServer( function(request, response) { | |
| response.writeHead(200, { | |
| 'Content-Type': 'text/html; charset=UTF-8' | |
| // This makes Google Maps work |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # Backup the repositories indicated in the command line | |
| # Example: | |
| # bin/backup user1/repo1 user1/repo2 | |
| set -e | |
| for i in $@; do | |
| FILENAME=$(echo $i | sed 's/\//-/g') | |
| echo "== Backing up $i to $FILENAME.bak" | |
| git clone git@github.com:$i $FILENAME.git --mirror | |
| cd "$FILENAME.git" |
| # Get the list of jobs launched for a given project (the project ID is optional) | |
| bq ls -j -n 10000 -a project_id > jobs.txt | |
| bq ls -j -n 10000 -a marine-tractor-567789 > jobs.txt | |
| # Get the details for a given job (the project ID is optional) | |
| bq show --format=prettyjson -j project_id:job_id | |
| bq show --format=prettyjson -j marine-tractor-567789:job_ftnDrpo8JqiJtajBH2AEZxJCLpw | |
| More details: http://stackoverflow.com/questions/31150542/logging-all-bigquery-queries |
| git clone -b gh-pages <remote_repo> <folder-name> |