View blaseball_divisions.json
{ | |
"Lawful Good": [ | |
"Lovers", | |
"Tacos", | |
"Steaks", | |
"Breath Mints", | |
"Firefighters" | |
], | |
"Chaotic Good": [ | |
"Shoe Thieves", |
View allstars.py
from github import * | |
import sys | |
import json | |
def usage(): | |
print("") | |
print("allstars.py: script to print all repos starred by a Github user") | |
print("Usage: python allstars.py [USERNAME]") | |
print("") |
View get_all_bundles.py
import json | |
from hca.dss import DSSClient | |
dss = DSSClient() | |
print(dss.get_all_bundles(replica="gcp")) | |
print(dss.get_all_bundles(replica="aws")) |
View simple_arg.py
import os, sys | |
import argparse | |
""" | |
A Simple Argparse Program | |
That Works Just The Way | |
We Like It. | |
Charles Reid |
View example_hyperas.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View poly_circ_undirected.tex
\documentclass[border=2mm]{standalone} | |
\usepackage{tikz} | |
\usepackage{xintexpr} | |
\usetikzlibrary{shapes.geometric} | |
\begin{document} | |
\begin{tikzpicture}[scale=3] | |
% make a node with variable name pol (with the list of features given) at the location (0,0), and don't label it | |
\node (pol) [draw=none, thick, black!90!black,rotate=0,minimum size=6cm,regular polygon, regular polygon sides=11] at (0,0) {}; |
View poly_directed.tex
\documentclass[border=2mm]{standalone} | |
\usepackage{tikz} | |
\usepackage{xintexpr} | |
\usetikzlibrary{shapes.geometric} | |
\begin{document} | |
\begin{tikzpicture}[scale=3] | |
% make a node with variable name pol (with the list of features given) at the location (0,0), and don't label it | |
\node (pol) [draw, thick, black!90!black,rotate=0,minimum size=6cm,regular polygon, regular polygon sides=11] at (0,0) {}; |
View polygon.tex
\documentclass[border=2mm]{standalone} | |
\usepackage{tikz} | |
\usepackage{xintexpr} | |
\usetikzlibrary{shapes.geometric} | |
\begin{document} | |
\begin{tikzpicture}[scale=3] | |
% make a node with variable name pol (with the list of features given) at the location (0,0), and don't label it | |
\node (pol) [draw, thick, black!90!black,rotate=0,minimum size=6cm,regular polygon, regular polygon sides=11] at (0,0) {}; |
View make_centillion_public.py
#!/usr/bin/env python | |
import re, os | |
from github import Github | |
import time | |
''' | |
Centillion Dead Person Switch | |
If this script is run for | |
more than 72 hours continuously, |
View process.py
from jinja2 import Environment, PackageLoader, select_autoescape | |
def process(**kwargs): | |
# set up Jinja env | |
env = Environment( | |
loader=PackageLoader(''), | |
autoescape=select_autoescape(['html', 'xml']) | |
) |
NewerOlder