pi@dev-machine:~$ neofetch --minimal
_______ USER : aadarsh
|.-----.| OS : Arch Linux / Bare Metal
|| core|| KERNEL : First-Principles-x86_64
||__***|| UPTIME : 100% (fueled by caffeine)
'-------' ROLE : I build the core and everything on top of it.
/ \ STACK : C, Rust, Python, x86 ASM
/>*|*****|*<\ GOAL : "Don't just use abstractions. Build them."
Full-stack, from hardware to abstraction.
pi@dev-machine:~$ cat /proc/self/maps | grep projects
| Segment | Resource | Function | Stack | Access |
|---|---|---|---|---|
0x4A1 |
RadishDB | Crash-safe storage engine | C, mmap, POSIX |
Read → |
0x7B2 |
TRX | Terminal-native package manager | Rust, Ratatui |
Read → |
0x9C3 |
Neural-Net | ML logic from scratch (No Frameworks) | C |
Read → |
pi@dev-machine:~$ ls -la /usr/share/doc
- 📄 [Crash-Safe Database Engine in C] — Deep dive into WAL and persistence. Read →
- 📄 [Neural Network from Scratch] — Implementing backpropagation and matrices in C. Read →
pi@dev-machine:~$ sysctl -a | grep skill_level
pi@dev-machine:~$ ip addr show
- eth0 (GitHub): pie-314
- wlan0 (LinkedIn): aadarsh-chandra
- tun0 (X / Twitter): @pie314n
- veth (Discord): mr.pi8219
- lo (Blog): pidev.tech
- kaggle0: aadarshchandra1
fn main() {
let mut life = Developer::new("Aadarsh");
loop {
life.learn();
life.build();
life.understand();
}
}