Encoding Non-Printable Bytes in Python 3
TL;DR bytes -> str: In []: b'\x90\x90\x90\x90'.decode('latin-1') Out[]: '\x90\x90\x90\x90' str -> bytes: In []: '\x90\x90\ »
TL;DR bytes -> str: In []: b'\x90\x90\x90\x90'.decode('latin-1') Out[]: '\x90\x90\x90\x90' str -> bytes: In []: '\x90\x90\ »
When I was young I owned a PlayStation 1 (PS1). It was one of the first, if not the first, game consoles I owned and it »
There comes a time in every engineer's life where it becomes necessary to decrypt SSL/TLS encrypted traffic. Whether it's debugging, security analysis, or just to »
A friend of mine ran into a problem. The keys on her Macbook Air started randomly falling off the keyboard! Not only is this a problem, »
Radio-frequency identification (RFID) is a widely used technology for the tracking and identification of objects that have been "tagged" with small RFID tags. These tags often »