Dark Mode

Deconstructing Digital Worlds.

Welcome to my personal hub for reverse engineering, software development, 3D printing, drone flights, and other tech explorations.

// Quick Access

Latest Intel

Dive into my most recent blog posts and findings.

Read Blog

Active Projects

See what I'm currently building and working on.

View Projects

Skill Matrix

Explore my technical skills and experience.

My Resume

Digital Library

Access my collection of reference books and documents.

Browse Books

:: 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;
}