Skip to content

Instantly share code, notes, and snippets.

@swkim101
swkim101 / README.md
Created December 3, 2020 22:53
Patcherex Tricore README
@swkim101
swkim101 / cybertruck.py
Last active June 14, 2023 19:36
cybertruck challenge 2021
"""
For CyberTruck Challenge 2021
https://www.cybertruckchallenge.org/participate/truck-challenges/
"""
from enum import Enum
class dotdict(dict):
"""dot.notation access to dictionary attributes"""
__getattr__ = dict.get