Skip to content
View Donbili69's full-sized avatar

Block or report Donbili69

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
.github/profile/README.md

๐Ÿ‘‹ Hey There! I'm Donbili69 (a.k.a. Babu Bhaiya)

Typing SVG


๐Ÿ”ฅ The Legendary Bio

"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! โœจ


๐Ÿ“Š My GitHub Stats

GitHub Stats Top Languages


๐Ÿ† GitHub Achievements

Trophy


๐Ÿ”ฅ Streak Stats

Streak


๐Ÿ“ˆ Weekly Coding Activity

Activity Graph


๐Ÿ› ๏ธ What I'm Building

๐Ÿš€ Project โญ Stars ๐Ÿด Forks ๐Ÿท๏ธ Tech
CodelithLabs 0 0 TypeScript
portfolio-donbili 2 0 JavaScript
nebula-os 0 0 HTML
codelith-minecraft-server 0 0 Minecraft

๐ŸŽฏ Currently Working On

TypeScript React Minecraft

  • ๐Ÿš€ Building CodelithLabs from scratch
  • ๐ŸŽฎ Managing and expanding my Minecraft server
  • ๐ŸŒ Creating awesome web experiences
  • ๐Ÿ“š Deep diving into TypeScript generics

๐ŸŽฏ Goals for 2026

  • 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

๐Ÿ’ป Tech Stack

Tech Stack


๐Ÿ—‚๏ธ Skills

Programming Languages

JavaScript TypeScript HTML5 CSS3

Frameworks & Tools

React Node.js Git GitHub VS Code

Gaming

Minecraft


๐Ÿ“š Favorite Quotes

"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 ๐Ÿ’ป


๐ŸŽฌ Favorite Movies

The Matrix Inception Social Network Steve Jobs

"I'm going to make him an offer he can't refuse" - The Godfather ๐Ÿ


๐ŸŽฎ Games I Play

Minecraft Valorant GTA V CS2

  • โ›๏ธ Minecraft - Building since 2015
  • ๐ŸŽฏ Valorant - Diamond rank (maybe... ๐Ÿ˜…)
  • ๐Ÿš— GTA Online - Just vibing
  • ๐Ÿ”ซ CS2 - Old but gold

๐ŸŽต Currently Vibing To

Lofi Synthwave Lo-Fi Beats

๐ŸŽง Coding with lo-fi beats is a whole mood ๐ŸŽง


๐Ÿ’ก Fun Facts About Me

  • ๐Ÿ• 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

๐Ÿ”Œ VS Code Extensions I Can't Live Without

Prettier ESLint GitLens Thunder Client


๐Ÿ Snake Animation

Snake


๐ŸŽฒ Cool Code Snippets

JavaScript - The Infinite Loop of Productivity

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;
}

TypeScript - Type Safety Level: 100

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
};

Python - Zen of Python

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! ๐Ÿ˜Ž

Rust - Memory Safety (and Sanity)

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
}

SQL - Querying My Life

SELECT * FROM life 
WHERE activity = 'coding' 
AND time BETWEEN '00:00' AND '06:00'
AND coffee_cups > 5;

-- Result: Every night of my life ๐Ÿ˜…

Go - Concurrency Goroutine

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
}

C++ - Memory Management Level: Pain

#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;
}

Ruby - Ruby's Got That Ruby

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)

Bash - The Terminal Warrior

#!/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

๐ŸŽฎ Minecraft Server Status

Server Status Version

"Crafting code, one block at a time!" โ›๏ธ


๐Ÿฐ Cool Minecraft Builds

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 โญโญโญ

๐Ÿ”ฅ My Debugging Journey

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 You're a Developer

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  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)       โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐ŸŽญ What's My Developer Personality?

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

Results:

  • Mostly A: Night Owl Coder ๐Ÿฆ‰
  • Mostly B: Modern Developer ๐Ÿ’ป
  • Mostly C: Chaos Programmer ๐ŸŽฒ

๐ŸŽฏ GitHub Profile Summary

Profile Details Stats Top Languages


๐ŸŽญ ASCII Art Corner

     _    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    _
   _(_)_  โ”‚  CODER      โ”‚  _(_)_
  ( ' ' ) โ”‚  EXTRAORDINAIREโ”‚ ( ' ' )
   \ _ /   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜   \ _ /
    | |                       | |
   _| |_                     _| |_
  / ___)                   / ___) \
  \ ( )                     \ ( )/
   )_( )                     )_(_)

The Legend

    โšกโšกโšกโšกโšกโšกโšกโšกโšกโšกโšกโšกโšกโšกโšก
    โšก                   โšก
    โšก   ๐Ÿง‘โ€๐Ÿ’ป Donbili69  โšก
    โšก       โ˜…โ˜…โ˜…โ˜…โ˜…       โšก
    โšก   "The Legend"     โšก
    โšก                   โšก
    โšกโšกโšกโšกโšกโšกโšกโšกโšกโšกโšกโšกโšกโšกโšก

๐Ÿ“… My GitHub Journey

2025 ๐Ÿ“…
โ”œโ”€โ”€ September - Started GitHub ๐Ÿš€
โ”œโ”€โ”€ October - First repository
โ”œโ”€โ”€ November - Built portfolio-donbili
โ”œโ”€โ”€ December - Started CodelithLabs

2026 ๐Ÿ“…
โ”œโ”€โ”€ January - Launched Minecraft server
โ”œโ”€โ”€ February - Building cool stuff! ๐Ÿ”ฅ

๐Ÿ“Š Activity Badges

Contribution Graph


๐Ÿค Let's Connect

GitHub Email


โ˜• Support Me

Buy Me A Coffee


๐Ÿ‘€ Visitor Count

Profile Views


๐ŸŽฏ "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 โ˜•



Popular repositories Loading

  1. portfolio-donbili portfolio-donbili Public

    HTML 2

  2. CodelithLabs CodelithLabs Public

    TypeScript 1

  3. CITK--login. CITK--login. Public

    HTML

  4. .github .github Public

  5. nebula-os nebula-os Public

    HTML

  6. Brainbox Brainbox Public

    JavaScript