Skip to content

Instantly share code, notes, and snippets.

@rlvaugh
rlvaugh / wordcloud_trivia_game.py
Last active March 10, 2024 15:38
A word cloud trivia game.
"""Create a wordcloud quiz game from Wikipedia film pages."""
import matplotlib.pyplot as plt
from matplotlib import patches
import requests
from bs4 import BeautifulSoup
from wordcloud import WordCloud, STOPWORDS
# Create dictionary of movie Wikipedia pages:
urls = {'avengers infinity war': 'https://w.wiki/3hxu',
@rlvaugh
rlvaugh / hound.txt
Created February 29, 2024 03:09
The Hound of the Baskervilles corpy
Mr. Sherlock Holmes, who was usually very late in the mornings, save
upon those not infrequent occasions when he was up all night, was seated
at the breakfast table. I stood upon the hearth-rug and picked up the
stick which our visitor had left behind him the night before. It was a
fine, thick piece of wood, bulbous-headed, of the sort which is known as
a �Penang lawyer.� Just under the head was a broad silver band nearly
an inch across. �To James Mortimer, M.R.C.S., from his friends of the
C.C.H.,� was engraved upon it, with the date �1884.� It was just such a
stick as the old-fashioned family practitioner used to carry--dignified,
@rlvaugh
rlvaugh / historical_popl.csv
Last active January 8, 2024 03:49
Historical Human Population
year population
-192000 2
-10000 4000000
-5000 5000000
-4000 7000000
-3000 14000000
-2000 27000000
-1000 50000000
-200 150000000
1 170000000
@rlvaugh
rlvaugh / NYC_4_oaks_2022.csv
Created November 28, 2023 22:13
Location of 4 types of oak trees in NYC as of 2022
We can't make this file beautiful and searchable because it's too large.
latin,common,latitude,longitude
Quercus palustris,pin oak,40.79411067,-73.81867946
Quercus palustris,pin oak,40.74068684,-73.80826026
Quercus palustris,pin oak,40.53211313,-74.1561806
Quercus palustris,pin oak,40.85677447,-73.89097861
Quercus palustris,pin oak,40.78993607,-73.97721169
Quercus palustris,pin oak,40.74503399,-73.98253015
Quercus palustris,pin oak,40.73599985,-73.99985935
Quercus palustris,pin oak,40.76686765,-73.89540541
Quercus palustris,pin oak,40.68194327,-74.00410729
@rlvaugh
rlvaugh / Melbourne primary schools 2023.csv
Created November 22, 2023 00:03
Melbourne Primary School Locations 2023
School Street Address Town Latitude Longitude
Sunshine Harvester 132 Hertford Road Sunshine 3020 -37.7828649 144.8457061
Dinjerra 44 South Road Braybrook 3019 -37.79160094 144.8564986
Altona North 51 Cresser Street Altona North 3025 -37.8378758 144.8500279
Newport Gardens Cnr Woods St & Maddox Rd Newport 3015 -37.8452031 144.8686781
Newport Lakes Elizabeth Street Newport 3015 -37.83832991 144.8783805
Spotswood Melbourne Road Spotswood 3015 -37.83062433 144.8819261
Wembley 32 St Leonards Ave Yarraville 3013 -37.82064135 144.8744036
Kingsville 58 Bishop Street Yarraville 3013 -37.8125611 144.8746236
Yarraville West 30 Powell Street Yarraville 3013 -37.8146896 144.8851951
@rlvaugh
rlvaugh / AP_poll_2002_2022.csv
Created October 17, 2023 14:46
AP preseason and final Top 25 college football polls 2002-2022
Year Week Poll Rank Team Conference
2002 18 Final 1 Ohio State Big Ten
2002 18 Final 2 Miami (FL) Big East
2002 18 Final 3 Georgia SEC (East)
2002 18 Final 4 USC Pac-10
2002 18 Final 5 Oklahoma Big 12 (South)
2002 18 Final 6 Texas Big 12 (South)
2002 18 Final 7 Kansas State Big 12 (North)
2002 18 Final 8 Iowa Big Ten
2002 18 Final 9 Michigan Big Ten
@rlvaugh
rlvaugh / galaxy_3d_Medium.py
Created October 3, 2023 16:56
Python script to build 3-D spiral galaxy static simulation.
# Create a 3-D simulation of a spiral galaxy.
import math
from random import randint, uniform, random
import numpy as np
import matplotlib.pyplot as plt
plt.style.use('dark_background')
get_ipython().run_line_magic('matplotlib', 'qt')
@rlvaugh
rlvaugh / galaxy_right.py
Created September 29, 2023 01:06
A Tkinter model of a spiral galaxy.
import math
import tkinter as tk
from random import randint, uniform, random
# Set scaling factor for galaxy:
SCALE = 225
# set-up tkinter display canvas:
root = tk.Tk()
root.title("A Spiral Galaxy")
@rlvaugh
rlvaugh / NOAA_hurricane_summary_1920-2022.csv
Created September 19, 2023 15:52
Atlantic hurricane counts 1920-2022
Year H MH
1920 4 0
1921 5 2
1922 3 1
1923 4 1
1924 5 2
1925 1 0
1926 8 6
1927 4 1
1928 4 1
@rlvaugh
rlvaugh / NOAA_hurricane_summary_w_nino.csv
Last active September 17, 2023 01:23
NOAA Hurricane and Major Hurricane Predictions vs. Actual vs. El Nino/La Nina Events
Year Predicted H Low Predicted H High Actual H Predicted MH Low Predicted MH High Actual MH Event
2001 5 7 9 2 3 4 Nina
2002 6 8 4 2 3 2 Nino
2003 6 9 7 2 4 3 Nino
2004 6 8 9 2 4 6 Nino
2005 7 9 15 3 5 7 Weak Event
2006 8 10 5 4 6 2 Nina
2007 7 10 6 3 5 2 Nina
2008 6 9 8 2 5 5 Nina
2009 4 7 3 1 3 2 Nino