This file contains hidden or 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
| Terrain + roads | |
| https://www.google.com.br/maps/vt?lyrs=p&x=2569&y=4639&z=13&scale=1 | |
| https://www.google.com.br/maps/vt?lyrs=p&x=5139&y=9279&z=14&scale=1 | |
| https://www.google.com.br/maps/vt?lyrs=p&x=10278&y=18558&z=15&scale=1 | |
| Birdeye + roads | |
| https://www.google.com.br/maps/vt?lyrs=y&x=2569&y=4639&z=13&scale=1 | |
| https://www.google.com.br/maps/vt?lyrs=y&x=5139&y=9279&z=14&scale=1 |
This file contains hidden or 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/bash | |
| AGENTPID=$HOME/.ssh/agent.pid | |
| AUTHSOCK=$HOME/.ssh/auth.sock | |
| if [[ -z ${SSH_AUTH_SOCK+x} ]] | |
| then | |
| if [[ ! -e $AUTHSOCK || ! -e $(cat $AUTHSOCK) ]] | |
| then | |
| eval $(ssh-agent -s) |
This file contains hidden or 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
| DEL /q ..\tmp\*.* | |
| "C:\Program Files\Python 2.7\python.exe" pybackup.py >> ..\logs\pybackup.log 2>&1 |
This file contains hidden or 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
| rd /q /s md5check_temp | |
| xcopy /e /i /h X:\ md5check_temp | |
| md5deep64.exe -lrX md5sum.txt md5check_temp\ |
This file contains hidden or 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
| # https://trac.ffmpeg.org/wiki/Encode/H.264 | |
| # https://trac.ffmpeg.org/wiki/Encode/AAC | |
| # -map 0 -c copy: copy all remaining streams | |
| # -pix_fmt yuv420p: be compatible with most players | |
| # high quality video, high quality audio | |
| avconv -i input.mov -map 0 -c copy -c:v libx264 -preset veryslow -pix_fmt yuv420p -crf 17 -c:a libfdk_aac -vbr 4 output.mov | |
| # high quality *compatible* full-hd video, high quality audio |
This file contains hidden or 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
| *~ | |
| *-old | |
| *.cache | |
| *.dpkg-dist | |
| *.dpkg-bak | |
| /*- | |
| /*.org | |
| /adjtime | |
| /.pwd.lock | |
| /mtab |
This file contains hidden or 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/bash | |
| IFS=$'\n' | |
| for L in $(git status --porcelain $1); do | |
| if [[ $L =~ ^\ M\ (.*)$ || $L =~ ^\ T\ (.*)$ || $L =~ ^\?\?\ (.*)$ ]] ; then | |
| git add ${BASH_REMATCH[1]} | |
| >&2 echo added ${BASH_REMATCH[1]} | |
| elif [[ $L =~ ^\ D\ (.*)$ ]] ; then | |
| git rm ${BASH_REMATCH[1]} |
This file contains hidden or 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
| <customMapSource> | |
| <name>Google Earth</name> | |
| <minZoom>0</minZoom> | |
| <maxZoom>19</maxZoom> | |
| <tileType>JPG</tileType> | |
| <tileUpdate>IfNoneMatch</tileUpdate> | |
| <url>https://khms{$serverpart}.google.com/kh/v=154&x={$x}&y={$y}&z={$z}</url> | |
| <serverParts>0 1 2 3</serverParts> | |
| </customMapSource> |
This file contains hidden or 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
| <customMapSource> | |
| <name>Google Maps</name> | |
| <minZoom>0</minZoom> | |
| <maxZoom>20</maxZoom> | |
| <tileType>PNG</tileType> | |
| <tileUpdate>IfNoneMatch</tileUpdate> | |
| <url>http://mt{$serverpart}.google.com/vt/lyrs=m@176103410&hl=pt-BR&x={$x}&y={$y}&z={$z}&s=Galileo&scale=1</url> | |
| <serverParts>0 1 2 3</serverParts> | |
| </customMapSource> |