Skip to content

Instantly share code, notes, and snippets.

View zackoch's full-sized avatar
✔️
👨‍💻

Zac Koch zackoch

✔️
👨‍💻
View GitHub Profile
#so you'll do the following commands:
# this gets you into your home directory
cd ~
# this just lists files in the directory you're in
ls
# this is to make sure you have the required stuff first (python and git)
sudo apt-get install python3-dev git
# this pulls down the code from github
git clone https://github.com/zackoch/dual-adxl345.git
@zackoch
zackoch / us_states_list_of_tuples.py
Created March 26, 2020 19:22
Python: List of tuples with US state abbreviations & names
us_states = [('AK', 'Alaska'), ('AL', 'Alabama'), ('AZ', 'Arizona'), ('AR', 'Arkansas'), ('CA', 'California'),
('CO', 'Colorado'), ('CT', 'Connecticut'), ('DE', 'Delaware'), ('DC', 'District of Columbia'),
('FL', 'Florida'), ('GA', 'Georgia'), ('HI', 'Hawaii'), ('ID', 'Idaho'), ('IL', 'Illinois'),
('IN', 'Indiana'), ('IA', 'Iowa'), ('KS', 'Kansas'), ('KY', 'Kentucky'), ('LA', 'Louisiana'),
('ME', 'Maine'), ('MD', 'Maryland'), ('MA', 'Massachusetts'), ('MI', 'Michigan'), ('MN', 'Minnesota'),
('MS', 'Mississippi'), ('MO', 'Missouri'), ('MT', 'Montana'), ('NE', 'Nebraska'), ('NV', 'Nevada'),
('NH', 'New Hampshire'), ('NJ', 'New Jersey'), ('NM', 'New Mexico'), ('NY', 'New York'),
('NC', 'North Carolina'), ('ND', 'North Dakota'), ('OH', 'Ohio'), ('OK', 'Oklahoma'), ('OR', 'Oregon'),
('PA', 'Pennsylvania'), ('RI', 'Rhode Island'), ('SC', 'South Carolina'), ('SD', 'South Dakota'),
('TN', 'Tennessee'),