Roles, levels, interviews and how to grow into them.
10 items · all topics
Describe the last Sev-1 incident you handled.
This question isn't really about the outage, it's about how you behave during one. A good answer shows metric-driven diagnosis, mitigation running in parallel with investigation, real numbers, and a lesson that changed a system rather than blamed a person. Vague heroics score badly; a specific timeline scores well.
Your branch is 5 commits behind main and you have uncommitted changes. How do you update safely?
Save the uncommitted work first with a stash or a WIP commit, then fetch and rebase onto origin/main, then bring it back. The real point is knowing what git pull would do to your branch before you run it.
You made a commit but forgot to include one file, and it isn't pushed yet. What do you do?
Stage the file and run `git commit --amend`. Amend doesn't edit the previous commit, it replaces it with a new one that has a new SHA, which is free while the commit is still local and a problem the moment someone else has it.
Your repository has hundreds of branches, many already merged into main. What would you change?
Deleting merged branches is easy and worth automating, but it's the symptom. The real disease is branches living long enough to diverge, which shows up as painful merges and untested integration risk. Fix PR size and review speed first, and watch for squash-merged branches that `--merged` can't even see.
Stop Learning Every AWS Service - Start With These 20
AWS has hundreds of services, but you don't need to know them all. Learn which 20 services actually matter for real projects and how to think about AWS architecture like a pro.
10 AWS and DevOps Roles That Matter in 2026 - What Each One Actually Does
Not all AWS and DevOps roles are the same. From Cloud Engineers to Platform Engineers to SREs, each role has different responsibilities. Here's what companies actually expect from each one and where they fit in modern organizations.
Will AI Replace DevOps and AWS Engineers? What You Should Actually Focus On
AI is not replacing DevOps and AWS engineers. But it is changing what the work looks like. Here's the realistic answer about AI's impact and exactly what you should focus on to remain valuable in 2026 and beyond.
AWS Well-Architected Framework: What You Actually Need to Understand
The AWS Well-Architected Framework is a proven approach to evaluating and improving cloud architectures. Learn the six pillars and how to apply them to build systems that are secure, reliable, efficient, and cost-effective.