#!/bin/sh
# Age 1337 just an integer, curiosity is infinite
echo "Languages I speak:"
echo " Low-level: ๐ ASM || ๐ฅ๏ธ C || ๐ฅ C++" || ๐ Nim || ๐ชฟ Go || ๐ฆ Rust
echo " High-level: ๐ Python || ๐ฎ DlackArch || ๐ง Arch Linux daily driver"
echo ""
echo "Philosophy: Understanding the stack from bare metal to abstract clouds"
echo "Status: Always compiling... (sometimes with warnings)"
โโโ ๐งฌ kernel-mod-experiments/ # Breaking things to learn
โโโ ๐ฏ game-dev-prototypes/ # Where C++ meets creativity
โโโ ๐ automation-tools/ # Because repeating tasks is boring
โโโ ๐ security-research/ # Breaking things (but ethically)struct Developer {
age: u8, // Chronological
mindset: &'static str, // Forever curious
current_phase: LearningPhase,
}
impl Developer {
fn new() -> Self {
Self {
age: 1337, // The good number
mindset: "eternal_learner",
current_phase: LearningPhase::SystemsProgramming,
}
}
fn keep_19_spirit(&self) -> bool {
true // Always returns true
}
}deep_dive:
- linux_kernel: "how things really work"
- graphics: "from pixels to pipelines"
- reverse_engineering: "the art of understanding"
mantra: "Learn the rules like a pro, so you can break them like an artist"
next_challenge: "Write a toy OS | Game engine from scratch | Contribute to OSS"// Multiple communication protocols available
#define DISCORD "dr4nyx404"
#define EMAIL "[email protected]"
#define TELEGRAM "coming soon"
#define MATRIX "in the future"
void send_message(const char* platform, const char* message) {
printf("[+] Connecting to %s...\n", platform);
printf("[>] %s\n", message);
printf("[โ] Message queued for delivery!\n");
}