Skip to content

Instantly share code, notes, and snippets.

View stevevance's full-sized avatar
🏠
Working from home

Steven Vance stevevance

🏠
Working from home
View GitHub Profile
@nmpeterson
nmpeterson / Census_Change2010-2020_byCCA.csv
Created August 13, 2021 17:19
A table containing 2010 & 2020 Decennial Census counts of population, households and housing units for each of the 77 Chicago Community Areas
CCA_Num CCA Pop2010 Pop2020 Pop_Change Pop_PctChange HH2010 HH2020 HH_Change HH_PctChange HU2010 HU2020 HU_Change HU_PctChange
14 Albany Park 51542 48396 -3146 -6.10 16322 17161 839 5.14 17982 18254 272 1.51
57 Archer Heights 13363 14196 833 6.23 3838 4163 325 8.47 4244 4405 161 3.79
34 Armour Square 13443 13890 447 3.33 5262 5648 386 7.34 5771 6078 307 5.32
70 Ashburn 41081 41098 17 0.04 12451 12909 458 3.68 13060 13387 327 2.50
71 Auburn Gresham 48743 44878 -3865 -7.93 17603 18071 468 2.66 20351 20664 313 1.54
25 Austin 98514 96557 -1957 -1.99 32792 35864 3072 9.37 38214 39477 1263 3.31
45 Avalon Park 10148 9458 -690 -6.80 3907 4145 238 6.09 4274 4569 295 6.90
21 Avondale 39262 36257 -3005 -7.65 13573 14578 1005 7.40 15339 15937 598 3.90
19 Belmont Cragin 78743 78116 -627 -0.80 21591 23450 1859 8.61 23634 24881 1247 5.28
@mapmeld
mapmeld / OverEncrypt.md
Last active July 25, 2023 18:55
OverEncrypt - paranoid HTTPS

OverEncrypt

This is a guide that I wrote to improve the default security of my website https://fortran.io , which has a certificate from LetsEncrypt. I'm choosing to improve HTTPS security and transparency without consideration for legacy browser support.

WARNING: if you mess up settings, lose your certificates, or decide to no longer maintain HTTPS certs, these steps can and will make your domain inaccessible.

I would recommend these steps only if you have a specific need for information security, privacy, and trust with your users, and/or maintain a separate secure.example.com domain which won't mess up your main site. If you've been thinking about hosting a site on Tor, then this might be a good option, too.

The best resources that I've found for explaining these steps are https://https.cio.gov , https://certificate-transparency.org , and https://twitter.com/konklone

@pjsier
pjsier / mapzen_typeahead.html
Last active October 31, 2017 23:09
Using typeahead.js with Mapzen Search autocomplete and displaying selected locations in Leaflet
<!DOCTYPE html>
<html>
<head>
<title>Mapzen Autocomplete Gist</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.css" />
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.11.1/typeahead.bundle.min.js"></script>
<script src="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.js"></script>
@nrrb
nrrb / contractors.csv
Last active February 6, 2019 05:39
Scraping Chicago's Department of Buildings list of general contractors using selenium.
We can't make this file beautiful and searchable because it's too large.
Phone,Address,Lic Expr,Company Name,License Type
(773)342-1988,3966 WEST GRAND AVENUE  CHICAGO  IL 60651,06/24/2014,#1 QUALITY CHOICE INC,"E - $500,000 PROJECT CEILING"
(312)656-8984,1119 BLANCHAN AVE.  LA GRANGE PARK  IL 60526,06/20/2014,"(XRB) CONSTRUCTION SERVICES, LLC.","E - $500,000 PROJECT CEILING"
(312)256-4251,2210 N LAPORTE  CHICAGO  IL 60639,11/11/2014,"1 VISION CONSTRUCTION COMPANY, INC","E - $500,000 PROJECT CEILING"
(224)402-4282,1011 WOODLAND DR.  GLENVIEW  IL 60025,05/28/2014,"1-KJO HOLDING, LLC.","E - $500,000 PROJECT CEILING"
(773)342-8200,1001 NORTH MILWAUKEE AVENUE SUITE 400 CHICAGO  IL 60622,07/07/2014,1001 NORTH INCORPORATED,"D - $2,000,000 PROJECT CEILING"
(877)685-6095,5070 N. KIMBERLY AVE. UNIT C CHICAGO  IL 60630,11/24/2014,"123 REMODELING, INC","D - $2,000,000 PROJECT CEILING"
(773)842-9406,4919 N. MOBILE AVENUE  CHICAGO  IL 60630,01/18/2015,"1248 W GRACE, LLC","D - $2,000,000 PROJECT CEILING"
(630)327-4614,"1639 W. WALNUT STREET, UNIT 202  CHICAGO  IL 60612",08/27/2014
@timwaters
timwaters / geoiq_leaflet.htm
Created October 31, 2011 11:34
geoiq geocommons and leaflet
<html><head><title>Geocommons and Leaflet JS</title>
<!-- Leaflet CSS -->
<link rel="stylesheet" href="CloudMade-Leaflet-404b097/dist/leaflet.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="CloudMade-Leaflet-404b097/dist>/leaflet.ie.css" /><![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
<!-- Leaflet JavaScript -->
<script type="text/javascript" src="CloudMade-Leaflet-404b097/dist/leaflet.js"></script>