Skip to content

Instantly share code, notes, and snippets.

@richiverse
richiverse / powerball.py
Last active March 18, 2023 05:06
Python powerball number generator
#!/usr/bin/env python
"""
If you happen to win, I only ask for a measly 1% tip. ;)
To run, save this file and run it by typing the following in your terminal:
python powerball.py
"""
from pprint import pprint as pp
import random
@richiverse
richiverse / xlspathtodf.py
Last active August 29, 2015 14:09
Takes a path of xls(x) files and convert them to 1 pandas dataframe.
#!/usr/bin/env python
from __future__ import print_function
from glob import glob
import pandas as pd
# path to your xls(x) files
xlsx_path = "<your/path>/*.xls*"
# set to False in production
DEBUG = True
@richiverse
richiverse / README.md
Last active August 29, 2015 14:05 — forked from mbostock/.block
simple bar chart
@richiverse
richiverse / venn.ipynb
Last active August 29, 2015 14:04
venn_test
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.