This file contains 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
[[source]] | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
name = "pypi" | |
[packages] | |
polyline = "*" | |
gpxpy = "*" | |
tabulate = "*" |
This file contains 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
#!/usr/bin/env bash | |
export AWS_PAGER="" | |
AWS_REGION="eu-central-1" | |
DATADOG_RESOURCE_NAME="Datadog::Dashboards::Dashboard" | |
FOLDER="datadog-dashboards-dashboard" | |
VERSION="2.0.2" | |
aws cloudformation register-type \ | |
--region "${AWS_REGION}" \ |
This file contains 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
#!/usr/bin/env bash | |
mkdir -p kml | |
for i in *.gpx | |
do | |
f=${i##*/} | |
target=kml/${f%.gpx}.kml | |
echo "$target" | |
# -x nuketypes,tracks | |
gpsbabel -i gpx -f "$i" -o kml,points=0 -F "${target}" | |
done |
This file contains 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
/* stripped down sample for triggering a gpio as led by the kernel*/ | |
/* to compile: dtc -O dtb -o BB-MX1-00A0.dtbo -b 0 -@ pinctrl_mx_0.dts */ | |
/dts-v1/; | |
/plugin/; | |
/ { | |
compatible = "ti,beaglebone", "ti,beaglebone-black"; | |
/* identification */ | |
part-number = "BB-TEST1"; |