hussaincodes.inAPIautopsy : Monitor Your API HealthAs developers, we’ve all been there. It’s 3 AM, and you get a vague alert that "the site is down." You begin the frantic, stressful search through endless server logs, trying to find the one error that's bringing your application to its knees. What i...Oct 13, 2025·3 min read
hussaincodes.inHow can we learn Data Structure and Algorithms?Learning data structures and algorithms is a crucial step for anyone interested in pursuing a career in computer science, software engineering, or related fields. Here are some steps you can take to learn data structures and algorithms effectively: ...Feb 12, 2023·2 min read
hussaincodes.inHow to host a website on GitHub with custom domainIn this article, we are going to learn how we can host a website on a GitHub page with a custom domain name. I will upload my portfolio website on GitHub step by step. First of all, we need to code your website and collect all the file and upload it ...Dec 22, 2022·4 min read
hussaincodes.inHow to install MySQL on Windows or MacBookAs a developer we all go through this. Every time we start working on a new machine we get a headache of installing each and every software like IDE , MySQL, Mango DB, etc. And we often forget some steps while installing software on a new machine and...Jun 2, 2022·2 min read
hussaincodes.inJava Solution to leetcode problem 1572. Matrix Diagonal SumGiven a square matrix mat, return the sum of the matrix diagonals. Only include the sum of all the elements on the primary diagonal and all the elements on the secondary diagonal that are not part of the primary diagonal. Input: mat = [[1,2,3], ...Feb 28, 2022·1 min read