My Journey Diary

Hey friend! ☕ Grab a cozy spot and let me share my story with you. From a gaming kid to a security engineer - it's been quite the adventure, and I'm excited to tell you all about it!
Best enjoyed with your favorite drink
Quick Note

About These Dates and Stories

The dates and ages mentioned here are estimated since I don't remember the exact timelines - but all the experiences and stories are 100% real!

Also, this isn't even close to the complete story - there's so much more that happened along the way. This is just the main highlights that shaped who I am today!

~ ❋ ~
TLDR

The Quick Version

I started as a gaming kid who got curious about cyber bullies crashing people's internet in Call of Duty lobbies. That curiosity led me down a rabbit hole of learning network tools, then Python programming, web development, browser hacking, and eventually C programming. Over the years, I built APIs, databases, security systems, and even a firewall that can stop 8 Gbps attacks. Today, 9+ years of coding and 5+ years of professional experience later, I'm building enterprise systems that handle 50k+ requests monthly. The secret? I never stopped asking "How does this work?" and that curiosity took me everywhere!

~ ❋ ~
Summer 2016 (Age 12)

The Gaming Kid Who Asked Too Many Questions

Hey there! Let me start from the very beginning. Picture this: a 12-year-old kid (that's me!) sitting in front of a PlayStation, completely obsessed with Call of Duty. I wasn't different from millions of other kids - wake up, go to school, come home, and game until bedtime. Life was simple and perfect.

But here's where things got interesting. In these gaming lobbies, I started noticing players doing impossible things. They could kick people offline, make entire lobbies lag like crazy, or completely crash someone's internet connection. Most kids would get scared or annoyed, but me? I was absolutely fascinated!

'How are they doing this magic?' I kept asking myself. While other players were getting frustrated and leaving the lobby, I was sitting there like a detective, trying to figure out what was happening. This wasn't just some game glitch - these players had real power over the internet itself!

Little did I know, this curiosity would change my entire life. That spark of 'I need to understand how this works' was the very first step on a journey that would take me from gaming lobbies to building enterprise security systems. But back then, I was just a curious kid who couldn't stop asking questions.

~ ❋ ~
Spring 2019 (Age 15)

My First Laptop and the World of Possibilities

Finally! After months of begging, I got my first laptop. Oh man, if you could have seen my face when I first opened it - pure joy! It wasn't the fanciest laptop in the world, but to me, it was like getting the keys to a secret kingdom.

The first thing I did? I clicked EVERYTHING. Every button, every app, every menu option. I wanted to know what everything did. My parents thought I was going to break it, but I was just so excited to explore!

That's when I discovered YouTube tutorials about 'hacking tools.' I remember watching these videos with wide eyes, seeing people use programs that could do incredible things. One tool that really caught my attention was called LanCremastered - it was a network puller that could sniff all connections on a network.

The concept blew my mind! You could use an ethernet cable to turn your laptop into a router, basically becoming a middleman between devices. This way, you could see all the connections being sent through that network. It was like having x-ray vision for the internet!

~ ❋ ~
Fall 2019 (Age 15)

Becoming a Network Detective

This is where things got really exciting! I finally got my hands on LanCremastered and other network tools. Setting it up was like solving a puzzle - I had to connect an ethernet cable from my laptop to my PlayStation, making my laptop act like a router.

The first time I successfully set it up and saw all those IP addresses flowing across my screen, I felt like a digital detective! Every device on the network had its own unique address, and I could see exactly who was connecting to what. It was magical!

But here's the thing - I wasn't doing this to hurt anyone. I was just incredibly curious about how networks worked. How do devices find each other? How does data travel from one place to another? Why can some people control others' connections?

I started documenting everything I learned in a notebook (yeah, old school!). I drew diagrams of how networks connected, wrote down different IP ranges, and tried to understand the patterns. Each discovery led to ten new questions.

~ ❋ ~
Summer 2020 (Age 16)

Discovering Python and the Art of Automation

Then came the game-changer: Python! I discovered Python tutorials on YouTube, and let me tell you, my mind was absolutely blown. You could write simple text commands and make computers do ANYTHING you wanted? This was like having actual superpowers!

My first Python program was probably the classic 'Hello, World!' but even that felt magical. I was talking to the computer in its own language, and it was listening! From there, I quickly moved on to more exciting stuff.

I became obsessed with automation. Why click a button manually when you can write a script to do it? I used mouse and keyboard libraries to automate everything on my computer - clicking buttons, typing text, even playing simple games automatically.

The beauty of Python was how readable it was. Unlike the complex-looking code I'd seen in movies, Python looked almost like English. 'If this, then do that.' 'For each item in this list, do something.' It made sense!

~ ❋ ~
Winter 2020 (Age 16)

The Browser Detective: Network Tab Adventures

Here's where I found my happy place: the browser's Network tab! If you've never opened your browser's developer tools, you're missing out on seeing the internet's secret conversations.

Every time you visit a website, your browser and that website are chatting back and forth, sending little messages about what to display, what data to share, and how to keep you logged in. The Network tab shows you ALL of these conversations!

I would spend hours on different websites, just watching the Network tab like it was my favorite TV show. E-commerce sites, social media, games - every site had its own patterns and secrets. I could see API endpoints, authentication systems, and sometimes even vulnerabilities.

This became my method for understanding any website. Want to know how a login system works? Check the Network tab. Curious about how a shopping cart updates? Network tab. Wondering why a page loads slowly? Network tab has the answers!

~ ❋ ~
Spring 2021 (Age 17)

Understanding the Dark Side: Botnets and C2 Systems

Now we're getting into the more serious stuff. Remember those DDoS attacks I witnessed in gaming lobbies? I wanted to understand exactly how they worked, not to cause harm, but because I genuinely needed to know how this technology functioned.

This led me to research botnets and C2 (Command and Control) systems. A botnet is basically a network of infected computers that can be controlled remotely, and a C2 system is the 'brain' that tells all these computers what to do.

I spent months reading research papers, security blogs, and technical documentation. I learned about different attack vectors, how malware spreads, and how these distributed systems coordinate attacks. It was like studying the anatomy of a digital army.

By understanding the tools used by bad actors, I was building the knowledge I'd later use to create defense systems. Every vulnerability I learned about was a weakness I could help fix.

~ ❋ ~
Fall 2021 (Age 17)

Learning C: The Language of Power and Pain

Oh boy, here comes the hard part! After getting comfortable with Python, I decided to learn C programming. Let me tell you - C is HARD. Like, really, really hard, especially when you're used to Python's simplicity.

In Python, if you want to work with text, you just work with text. In C, you have to think about memory allocation, pointers, buffer sizes, and a million other things that Python handles automatically. It was frustrating at first!

But here's the thing - once I started to 'get' C, I realized why it's so powerful. Python is like having a really smart assistant who does everything for you. C is like having complete control over every single component of the computer.

Learning C was like learning to manufacture custom LEGO pieces instead of just using pre-made sets. Sure, it's harder, but you have unlimited possibilities and complete control over what you're building.

~ ❋ ~
Summer 2022 (Age 18)

Building for the Web: APIs, Backends, and Digital Architecture

Armed with Python, C knowledge, and a deep understanding of how networks work, I was ready to start building real web applications. This is where everything I'd learned started coming together beautifully!

I started with simple web APIs using Python frameworks like Flask and FastAPI. An API is basically a way for different programs to talk to each other. Remember all those network conversations I was watching in the browser? Now I was creating those conversations!

My first real project was a simple API that could track gaming statistics. Users could submit their game scores, and the API would store them and calculate rankings. It sounds simple now, but back then, seeing my code actually working on the internet felt like magic!

From there, I dove into database management. PostgreSQL, MySQL, MongoDB - each database had its own personality and use cases. I learned about data modeling, indexing, query optimization, and all the challenges that come with storing and retrieving data efficiently.

~ ❋ ~
Spring 2023 (Age 19)

Becoming a Security Engineer: Firewalls, DDoS Mitigation, and Defense Systems

This is where my journey came full circle! Remember that curious kid watching DDoS attacks in gaming lobbies? Now I was building systems to stop those exact attacks.

I specialized in cybersecurity and started building enterprise-grade defense systems. My biggest project was CyberShield - a firewall system that could stop DDoS attacks up to 8 Gbps with sub-millisecond latency. To put that in perspective, that's enough malicious traffic to take down most websites, stopped almost instantly!

Building a system like this required everything I'd learned. The network knowledge helped me understand attack patterns. The C programming skills let me build incredibly fast packet filtering. The Python experience helped me create management interfaces.

I also worked on penetration testing - ethically attempting to break into systems to find vulnerabilities before bad actors could exploit them. This required thinking like an attacker while building like a defender.

~ ❋ ~
Fall 2024 (Age 20)

Building at Scale: 50k+ Requests and Enterprise Systems

Now we're talking about the big leagues! I started building platforms that served 50,000+ API requests monthly. When you're handling that much traffic, every small inefficiency becomes a huge problem.

I built AI platforms that could process natural language, analyze data patterns, and make intelligent decisions. These weren't just simple chatbots - they were complex systems that could understand context, learn from interactions, and provide genuinely useful insights.

One major project was a proxy service that could route traffic intelligently across multiple servers, automatically scaling up during high traffic and scaling down during quiet periods. This required deep knowledge of load balancing, health checking, and distributed systems architecture.

The database challenges at this scale were incredible. Simple queries that worked fine with 1,000 users would completely break with 50,000 users. I learned about database sharding, replication, read/write splitting, and query optimization at a whole new level.

~ ❋ ~
Today - 2025 (Age 21)

The Adventure Continues

And here we are today! I'm now 21 years old with 9+ years of coding experience and 5+ years of professional experience in backend development and cybersecurity. From that curious kid in gaming lobbies to a professional security engineer - it's been quite the journey!

But you know what? I still have that same excitement and curiosity that started this whole adventure. Every day brings new challenges, new technologies to explore, and new problems to solve. The difference is that now I have the skills and experience to tackle much bigger challenges.

I'm currently working on projects that combine AI, cybersecurity, and large-scale distributed systems. The problems I'm solving now are the kind I could only dream about a few years ago.

What I've learned is that curiosity is the most valuable skill you can have in technology. Every tool I discovered, every programming language I learned, every system I built - it all started with asking 'How does this work?' and 'Can I build something better?'

If you're reading this and you're curious about technology, security, or just love building cool stuff - don't stop exploring! That curiosity could take you on an amazing adventure too. The adventure continues, and I can't wait to see what comes next!

With love and curiosity,
Vibhek ✨

Thanks for reading my story!

That's my journey so far, friend! From that curious gaming kid to where I am today as a cybersecurity engineer NYC - all because I couldn't stop asking "How does this work?" The adventure is far from over, and I can't wait to see what comes next! Check out my security tools portfolio.

If my story inspired you even a little bit, that makes me incredibly happy! Remember - every expert was once a beginner, and every journey starts with a single step. Keep exploring, keep asking questions, and who knows where your curiosity will take you! Interested in vulnerability research? Check out my latest security insights.