This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"Episode": "Human Flesh", | |
"Burger": "\"New Bacon-Ings\"", | |
"Season": 1 | |
}, | |
{ | |
"Episode": "Human Flesh", | |
"Burger": "The Child Molester (Comes With Candy)", | |
"Season": 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
field_joke_opener | field_joke_response | |
---|---|---|
Why did the scarecrow win an award? | He was outstanding in his field. | |
Did you hear about the two satellites that got married? | The wedding wasn't much, but the reception was incredible. | |
February can't March. | But April May! | |
Why don't crabs ever give to charity? | Because they're shellfish. | |
Why did the carpenter leave the lumber store? | Because he got bored. | |
Why did the snake go to the doctor? | Because he had a frog in his throat. | |
Why did the ghost buy a box of bandages? | Because he had so many BOO BOOs. | |
What's the difference between the moon and a cheeseburger? | The moon is in the sky, a cheeseburger is in THIS guy. (Points to belly) | |
If I asked you to choose your favorite feature, would you... | ...pick your nose? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Equivalent to the old pylintUseMinimalCheckers setting in VS Code | |
# Generated with: | |
# pylint --disable=all --enable=F,E,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode --generate-rcfile | |
# | |
[MAIN] | |
# Analyse import fallback blocks. This can be used to support both Python 2 and | |
# 3 compatible code, which means that the block might have code that exists | |
# only in one or another interpreter, leading to false positives when analysed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```{=html} | |
<% | |
// Number of columns | |
const cols = 3; | |
// Card alignment | |
const align = "left"; | |
// Borders |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nchs_code | fipsco | countyname | statename | |
---|---|---|---|---|
1001 | 1001 | Autauga | Alabama | |
1002 | 1003 | Baldwin | Alabama | |
1003 | 1005 | Barbour | Alabama | |
1004 | 1007 | Bibb | Alabama | |
1005 | 1009 | Blount | Alabama | |
1006 | 1011 | Bullock | Alabama | |
1007 | 1013 | Butler | Alabama | |
1008 | 1015 | Calhoun | Alabama | |
1009 | 1017 | Chambers | Alabama |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dask.dataframe as dd | |
import numpy as np | |
import pandas as pd | |
import os | |
import argparse | |
from dask.diagnostics import ProgressBar | |
ProgressBar().register() | |
#requires dask, pandas, numpy. |