"Kutriya dek ke number dial kr" โ When someone asks how to reach me
Translation: "Dial the number after seeing the puppy" ๐
Basically, I'm the developer who makes things happen! โจ
| ๐ Project | โญ Stars | ๐ด Forks | ๐ท๏ธ Tech |
|---|---|---|---|
| CodelithLabs | 0 | 0 | TypeScript |
| portfolio-donbili | 2 | 0 | JavaScript |
| nebula-os | 0 | 0 | HTML |
| codelith-minecraft-server | 0 | 0 | Minecraft |
- ๐ Building CodelithLabs from scratch
- ๐ฎ Managing and expanding my Minecraft server
- ๐ Creating awesome web experiences
- ๐ Deep diving into TypeScript generics
- Reach 100 GitHub followers
- Launch 5 new projects
- Get first 10 stars on CodelithLabs
- Learn Rust
- Build a production-ready React app
- Grow Minecraft server to 50 players
"First, solve the problem. Then, write the code." โ John Johnson ๐จ
"Code is like humor. When you have to explain it, it's bad." โ Cory House ๐
"Talk is cheap. Show me the code." โ Linus Torvalds ๐ป
"I'm going to make him an offer he can't refuse" - The Godfather ๐
- โ๏ธ Minecraft - Building since 2015
- ๐ฏ Valorant - Diamond rank (maybe... ๐ )
- ๐ GTA Online - Just vibing
- ๐ซ CS2 - Old but gold
๐ง Coding with lo-fi beats is a whole mood ๐ง
- ๐ Dog lover โ "Kutriya dek ke number dial kr" says it all!
- ๐ฑ Currently learning: TypeScript, React
- โก Mantra: Work so good, clients just call! ๐
- ๐ฎ Minecraft Server Owner โ Yes, I run my own!
- โ Fuel: Coffee + Code = Magic
- ๐ Night owl โ Code flows better at 2 AM
const life = {
coffee: Infinity,
code: true,
bugs: 0,
sleep: () => "Tomorrow",
motivation: "Kutriya dek ke number dial kr"
};
while (life.code) {
life.coffee--;
if (life.coffee === 0) break;
}type Coffee = {
cups: number;
strength: "weak" | "strong" | "nuclear";
};
const refuel = (coffee: Coffee): void => {
if (coffee.cups === 0) {
console.log("BREW MORE COFFEE!!! โ๐ค");
}
};
type Developer = {
name: string;
caffeineLevel: number;
codeQuality: " questionable " | "acceptable" | "genius";
};
const me: Developer = {
name: "Donbili69",
caffeineLevel: Infinity,
codeQuality: "genius" // obviously
};import this # The Zen of Python
# My coding philosophy
def life():
while True:
if coffee > 0:
code()
else:
sleep()
# This line never executes - we never sleep! ๐fn main() {
let coffee = String::from("โ");
let mut energy = 100;
while energy > 0 {
println!("{} Coding...", coffee);
energy -= 10;
}
// Rust guarantees no null pointer derefs
// But can't guarantee no 2AM debugging sessions
}SELECT * FROM life
WHERE activity = 'coding'
AND time BETWEEN '00:00' AND '06:00'
AND coffee_cups > 5;
-- Result: Every night of my life ๐
package main
import (
"fmt"
"time"
)
func code() {
for {
fmt.Println("๐งโ๐ป Coding...")
time.Sleep(1 * time.Second)
}
}
func main() {
go code() // Let me code in background
// While I sleep... just kidding, I don't sleep! ๐ดโก๏ธโ
select {} // Block forever
}#include <iostream>
#include <memory>
class Coffee {
public:
void drink() { std::cout << "Slurp! โ\n"; }
};
int main() {
auto myCoffee = std::make_unique<Coffee>();
myCoffee->drink();
// Smart pointers save lives!
// Unlike my sleep schedule ๐
return 0;
}class Developer
attr_accessor :name, :coffee_count
def initialize(name)
@name = name
@coffee_count = Float::INFINITY
end
def code
puts "๐ธ Writing code in Ruby!"
@coffee_count -= 1
end
end
me = Developer.new("Donbili69")
loop { me.code } # Until coffee runs out (never)#!/bin/bash
while true; do
echo "โ Coffee: $coffee_cups"
echo "๐ป Coding..."
((coffee_cups--))
if [ $coffee_cups -eq 0 ]; then
echo "๐ด Time to sleep?"
break
fi
done"Crafting code, one block at a time!" โ๏ธ
| Build | Description | Difficulty |
|---|---|---|
| ๐ Base | My main spawn base | โญโญโญ |
| โ๏ธ Potion Hall | 50+ potion types | โญโญโญโญ |
| โ๏ธ Mining Farm | Fully automatic | โญโญโญโญโญ |
| ๐พ Food Factory | Infinite wheat | โญโญ |
| ๐ฎ Ender Portal | 15+ ender chests | โญโญโญ |
Level 1: "It works on my machine" ๐ค
Level 2: "It's just a small bug" ๐ฌ
Level 3: "I'll just Google it" ๐
Level 4: "Why isn't this working?!" ๐ค
Level 5: *googles exact error message* ๐ซฃ
Level 6: *copies StackOverflow solution* ๐
Level 7: "It works now, I don't know why" ๐
Level 8: *breaks it again trying to understand* ๐
Level 9: "Whatever, it works" โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ When the code works on first try... โ
โ โ
โ ๐จ "Wait, what did I just do?" โ
โ ๐ค "This feels wrong..." โ
โ ๐ "Let me break it to make sure" โ
โ ๐
"Yep, now it feels right" โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Monday Morning: โ
โ โ
โ ๐ด *Hits snooze 5 times* โ
โ โฐ *Realizes it's Tuesday* โ
โ ๐ "I'll start fresh tomorrow!" โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Git Commit Messages: โ
โ โ
โ โจ "fixed stuff" โ
โ ๐ง "it works now" โ
โ ๐ "FIXING BUGS" (caps lock = serious) โ
โ ๐ "final fix" (famous last words) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Take this quiz to find out!
| Question | A | B | C |
|---|---|---|---|
| Coffee or Energy Drink? | โ Coffee | โก Energy Drink | ๐ง Juice (baby) |
| Debugging style? | ๐ค Print statements | ๐ Google everything | ๐ป Ask ChatGPT |
| Favorite time to code? | ๐ 2 AM | ๐ Morning | ๐ Whenever |
| Git workflow? | ๐ Commit often | ๐ One big commit | ๐ Never commit |
| Code comments? | ๐ Everything | ๐ค Sometimes | ๐ซ RTFM |
- Mostly A: Night Owl Coder ๐ฆ
- Mostly B: Modern Developer ๐ป
- Mostly C: Chaos Programmer ๐ฒ
_ โโโโโโโโโโโโโโโ _
_(_)_ โ CODER โ _(_)_
( ' ' ) โ EXTRAORDINAIREโ ( ' ' )
\ _ / โโโโโโโโโโโโโโโ \ _ /
| | | |
_| |_ _| |_
/ ___) / ___) \
\ ( ) \ ( )/
)_( ) )_(_)
โกโกโกโกโกโกโกโกโกโกโกโกโกโกโก
โก โก
โก ๐งโ๐ป Donbili69 โก
โก โ
โ
โ
โ
โ
โก
โก "The Legend" โก
โก โก
โกโกโกโกโกโกโกโกโกโกโกโกโกโกโก
2025 ๐
โโโ September - Started GitHub ๐
โโโ October - First repository
โโโ November - Built portfolio-donbili
โโโ December - Started CodelithLabs
2026 ๐
โโโ January - Launched Minecraft server
โโโ February - Building cool stuff! ๐ฅ
๐ฏ "Code is like humor. When you have to explain it, it's bad." โ But I don't need to explain mine! ๐
โญ๏ธ From Donbili69 with ๐ and โ



