dorkeline
Results
2
issues of
dorkeline
This code essentially hasn't been updated since release and with some fairly major reworks of how twitter works it seems unlikely nothing ever changed in the last year. Additionally when...
Given a simple test file `bfp` as: ```py import bincopy bfp = bincopy.BinFile(word_size_bits=8) bfp.add_binary(b"cafe", 0) bfp.add_binary(b"babe", 5) ``` our segments look like ```py Segment(address=0, data=bytearray(b'cafe')) Segment(address=5, data=bytearray(b'babe')) bytearray(b'cafe\xffbabe') ``` Filling...