Skip to content

Instantly share code, notes, and snippets.

View jaredmo's full-sized avatar

Jared Monger jaredmo

  • Lyra Health
  • Nashville, TN
View GitHub Profile
@rjhansen
rjhansen / keyservers.md
Last active April 14, 2024 12:28
SKS Keyserver Network Under Attack

SKS Keyserver Network Under Attack

This work is released under a Creative Commons Attribution-NoDerivatives 4.0 International License.

Terminological Note

"OpenPGP" refers to the OpenPGP protocol, in much the same way that HTML refers to the protocol that specifies how to write a web page. "GnuPG", "SequoiaPGP", "OpenPGP.js", and others are implementations of the OpenPGP protocol in the same way that Mozilla Firefox, Google Chromium, and Microsoft Edge refer to software packages that process HTML data.

Who am I?

import pandas as pd
import matplotlib.pyplot as plt
data = pd.read_csv('data/Greenville_County_School_District_Spending.csv',
converters={'Amount': lambda x: float(x.replace('$', ''))},
parse_dates=9)
singleDigitCounts = data\
.Amount[data.Amount >= 1]\
.apply(lambda x: int(str(x)[:1]))\
.value_counts()