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/sh | |
for i in $(ls -d */); do | |
cd ${i%%/}; | |
if [ -d .git ]; then | |
modified=`git status --porcelain | grep M` | |
untracked=`git status --porcelain | grep "?"` | |
unpushed=`git status | grep ahead` | |
if ! [ -z "$modified" ]; then | |
echo "${i%%/} contains uncommitted changes" | |
fi |
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:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.opengis.net/kml/2.2"> | |
<Document> | |
<name>KML Export 2/5/2018 3:34:04 PM</name> | |
<Style id="style_emergency"> | |
<IconStyle> | |
<colorMode>normal</colorMode> | |
<Icon> | |
<href>http://maps.google.com/mapfiles/kml/shapes/caution.png</href> | |
</Icon> |
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:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.opengis.net/kml/2.2"> | |
<Document> | |
<name>KML Export 2/5/2018 3:38:47 PM</name> | |
<Style id="style_emergency"> | |
<IconStyle> | |
<colorMode>normal</colorMode> | |
<Icon> | |
<href>http://maps.google.com/mapfiles/kml/shapes/caution.png</href> | |
</Icon> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='utf-8' /> | |
<title>Add a GeoJSON line</title> | |
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.45.0/mapbox-gl.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.45.0/mapbox-gl.css' rel='stylesheet' /> | |
<style> | |
body { margin:0; padding:0; } |
OlderNewer