Bibek Joshi
Building Authority Through Technical Writing

Career Strategy

Building Authority Through Technical Writing

A practical framework for turning real engineering work into writing that builds trust, attracts opportunities, and improves team quality.

2 min read

Great technical writing is not about sounding smart. It is about reducing ambiguity for someone who needs to ship.

If you want your writing to build authority, publish things that answer one question clearly:

What changed in production quality because of this decision?

Start from delivery artifacts, not ideas

The easiest way to produce credible writing is to pull directly from real delivery:

  • incident retrospectives
  • architecture decision records
  • performance investigations
  • migration checklists

These documents already contain stakes, tradeoffs, and outcomes. Converting them into posts is mostly an exercise in editorial clarity.

Callout: Treat each post as a reusable decision memo for your future team.

A repeatable structure

Use this template for technical posts that are actually useful:

  1. Context and constraints
  2. Failure mode or bottleneck
  3. Options considered
  4. Decision and implementation details
  5. Outcome metrics
  6. Follow-up risks

This structure prevents generic advice and forces concrete evidence.

Show tradeoffs with measurable outcomes

Avoid statements like “this improved performance significantly.” Replace them with observable results.

MetricBeforeAfter
Time to interactive (p75)4.7s2.9s
Error rate during deploy1.8%0.4%
Rollback frequencyWeeklyMonthly

Readers trust numbers because they are falsifiable.

Keep examples executable

Include concise snippets that readers can adapt quickly:

export function parseFeatureFlags(input: string): string[] {
  return input
    .split(',')
    .map((flag) => flag.trim())
    .filter(Boolean)
    .sort();
}

If you include code, include context:

  • where this lives in the architecture
  • what failure it prevents
  • how to test it quickly

Editorial quality compounds

Writing one good post is useful. Writing consistently with the same quality bar changes your professional signal.

Over time, your archive becomes:

  • proof of engineering judgment
  • onboarding material for new teams
  • leverage for leadership conversations

Authority is a byproduct of repeatedly publishing reliable thinking.

Subscribe for New Articles

Get the next deep dive directly in your inbox.