Optimize Java Memory — A Practical Guide to JVM Tuning
· 6 min read
A practical guide to understanding JVM memory management and tuning garbage collection for better performance in production Java applications.
A practical guide to understanding JVM memory management and tuning garbage collection for better performance in production Java applications.
A clear explanation of the five SOLID principles with practical Java examples — the foundation of clean, maintainable, and scalable object-oriented design.
A quick checklist of essential steps I always follow after a fresh Ubuntu installation — from system updates and firewall setup to installing must-have developer tools.
A guide to setting up a modern terminal-based development environment with Neovim (LazyVim) and Tmux — from installation to configuration.
Day 1 of my 100 Days LeetCode challenge — solving "Contains Duplicate" with two approaches: sorting and HashSet.