Skip to content

Instantly share code, notes, and snippets.

View pjhoberman's full-sized avatar

PJ Hoberman pjhoberman

  • Denver, Colorado
View GitHub Profile
#binary to int:
# int("001", 2) --> 1
# int("101", 2) --> 5
# seat = "FBFBBFFRLR"
# row = seat[:7]
# col = seat[7:]
def get_seat(seat):
row = int("".join(map(lambda letter: {"F": "0", "B": "1"}[letter], seat[:7])), 2)

Podcasts

import csv
import datetime
location_tmpl = {
'COUNTY': None,
'NAME': None,
'DIRECTIONS': None,
'IS_DROP_BOX': None,
'IS_EARLY_VOTING': None,
'ADDRESS LINE 1': None,
import csv
import datetime
keys = ['COUNTY', 'NAME', 'DIRECTIONS', 'IS_DROP_BOX', 'IS_EARLY_VOTING', 'ADDRESS LINE 1', 'ADDRESS LINE 2', 'CITY', 'STATE', 'ZIP', 'START TIME', 'END TIME', 'START DATE', 'END DATE']
locations = []
with open('co2.csv', 'r') as file:
reader = csv.reader(file)
previous_address = None
for i, line in enumerate(reader):
# print(i, line)
<item>
<title>3-Cheese Stuffed Shells with Roasted Red Pepper Sauce</title>
<link>http://cleaneating.vip.lndo.site/recipe/3-cheese-stuffed-shells-with-roasted-red-pepper-sauce/</link>
<pubDate>Fri, 04 Sep 2020 16:43:17 +0000</pubDate>
<dc:creator><![CDATA[cleaneating]]></dc:creator>
<guid isPermaLink="false">http://cleaneating.vip.lndo.site/?post_type=recipe&#038;p=14153</guid>
<description></description>
<content:encoded><![CDATA[<!-- tml-version="2" -->
<img src="http://cleaneating.vip.lndo.site/wp-content/uploads/sites/6/2013/11/3-cheese-stuffed-shells-with-roasted-red-pepper-sauce.jpg" alt="3-Cheese Stuffed Shells with Roasted Red Pepper Sauce" data-attribution="Photo by Yvonne Duivenvoorden" title="3-Cheese Stuffed Shells with Roasted Red Pepper Sauce" />
]]></content:encoded>
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<title>Random Word</title>
#distributor-list .distributor {
margin: 10px;
border-radius: 10px;
width: 30%;
min-width: 250px;
}
.d-inline-block {
display: inline-block!important;
}
.card {

'I thought I was going to die': Denver safety director Murphy Robinson talks about the time a trooper put a gun to his head

Alayna Alvarez, Colorado Politics Jun 10, 2020 Updated Jun 11, 2020 0

IMG_9929 (2).JPG Denver's newly appointed public safety director Murphy Robinson raises a fist in support of the George Floyd protests on June 4, 2020, at Civic Center Park's amphitheater during a memorial service honoring Floyd's life.

Alayna Alvarez, Colorado Politics

When asked to recount a turbulent interaction with police that has had the greatest influence on his life, Murphy Robinson, Denver's newly appointed safety director, had to think.

2020-04-24T18:29:59.8282181Z ##[group]Run python manage.py migrate
2020-04-24T18:29:59.8282493Z python manage.py migrate
2020-04-24T18:29:59.8329923Z shell: /bin/bash -e {0}
2020-04-24T18:29:59.8330142Z env:
2020-04-24T18:29:59.8330822Z SECRET_KEY: ***
2020-04-24T18:29:59.8331062Z DB_NAME: ***
2020-04-24T18:29:59.8331283Z DB_USER: ***
2020-04-24T18:29:59.8331490Z DB_PASSWORD: ***
2020-04-24T18:29:59.8331710Z DB_HOST: ***
2020-04-24T18:29:59.8331978Z SENDGRID_API_KEY: ***