DDinductrinh.dev·Mar 28 · 1 min readGit rebase tipsNever use rebase on a branch that has a child branch You don't want to rewrite history if another branch depends on a consistent history!00
DDinductrinh.dev·Jan 21 · 3 min readAzure fundamentals cramData Center Global maps https://datacenters.microsoft.com/globe/explore/?info=region_australiasoutheast CapEx (buy) Private Cloud investments. Predictable loads OpEx (rent) Public Cloud usage. Variable/unpredictable loads Regions Each Clouds (...00
DDinductrinh.dev·Jan 21 · 2 min readClaude code tips & tricksUseful commands /clear /context /memory # save global or project level rules /agent # create new agents (prefer task-based, not role-based) claude --continue Ctrl + g # toggle vscode /fork creates a f00
DDinductrinh.dev·Jan 21 · 1 min readGit worktreeProblem it solve Create a copy of the whole repo as a separate directory Why not just use git branch git branch is for smaller changes worktree is for really breaking, sweeping changes that also include git ignored files/folders Worktree w clau...00
DDinductrinh.dev·Jan 10 · 1 min readUseful commands for file searchSearch file name find . -iname “[pattern | text]“ Search file content grep -r “[text]” grep -r --exclude-dir="node_modules" "hello" .00