Skip to content

Instantly share code, notes, and snippets.

View merrybingo's full-sized avatar
👑
No Free Lunch

HyeJin Kim merrybingo

👑
No Free Lunch
  • Republic of Korea
View GitHub Profile
@merrybingo
merrybingo / README.md
Created December 31, 2019 02:07 — forked from e9t/README.md
식신로드 만점 식단 20선
@merrybingo
merrybingo / ctypes_structs_example.py
Last active June 28, 2019 03:13 — forked from JonathonReinhart/ctypes_structs_example.py
Using Python ctypes to manipulate binary data
#!/usr/bin/env python3
from __future__ import print_function
from binascii import hexlify
from ctypes import *
class StructHelper(object):
def __get_value_str(self, name, fmt='{}'):
val = getattr(self, name)