1 Followers
1 Following
6 Posts
Why MadBomber? because back during the IBM/TSO days the static electrify I carried around in my pockets would crash the entire network whenever I touched any of the big blue boxes; hence, the ops started calling me the Mad Bomber because every time I came into the computer room I would "bomb" (crash) the system.
Hands-On: The RISC-V ESP32-C3 Will Be Your New ESP8266

We just got our hands on some engineering pre-samples of the ESP32-C3 chip and modules, and there’s a lot to like about this chip. The question is what should you compare this to; is it more …

Hackaday

I'm working on a pure Ruby network packet encode/decode module using Array#pack and String#unpack. I did one of these about 16 years ago where everything was in one class. This time each format is a separate class like Uint8, Uint16, Uint32 and TimeStamp (which is a composite of 7 bytes) - with class methods encode and decode.

I'm kinda liking this current approach. Anyone do something similar? I'm expecting a little performance hit but frankly don't care at this point. #bittwiddling