netsh interface ipv4 show neighbors
This section will contain general NMEA stuff and possibly how to connect hardware to Lowrance Elite 4 CHIRP
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 | |
| # list of encodings to try. (max 10) | |
| enc=( latin1 windows-1252 ) | |
| while IFS= read -rd '' file <&3; do | |
| base=${file##*/} dir=${file%/*} | |
| # if converting from utf8 to utf8 succeeds, we'll assume the filename is ok. | |
| iconv -f utf8 <<< "$base" >/dev/null 2>&1 && continue |
This file has been truncated, but you can view the full file.
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <kml xmlns="http://www.opengis.net/kml/2.2"> | |
| <Folder> | |
| <Document> | |
| <name>svardlang</name> | |
| <Style id="ISO:1m"> | |
| <PolyStyle> | |
| <color>e60000cc</color> | |
| <fill>true</fill> | |
| <outline>false</outline> |
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 | |
| echo '.. checking apt cache' | |
| timestamp_file="$(mktemp)" | |
| touch -d "$(date -R -d '1 day ago')" $timestamp_file | |
| file=/var/lib/apt/periodic/update-success-stamp | |
| if [ $file -ot $timestamp_file ]; then | |
| echo '.. old apt cache' | |
| apt-get update | |
| apt-get upgrade -y |