AMAnirudhan Madhavaninanirudhan.hashnode.devHex Encoding and DecodingBytes are the computational truth, every other representation is an interface format Hex-Encoding Hex encoding is a representation step, not an encryption step. It converts each byte into two ASCII c1d ago·2 min read
AMAnirudhan Madhavaninanirudhan.hashnode.devBinary Encodings: From Bits to BytesBinary data is rarely handled in its raw string of 1s and 0s. Instead, developers and systems rely on encodings that balance human readability with machine efficiency. While decimal and octal have spe1d ago·3 min read
AMAnirudhan Madhavaninanirudhan.hashnode.devBase64 Encoding and DecodingBytes are the computational truth, every other representation is an interface format Binary data cannot be safely passed through every channel. Email bodies, JSON fields, HTTP headers, PEM certificat1d ago·4 min read
VMVaibhav Malikininkscape-dev.hashnode.devRefactoring LPE PowerMask in InkscapeIntroduction Live Path Effects (LPEs) are one of the most powerful extension mechanisms in Inkscape. LPEs allow complex transformations to be applied to vector objects. Among these, LPE PowerMask stan6d ago·8 min read
FBFrancis Baziele Saahinbaziele.hashnode.devIntroduction To The Windows APIThe Windows API can be intimidating at first. With it’s weird naming conventions and data types it can be hard to work with. In this blog post, I will cover everything you need to know to get up and rMar 6·12 min read
ISIshan Singhinbytewhistle.hashnode.devHow to Learn C++: The No-Nonsense Beginner GuideLearning a programming language can feel overwhelming at the start, especially when the internet is filled with endless tutorials and conflicting advice. Many beginners search for how to learn C++ butMar 6·9 min read
Ssupersonicinaespa.hashnode.devd3d9-webgl — Run Legacy D3D9 Code in the Browser Without Rewriting ItI ported a 2003 online game to the browser. The game was written in C++ with Direct3D 9. Emscripten handles the C++-to-Wasm part fine, but the moment you #include <d3d9.h>, the build dies — that headeMar 5·4 min read
AKAneesh Khandelwalincosmic-coder.hashnode.devC++ Functions Unlocked: A Practical Guide to Reusable CodeWhat are functions A Function is a reusable block of code that performs a specific task. Think of it like a machine where you give the input, it processes it, and gives the output. Mathematically:- Mar 3·3 min read
MMiloinblog.nudgelabs.netImplementation of a Pick-and-Place Task with a 6-Axis RobotRelated Post: Exploring Robotic Dynamics with MuJoCo: 2-DOF Modeling Exploring Robotic Dynamics with MuJoCo: Calculating 3-DOF coordinates In this post, I will demonstrate a simple pick-and-place Mar 1·2 min read
SJSubhahu Jaininlldcoding.comDesign (LLD) Vending Machine - C++1️⃣ Functional Requirements A vending machine should support: Add products Add inventory (quantity) Insert money (multiple denominations) Select product Dispense product Return change Cancel trFeb 28·7 min read