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
| import urllib, re | |
| from pprint import pprint as pp | |
| from datetime import datetime, timedelta | |
| from geopy.geocoders import Google | |
| import MySQLdb | |
| from time import sleep | |
| bcpd_arc_url = "http://maps.baltimorepolice.org/servlet/com.esri.esrimap.Esrimap?ServiceName=BaltimorePolice&CustomService=Query&ClientVersion=3.1&Form=True&Encode=False" | |
| districts={"Northwest": |
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
| /** | |
| * A simple preforking echo server in C. | |
| * | |
| * Building: | |
| * | |
| * $ gcc -Wall -o echo echo.c | |
| * | |
| * Usage: | |
| * | |
| * $ ./echo |
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 | |
| prog=$(basename $0) | |
| logger="logger -t $prog" | |
| # Logs to syslog and stderr | |
| gripe () { | |
| $logger -s "$*" | |
| } |
NewerOlder