Skip to content

Instantly share code, notes, and snippets.

View D3MZ's full-sized avatar
😎

Demetrius Michael D3MZ

😎
View GitHub Profile
@D3MZ
D3MZ / ad-block-list.txt
Created September 29, 2017 21:03
Bad websites to advertise on
www.breitbart.com
@D3MZ
D3MZ / idiosyncrasies-python.md
Created February 27, 2025 15:44
Idiosyncrasies in Python

you cannot reference folders with - in the name

from player-random.agent import Agent #player-random/agent.py won't work
from player_random.agent import Agent #player_random/agent.py does work

overly short and inconsistent naming are ideomatic

import pandas as pd