Skip to content

Instantly share code, notes, and snippets.

View harvimt's full-sized avatar

Mark Harviston harvimt

  • Oracle
  • Seattle, WA
View GitHub Profile
@bishboria
bishboria / springer-free-maths-books.md
Last active June 8, 2024 06:39
Springer made a bunch of books available for free, these were the direct links
@harvimt
harvimt / metastruct.py
Last active December 19, 2015 14:49
Example metaclass implementation for Python 3 for the construct3 library
class CustomCollection():
def __init__(self):
super().__init__()
self.items = []
def __setitem__(self, key, value):
if key == '_':
self.items.append(value)
else:
self.items.append((key, value))
@harvimt
harvimt / quotes.txt
Last active April 30, 2017 11:10
Quotes
“I’ve just got to say one thing: If this is it, if this is really the end—I get to use a rocket launcher.”
—Winston, Human Target (2010) S02E07
~~
“Behind the velvet lies / There is a truth as hard as steel.”
—“Holy Diver” by Dio
~~