class Developer:
def __init__(self):
self.name = "Danko"
self.role = "Software Developer"
self.location = "Earth π"
self.interests = [
"Reverse Engineering",
"Binary Analysis",
"Low-Level Programming",
"System Architecture"
]
def current_focus(self):
return {
"learning": ["x86-64 Assembly", "Binary Analysis", "Protocol RE"],
"building": ["CLI Tools", "System Utilities", "miniOS"],
"goal": "Master the fundamentals of how software really works"
}| Area | Focus |
|---|---|
| Reverse Engineering | Binary analysis, protocol reverse engineering, malware analysis (educational) |
| Low-Level Programming | x86-64 assembly, memory management, OS internals |
| Tool Development | Building CLI utilities, automation scripts, system tools |
| Current Projects | miniOS development, improving KIT and LEX editors |
"The best way to understand something is to break it down, analyze the pieces, and rebuild it better."
I believe in learning by doing and breaking things (safely) to understand how they work. Every bug is a lesson, every error is an opportunity to learn something new.
