// The essential Human blueprint
class Human {
constructor() {
this.species = "Homo Sapiens";
this.skills = ["breathing", "eating", "sleeping"]; // __ _
} // | / \ | _\(_)/_ @ZeroLinux
} // \_\\ //______/ /(o)\
// .'/()\'.____/`- /' \
// A Developer is just a Human with extra features // Zero \\`.//\ _ /` \ \\ ,, / /
class Developer extends Human { // _\(o)/_ / /`.,' `.,' '-.`\()/`.-'
constructor() { // /(_)\ /__/__/ DevLife--_'(_ )'_--.
super(); // . _.._ \ // /` /`""`\ `\ \
this.name = "ZeroLinux"; // @ZeroLinux ' '.'`._,' | | >< | |
this.mood = "π§"; // / __ \/___\,'\ /\ / /
this.os = "Arch Linux (btw)"; // , | >< |__,__\,-' '.__.' linux
this.mission = "Building Arch-based ISO from scratch"; // . \ \ / / . \ _\(o)/_
this.skills.push("coding", "system design"); // \_'--`( )'--'_/ _ /(_)\
this.skills.push("linux ricing", "pacman -Syu"); // .--'/()\'--. _\( )/_
} // / /` d' `\ \ /(O)\
greet() { // _ @ZeroLinux
return `Hi! I'm ${this.name}...${this.mood}`; // _\(_)/_ \ /
} // /(O)\ @ZeroLinux
}
// Say hello!
console.log(new Developer().greet());
// Output: Hi! I'm ZeroLinux...π§ $ whoami
zerolinux
$ cat about.txt
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β π§ Developer | Tool Builder | Linux Enthusiast β
β π§ Arch Linux devotee β currently crafting my own ISO β
β π οΈ Passionate about building useful developer tools β
β β‘ Low-level tinkerer, high-level thinker β
β π Open source contributor & system architect β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
$ uname -a
ZeroLinux 0.1.0-dev Arch-based #1 SMP PREEMPT_DYNAMIC x86_64 GNU/Linuxβββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β β
β βββββββββββββββββββββββ βββββββ βββ βββββββ ββββββ ββββββ βββ β
β ββββββββββββββββββββββββββββββββββββ ββββββββ ββββββ βββββββββββ β
β βββββ ββββββ βββββββββββ ββββββ βββββββββ ββββββ βββ ββββββ β
β βββββ ββββββ βββββββββββ ββββββ ββββββββββββββββ βββ ββββββ β
β βββββββββββββββββββ ββββββββββββββββββββββββββ βββββββββββββββββββ βββ β
β βββββββββββββββββββ βββ βββββββ ββββββββββββββ βββββ βββββββ βββ βββ β
β β
β π§ An Arch-based Linux Distribution π§ β
β Building from zero, one package at a time β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
| Feature | Status |
|---|---|
| ποΈ Base System (Arch) | π In Progress |
| π¦ Custom Package Selection | π In Progress |
| π¨ Custom Desktop Environment Config | π Planned |
| π οΈ Developer Tools Bundle | π Planned |
| π ISO Build Script | π Planned |
| π Documentation | π Planned |
"Zero bloat. Zero compromise. Built from scratch."
I believe in understanding every layer of the stack β
from the kernel up. If I can't build it, I don't deserve to use it.