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
import io | |
import logging | |
import math | |
import cv2 | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from tqdm import tqdm |
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
import Html exposing (text) | |
import Json.Decode | |
type alias Car = | |
{ sensor1: Int | |
, sensor2: Int | |
} | |
type DrivingMode |
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
# Remove unused docker images | |
docker rmi $(docker images | grep "<none>"| awk -F' ' '{print $3}') | |
docker rmi $(docker images -aq --filter dangling=true) | |
# Remove orphaned docker volumes | |
docker volume rm $(docker volume ls -qf dangling=true) | |
# Remove dead containers | |
docker ps --filter status=dead -aq | xargs -r docker rm -v |
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
IMAGE_TAG=2017-04-10 | |
data/${IMAGE_TAG}-raspbian-jessie-lite.img: | |
mkdir -p data | |
wget \ | |
-O data/${IMAGE_TAG}-raspbian-jessie-lite.zip \ | |
http://director.downloads.raspberrypi.org/raspbian_lite/images/raspbian_lite-${IMAGE_TAG}/${IMAGE_TAG}-raspbian-jessie-lite.zip | |
unzip data/${IMAGE_TAG}-raspbian-jessie-lite.zip -d ./data | |
data/kernel-arm.img: |
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
init: | |
pip install msgpack-python==0.4.8 | |
go get gopkg.in/vmihailenco/msgpack.v2 | |
run: | |
go run main.go |
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
function metersToPixelsAtMaxZoom(latitude, radius){ | |
// ~0.075m/px (meters per pixel) | |
return radius / 0.075 / Math.cos(latitude * Math.PI / 180) | |
} | |
map.addSource("point", { | |
type: 'FeatureCollection', | |
features: [ | |
{ | |
"type": "Feature", | |
"geometry": { |
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
''' | |
Requirements: | |
geographiclib==1.46.3 | |
pyproj==1.9.5.1 | |
geopy==1.11.0 | |
git+https://github.com/xoolive/geodesy@c4eb611cc225908872715f7558ca6a686271327a | |
geo-py==0.4 | |
''' | |
from math import radians, sin, cos, asin, sqrt, pi, atan, atan2, fabs | |
from time import time |
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
// https://en.wikipedia.org/wiki/Mercator_projection | |
function MercatorProjection(){ | |
this.EARTH_RADIUS = 6378137 // WGS-84 | |
this.EARTH_HALF_CIRCUMFERENCE = Math.PI * this.EARTH_RADIUS // 20037508.342789244 | |
this.EARTH_METERS_PER_DEGREE = (Math.PI * this.EARTH_RADIUS) / 180 // 111319.49079327358 | |
this.RADIAN = Math.PI / 180 | |
this.DEGREE = 180 / Math.PI | |
} |
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
# check elapsed time after last modification | |
# not often than once at 15 minutes | |
if [ $(( $(date +%s) - $(stat --format %Y "some_file.txt") )) -gt 900 ] | |
then | |
echo "old" | |
fi |
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
-module(test). | |
-compile([export_all]). | |
-links([ | |
"https://github.com/efcasado/forms", | |
"https://github.com/matwey/pybeam", | |
"https://gist.github.com/kuenishi/3183043", | |
"https://github.com/hypernumbers/LuvvieScript", | |
"https://github.com/erlang/otp/blob/OTP-18.2/lib/compiler/src/genop.tab", |