Skip to content

Instantly share code, notes, and snippets.

View lukesalamone's full-sized avatar

Luke Salamone lukesalamone

View GitHub Profile
label: 0, chatgpt: The pixel list represents the digit 0.
label: 0, chatgpt: The pixel list represents the digit 0.
label: 2, chatgpt: The pixel list represents the digit 0.
label: 0, chatgpt: The pixel list represents the digit 5.
label: 8, chatgpt: The pixel list represents the digit 0.
label: 3, chatgpt: The pixel list represents the digit 0.
label: 7, chatgpt: The pixel list represents the digit 7.
label: 1, chatgpt: The pixel list represents the digit 0.
label: 6, chatgpt: The pixel list represents the digit 0.
label: 0, chatgpt: The pixel list represents the digit 0.
abbe
abed
aced
ache
aged
agha
baba
babe
bach
bade
baseurl = "https://lukesalamone.github.io"
title = "Luke Salamone's Blog"
languageCode = "en-us"
theme = "hello-friend-ng"
paginate = 10
relativeURLs = true
canonifyURLs = true
[params]
dateform = "Jan 2, 2006"
We can't make this file beautiful and searchable because it's too large.
officer_id,year,race,gender,birth_year,appointed_year,trr_count,hm_count,allegations_count,sustained_count
1,2007,White,M,1971,2005,0,4,1,0
1,2008,White,M,1971,2005,0,8,0,0
1,2009,White,M,1971,2005,1,11,0,0
1,2010,White,M,1971,2005,1,11,1,0
1,2011,White,M,1971,2005,1,13,0,0
1,2012,White,M,1971,2005,1,1,1,0
1,2013,White,M,1971,2005,2,4,1,0
1,2014,White,M,1971,2005,1,1,0,0
1,2015,White,M,1971,2005,0,1,0,0
@lukesalamone
lukesalamone / secrets.json
Last active November 1, 2020 17:58
extract from db using python
{
"db_password": "",
"db_host": ""
}
@lukesalamone
lukesalamone / allegations_awards.csv
Last active October 27, 2020 01:12
officer allegations and awards by year
award_count sustained_allegation_count year
3 0 2005
3 0 2006
6 0 2007
12 0 2008
15 0 2009
14 0 2010
16 0 2011
4 0 2012
6 0 2013
def buildRegex(secret, knownLetters):
regex = ''
for letter in secret:
if letter in knownLetters:
regex += letter
else:
regex += '.'
return regex