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 / 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