Skip to content

Instantly share code, notes, and snippets.

{
"10001": "Philadelphia-Reading-Camden, PA-NJ-DE-MD",
"10003": "Philadelphia-Reading-Camden, PA-NJ-DE-MD",
"10005": "Salisbury-Cambridge, MD-DE",
"11001": "Washington-Baltimore-Arlington, DC-MD-VA-WV-PA",
"12001": "Gainesville-Lake City, FL",
"12003": "Jacksonville-St. Marys-Palatka, FL-GA",
"12005": "Panama City, FL",
"12009": "Palm Bay-Melbourne-Titusville, FL",
"12011": "Miami-Port St. Lucie-Fort Lauderdale, FL",
htitem_id title author date rights OCLC LCCN ISBN catalog_url handle_url
njp.32101049918608 Annual report of the Commissioner of Patents for the year ... 1843 United States. Patent Office. 1843-00-00 1 1768626 2007239542 https://catalog.hathitrust.org/Record/002138126 https://hdl.handle.net/2027/njp.32101049918608
mdp.39015024298245 Annual report of the Commissioner of Patents for the year ... 1842-1844 United States. Patent Office. 1844-00-00 1 1768626 2007239542 https://catalog.hathitrust.org/Record/002138126 https://hdl.handle.net/2027/mdp.39015024298245
mdp.39015024298252 Annual report of the Commissioner of Patents for the year ... 1845 United States. Patent Office. 1845-00-00 1 1768626 2007239542 https://catalog.hathitrust.org/Record/002138126 https://hdl.handle.net/2027/mdp.39015024298252
mdp.39015024298260 Annual report of the Commissioner of Patents for the year ... 1846 United States. Patent Office. 1846-00-00 1 1768626 2007239542 https://catalog.hathitrust.org/Record/002138126 https://hdl.handl
@bmschmidt
bmschmidt / Sessions.geojson
Last active June 19, 2018 13:41
Land acquired by the Sessions family in Southeastern Alabama before the Civil War from the US government
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bmschmidt
bmschmidt / path.md
Created June 13, 2018 23:41
An ordered path between two reddit comments about college majors, from darkness to light.

[1] "b"Similar to how a 28 year old English major might feel as he waits tables. Now is the time of his life where he should be getting ahead, setting up a career, making use of the skills he worked so hard to aquire. Now all that's been torn apart, he's been lied to, swindled and betrayed.\n""
[2] "b"My husband (turned 30 last month) has had the opposite experience. He was encouraged by absolutely everyone to major in comp sci because that's where all the jobs were gonna be, and he'd been using computers all his life so it would be easy. It was easy, and that's the only reason he did it, and right around the time he graduated, the market became absolutely saturated and he's had the hardest time find

We can't make this file beautiful and searchable because it's too large.
CIPFamily,CIPCode,Type,General,TextChange,CIPTitle,CIPDefinition,CrossReferences,Examples
01,01,Agriculture,Pre-professional,no,"AGRICULTURE, AGRICULTURE OPERATIONS, AND RELATED SCIENCES.","Instructional programs that focus on agriculture and related sciences and that prepare individuals to apply specific knowledge, methods, and techniques to the management and performance of agricultural operations.",,
01,01.00,Agriculture,Pre-professional,no,"Agriculture, General.",Instructional content is defined in code 01.0000.,,
01,01.0000,Agriculture,Pre-professional,no,"Agriculture, General.","A program that focuses on the general principles and practice of agricultural research and production and that may prepare individuals to apply this knowledge to the solution of practical agricultural problems. Includes instruction in basic animal, plant, and soil science; animal husbandry and plant cultivation; soil conservation; and agricultural operations such as farming, ranching, and agricultural business.",14.0301 - Agric
@bmschmidt
bmschmidt / jupyter_shortcuts.md
Created March 20, 2018 19:55 — forked from kidpixo/jupyter_shortcuts.md
Keyboard shortcuts for ipython notebook 3.1.0 / jupyter

Toc

Keyboard shortcuts

The IPython Notebook has two different keyboard input modes. Edit mode allows you to type code/text into a cell and is indicated by a green cell border. Command mode binds the keyboard to notebook level actions and is indicated by a grey cell border.

MacOS modifier keys:

  • ⌘ : Command
@bmschmidt
bmschmidt / .block
Last active May 24, 2017 16:32 — forked from mbostock/.block
County Spheres a la Guy-Harold Smith
license: gpl-3.0
scrolling: yes
library(birdnik)
random_word <- function(key,
pos="adjective", min_count=100, n=1,
min_length = 5, max_length = 15){
param <- paste0("words.json/randomWords?hasDictionaryDef=true",
"&minCorpusCount=",min_count,
"&minLength=",min_length,
"&maxLength=",max_length,
@bmschmidt
bmschmidt / slopegraph.R
Created December 9, 2016 20:11
A slopegraph in R for use with with the wordVectors package
library(ggplot2)
library(wordVectors)
slopegraph = function(
set1 = "RMP"
,
set2 = "genderless_RMP"
,
word = "she"
,
import re
import gzip
import sys
def stripBadText(string):
if string==None:
return ""
# No html tags
string = re.sub("<[^>]+>","",string)
# People don't talk in [brackets] or (inside parentheses), so I strip them.