Skip to content

Instantly share code, notes, and snippets.

View hcharley's full-sized avatar
🏗️
making things (better)

Honest Charley Bodkin hcharley

🏗️
making things (better)
View GitHub Profile
@hcharley
hcharley / 0_reuse_code.js
Last active August 29, 2015 14:18
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
#!/usr/bin/env python2
import feedparser
import urllib
from dateutil import parser, tz, relativedelta
from datetime import datetime, tzinfo, timedelta
from HTMLParser import HTMLParser
from re import search
import logging
@hcharley
hcharley / us-state-names-abbrevs.php
Last active December 20, 2015 03:19 — forked from maxrice/us-state-names-abbrevs.php
US states (no territories or other designations) capitalized. DC is also included.
<?php
$states = array(
'AL'=>'Alabama',
'AK'=>'Alaska',
'AZ'=>'Arizona',
'AR'=>'Arkansas',
'CA'=>'California',
'CO'=>'Colorado',
'CT'=>'Connecticut',
'DE'=>'Delaware',