Premium developer resources. Battle-tested cheatsheets, prompt packs, and productivity tools. Instant PDF download.
Get all 10 products in one download โ save 40%
Undo last commit (keep changes)
$ git reset --soft HEAD~1
Recover deleted branch
$ git reflog | grep 'branch-name'
$ git checkout -b branch-name HEAD@{n}
Auto-resolve repeated merge conflicts
[rerere]
enabled = true
Multi-stage build (slim images) FROM node:20 AS builder RUN npm ci && npm run build FROM node:20-slim COPY --from=builder /app/dist ./dist CMD ["node", "dist/index.js"] Health check in Compose healthcheck: test: curl -f http://localhost:3000/health interval: 30s
๐ Security Audit Prompt
Audit this code for vulnerabilities:
```{language}
{code}
```
Check for:
- Injection (SQL, XSS, command)
- Auth/authz issues
- OWASP Top 10 violations
For each finding:
- Severity: Critical/High/Medium/Low
- Attack scenario
- Fix with code example