Skip to content

Instantly share code, notes, and snippets.

View Hypercoded's full-sized avatar

Jordan Hypercoded

  • somewhere drinking coffee and writing code
View GitHub Profile
@Hypercoded
Hypercoded / calbin.py
Last active January 19, 2022 13:43
calbin needs a grapher (but java sucks and is so hard) so here is a python one that is simple
import matplotlib.pyplot as plt
import numpy as np
# 100 linearly spaced numbers
x = np.linspace(-5,5,100)
# the users input
## REFORMATTING
@Hypercoded
Hypercoded / FretboardMemorizationTool.py
Last active November 18, 2022 14:38
Fretboard Tutor: A quick program I wrote to help me memorize notes on the fretboard when I don't have my guitar with me!
import random
import os
# Settings
gameRange = (0, 5) # 0 is low E, 5 is high E.
strings = ["E", "A", "D", "G", "B", "e"] # works with other tunings too, i think
showOnlyFretboard = True
@Hypercoded
Hypercoded / headlineScraper.py
Created July 17, 2023 22:23
A tool for scraping headlines from archive.org
import requests
import csv
from bs4 import BeautifulSoup
import datetime
import requests
import re
import os
from selenium import webdriver
import pandas as pd