Skip to content

Instantly share code, notes, and snippets.

View alexmagaddino's full-sized avatar
🏠
Working from home

Alessandro Magaddino alexmagaddino

🏠
Working from home
View GitHub Profile
import json
from pathlib import Path
def normalized(name):
return (name.replace("-", "_")).lower()
def prettyHex(num):
return str(hex(num)).replace("0x","")