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 math | |
import pymongo | |
from pymongo import Connection | |
earth_radius_in_miles = 3959.0 | |
radians_to_degrees = 180.0 / math.pi | |
radius = (0.0189393939 / earth_radius_in_miles) * radians_to_degrees # 100 foot radius | |
bbox_earth_radius = 3959.0 # miles | |
bbox_dist_from_center = 0.1 # miles |
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
# path taken from brew install notes | |
POSTGIS_SQL_PATH=/usr/local/share/postgis | |
# Creating the template spatial database. | |
createdb -E UTF8 template_postgis | |
createlang -d template_postgis plpgsql # Adding PLPGSQL language support. | |
# Allows non-superusers the ability to create from this template | |
psql -d postgres -c "UPDATE pg_database SET datistemplate='true' WHERE datname='template_postgis';" |
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
################################################################ | |
# jesse's .profile | |
################################################################ | |
# set path so that the bin folder that brew uses comes before | |
# the /usr/bin | |
PATH=/usr/local/bin:$PATH | |
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
THE PROBLEM: | |
Standard practices say no non-root process gets to talk to the Internet on a port less than 1024. How, then, could I get Node talking on port 80 on EC2? (I wanted it to go as fast as possible and use the smallest possible share of my teeny tiny little micro-instance's resources, so proxying through nginx or Apache seemed suboptimal.) | |
THE TEMPTINGLY EASY BUT TOTALLY WRONG SOLUTION: | |
Alter the port the script talks to from 8000 to 80: | |
}).listen(80); |
NewerOlder