Community
Guides, notes, and the writers behind them — everything worth exploring.
Global Manual Bug Bounty Checklist Purpose: A target-agnostic, manual-first checklist for authorized web, API, SaaS, identity, business-logic, integration, a…
Global Manual Bug Bounty Checklist Purpose: A target-agnostic, manual-first checklist for authorized web, API, SaaS, identity, business-logic, integration, a…
FOXCONN SECURITY ENGINEER — MASTER INTERVIEW NOTES 1. First understand what job I am interviewing for I should not mentally classify this position as “SOC An…
Status codes are the server telling you what happened in one number. Learn the shape of each class and you can debug most APIs without reading a manual. The …
Naming is the cheapest documentation you will ever write and the first thing the next reader sees. A good name removes the need for a comment. Say what it is…
When something breaks and I have no idea why, I run through this list before touching any code. It turns panic into a process. 1. Reproduce it reliably A bug…
async / await is syntax sugar over Promises that lets asynchronous code read top to bottom like normal code. Under the hood it is still Promises. The basics …
A join combines rows from two tables based on a related column. The join type decides what happens to rows that have no match. Sample tables Say we have user…
Question How does it work --- Discussion scorpionxdev (OP) · Aug 8, 2026 asdasdhelfuhfeakdhine scorpionxdev (OP) · Aug 8, 2026 asfweoi;fjuwefaiohwkihaidhaha …
When a collection is too big to return at once, you paginate. There are two main patterns and choosing wrong causes real pain at scale. Offset pagination The…
A compact cheat sheet of filesystem commands I keep coming back to on the terminal. Moving around bash pwd where am I ls -lah long list, human sizes, include…
Caching is storing the result of expensive work so you can reuse it instead of redoing it. Done well it is the highest-leverage performance tool you have. Do…