Feb 12 路 13 min read 路 In this write-up, I'll document my journey through the Data Representation room on TryHackMe. This is part of the pre-security path and dives into the fundamental question: how do computers, which only understand 0s and 1s, represent the millions of ...
Join discussion
Jul 27, 2025 路 3 min read 路 馃殌 How I Made My Own Binary-Level Code Editor in Python (Like a Mini IDE) Because sometimes, even machine code deserves its own editor. "While I'm still learning the intricacies of binary-level programming, this project represents my early explora...
Join discussion
Apr 11, 2025 路 1 min read 路 Si queremos averiguar la paleta de colores de una imagen, tenemos muchas formas de hacerlo. Quiz谩s la que se te ha ocurrido cargar esa imagen en un editor fotogr谩fico o gr谩fico (Adobe Ilustrator, Photoshop, Gimp, Inkscape, Canva, etc) y utilizar el c...
Join discussion
Apr 10, 2025 路 4 min read 路 Hey, ethical hackers! Ever wondered why hexadecimal (base-16) pops up everywhere in your field? From memory forensics to debugging exploits, this quirky numbering system is your key to unlocking the mysteries of computer systems. If you鈥檙e diving int...
Join discussion
Mar 26, 2025 路 9 min read 路 Data encoding is a fundamental concept in computer science that lets us represent and share information in a digital format. For software developers, understanding the basics is crucial. This guide serves as a starting point, offering a concise overv...
Join discussion
Dec 25, 2024 路 2 min read 路 A CI/CD pipeline refers to a set of automated processes that enable software development teams to efficiently build, test, and deploy applications. The acronym stands for Continuous Integration (CI) and Continuous Delivery/Deployment (CD), which are ...
Join discussionDec 16, 2024 路 4 min read 路 What is Algorithmic Trading? Algorithmic trading, often referred to as algo trading, is a method that utilizes computer algorithms to automate trading decisions in financial markets. By leveraging technology, traders can execute orders at speeds and ...
Join discussionNov 20, 2024 路 2 min read 路 In JavaScript, the this keyword is a crucial concept that refers to the object that is currently executing or calling a function. Its value is determined by the context in which the function is invoked, making it dynamic and versatile. Contexts of th...
Join discussion
Jul 2, 2024 路 3 min read 路 Base16 Encoding (Hexadecimal) - The Basics Base16 encoding, commonly known as hexadecimal or simply hex, is a numeral system that uses 16 distinct symbols to represent values. These symbols are the digits 0-9 and the letters A-F (or a-f). Hexadecimal...
Join discussion