Skip to content

Instantly share code, notes, and snippets.

View gronke's full-sized avatar
👾
¯\_(ツ)_/¯

Stefan Grönke gronke

👾
¯\_(ツ)_/¯
View GitHub Profile
@funzoneq
funzoneq / simplehttp.service
Created May 25, 2016 13:24
A systemd file for a python SimpleHTTPServer
[Unit]
Description=Job that runs the python SimpleHTTPServer daemon
Documentation=man:SimpleHTTPServer(1)
[Service]
Type=simple
WorkingDirectory=/tmp/letsencrypt
ExecStart=/usr/bin/python -m SimpleHTTPServer 80 &
ExecStop=/bin/kill `/bin/ps aux | /bin/grep SimpleHTTPServer | /bin/grep -v grep | /usr/bin/awk '{ print $2 }'`
@milkbread
milkbread / index.html
Created July 8, 2013 05:54
HTML: Tiled Vectors - a 1st Test
<!DOCTYPE html>
<html>
<head>
<title>Testmap for Vector Tiles</title>
<meta charset="utf-8" />
<script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://bl.ocks.org/NelsonMinar/raw/5851197/TileLayer.d3_topoJSON.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>