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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleExecutable</key> | |
<string>myapp</string> | |
<key>CFBundleIdentifier</key> | |
<string>com.pocketgophers.myapp</string> | |
<key>CFBundleURLTypes</key> | |
<array> |
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
#!/bin/bash | |
INPUT=`mktemp --tmpdir input.XXX` | |
OUTPUT=`mktemp --tmpdir output.XXX` | |
ps2pdf13 - $INPUT | |
chapbook.sh $INPUT $OUTPUT 2>&1 > /dev/null | |
pdf2ps $OUTPUT - | |
[ -e $INPUT ] && rm -f $INPUT | |
[ -e $OUTPUT ] && rm -f $OUTPUT |
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
*.8 | |
*.6 | |
monitor |
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 all residential parcels */ | |
parcel = parcels->data; | |
head = &(parcels->data); | |
while(parcel != NULL) { | |
if(strncmp(parcel->data[2], "R", 1) == 0) { | |
head = &(parcel->next); | |
parcel = parcel->next; | |
} else { | |
*head = parcel->next; | |
clusterGIS_Free_record(parcel); |
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
if(key == 1008130) { | |
GIS created = new GIS(); | |
GIS.update("\"97123897\",\"POLYGON((-112.0859375 33.4349975585938,-112.0859375 33.4675445556641,-112.059799194336 33.4675445556641,-112.059799194336 33.4349975585938,-112.0859375 33.4349975585938))\",\"C\""); | |
output.collect(new LongWritable(new Integer(97123897)), created); | |
} | |
output.collect(key, value); |