Deconstructing Digital Worlds.
Welcome to my personal hub for reverse engineering, software development, 3D printing, drone flights, and other tech explorations.
// Quick Access
>> Recent Dispatches
>> Project Spotlight
Project HexView
A tool for visualizing binary data structures. Inspired by ImHex.
AndroWidget Suite
A collection of useful Android home screen widgets.
?? What I'm Exploring
- Advanced Android Architecture (MVVM, Compose)
- Custom Drone Firmware (Betaflight Internals)
- Deep Dive into Sicilian Defense (Chess)
- Learning Rust for Systems Programming
:: Example Code Snippet ::
// main.cpp - A simple C++ example
#include <iostream>
struct Vector3 {
float x, y, z;
};
int main() {
Vector3 position = {1.0f, 2.0f, 3.0f};
std::cout << "Position: ("
<< position.x << ", "
<< position.y << ", "
<< position.z << ")"
<< std::endl;
return 0;
}