Skip to content

Instantly share code, notes, and snippets.

View blinks's full-sized avatar

Adam Blinkinsop blinks

View GitHub Profile

Keybase proof

I hereby claim:

  • I am blinks on github.
  • I am blinks (https://keybase.io/blinks) on keybase.
  • I have a public key ASAvUWquxqT-GPdAtf3e40GJRMZ1FaTZ_0s4TJlPPuz8rQo

To claim this, I am signing this object:

@blinks
blinks / forex.py
Created September 19, 2019 16:39
A simple currency board tracker for For-Ex.
#!/usr/bin/env python3
# A simple currency board tracker for For-Ex.
# Needs `pip3 install colorama` and normal Python3.
from collections import defaultdict
from colorama import Fore, Style
import os
currency = {
'GBP': Fore.RED,
'EUR': Fore.BLUE,