The Linux Rabbit Hole π§
How curiosity slowly pulls developers into customization, system internals, terminals, and the world behind computers π If you are someone who: loves customization π constantly asks βhow does this a
Search for a command to run...
How curiosity slowly pulls developers into customization, system internals, terminals, and the world behind computers π If you are someone who: loves customization π constantly asks βhow does this a
For the longest time, I thought I had JavaScript events pretty much figured out. You know the usual ones: click input submit scroll maybe keydown And honestly? My work was getting done. Projects were shipping. Clients were happy. So in my head...

Real-time communication powers everything we use today β video calls, voice calls, live streaming, multiplayer games, and even real-time chat. But how do two devices talk directly over the internet? The secret behind all of this is WebRTC. In this bl...

1. Installation Windows Download installer from the GitHub CLI releases Or install via Scoop: scoop install gh Or via Chocolatey: choco install gh macOS Install via Homebrew: brew install gh Linux Debian/Ubuntu: sudo apt install gh Fedora:...

Follow these steps to set up a LAMP (Linux, Apache, MySQL, PHP) stack on your Ubuntu server. Copy commands directly and get started quickly! π π οΈ Step 1: Update and Upgrade System sudo apt update && sudo apt upgrade -y π What to Do: Keep your sy...

Ever felt lost in the jungle of Java Collections? Don't worry, I've got your back! This guide will take you through Lists, Sets, Maps, Queues, and Stacks with all their cool methods. Plus, you'll get a super handy table at the end! Let's roll. πͺ π...

Intro If you want to fully understand Java classes, objects, and linked list references, this blog is for you.I used to be confused about when to use new and how references work. Letβs clear it using the box analogy. The new keyword Node n = new Node...
