Primer paso ir a google maps y crear un recorrido:
Copiar cuidadosamente la URL que se genera y pegarla en https://mapstogpx.com/
Descargamos un archivo.gpx
Primer paso ir a google maps y crear un recorrido:
Copiar cuidadosamente la URL que se genera y pegarla en https://mapstogpx.com/
Descargamos un archivo.gpx
sdfsadf
| #!/bin/bash | |
| # Author: Cristian Cortez <[email protected]> | |
| # Dependencies: cpulimiter | |
| # | |
| # Usage: | |
| # $ sh meteor-cpu-limiter.sh | |
| # Problem the process is taking a lot of resources | |
| # coworkers machines get temperature and their fans makes noice |
| ## MongoDump | |
| Normal db dump | |
| ```bash | |
| $ mongodump -db <dbname> --out /home/data/backup-<dbname> | |
| ``` | |
| [Mongo Dump Reference](http://docs.mongodb.org/manual/reference/program/mongodump/#bin.mongodump) |
| function getGoals() { | |
| var p = parseInt((Math.random()*100),10), | |
| r = 0, | |
| g = parseInt((Math.random()*10),10); | |
| if(p<=25) { | |
| r = 0; | |
| } else if(p<=40) { | |
| r = 1; | |
| } else if(p<=50) { |