Linux
How to Find and Kill Processes Occupying a Port (lsof, netstat, ss)
Jason Yang · 04 Dec, 2025
Fix "Address already in use" errors on Ubuntu/Linux. Quickly identify port-hogging processes with ss, lsof, or netstat and terminate them safely.
Linux
Jason Yang · 04 Dec, 2025
Fix "Address already in use" errors on Ubuntu/Linux. Quickly identify port-hogging processes with ss, lsof, or netstat and terminate them safely.
Cloud & DevOps
Jason Yang · 04 Dec, 2025
TCP explained: how the segment header, the 3-way handshake, and flow control build a reliable connection over an unreliable network.
Linux
Jason Yang · 04 Dec, 2025
SSH lag on Ubuntu? Your Wi-Fi card may be entering sleep mode. Disable Wi-Fi power management to keep the connection responsive — quick step-by-step.
Linux
Jason Yang · 03 Dec, 2025
Need a static WiFi IP on Ubuntu without router access? Learn how to use nmcli for laptops (GUI-safe) or Netplan for servers to set a fixed IP.
Coding Interview
Jason Yang · 03 Dec, 2025
Search in Rotated Sorted Array (LeetCode 33): a modified O(log n) binary search that finds which half is sorted, with an interactive step visual.