The Accidental Reviewer Part 1: How I Learnt to Review Code…
    Neura MarketNeura Market/DeepSeek
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityDeepSeekDeepSeek
    CoPilotCoPilotStable DiffusionStable DiffusionMidjourneyMidjourney
    View All Directories
    OverviewRulesPromptsMCPsAgentsGamesBlogVideosGuidesCoursesCommunityTrending
    DeepSeekBlogThe Accidental Reviewer Part 1: How I Learnt to Review Code Across 5 Stacks
    Back to Blog
    The Accidental Reviewer Part 1: How I Learnt to Review Code Across 5 Stacks
    review

    The Accidental Reviewer Part 1: How I Learnt to Review Code Across 5 Stacks

    Yuki Cheung January 20, 2026
    0 views

    This is a two-part series. This first part is about how I became able to review across multiple stacks, even ones I don't familiar with.


    title: The Accidental Reviewer Part 1: How I Learnt to Review Code Across 5 Stacks published: true description: This is a two-part series. This first part is about how I became able to review across multiple stacks, even ones I don't familiar with. tags: review, engineering, superpower, ai cover_image: https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qzk7bssgwtc0njhi7lxj.jpg

    Use a ratio of 100:42 for best results.

    published_at: 2026-01-20 19:49 +0000 canonical_url: https://blog.atrera.com/post/the-accidental-reviewer-part-1-how-i-learnt-to-review-code-across-5-stacks/

    <small>(Photo by <a href="https://unsplash.com/@markuswinkler?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Markus Winkler</a> on <a href="https://unsplash.com/photos/black-and-white-typewriter-on-white-table--fRAIQHKcc0?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>)</small>

    This is a two-part series.

    This first part is about how I became able to review across multiple stacks, even ones I don't familiar with.

    The second part will be about why reviewing becomes a superpower in the age of AI.

    Seems like I reviewed too much last year

    Recently I became curious about how many PRs I actually review in a typical period.

    So I asked an AI agent to build a little tool to fetch PR data from GitHub/GitLab APIs... and it turned out I reviewed 110+ PRs in just 4 months!

    Too much? Maybe, or maybe not?

    Here's the interesting part. I'm a frontend-focused software engineer, yet the PRs I reviewed were across frontend, backend, mobile, GraphQL and legacy.

    I actually had never thought about this before. Most people review PRs only in the parts of the codebase they're comfortable with. Backend engineers review backend code, frontend engineers review frontend code, and so on.

    But somehow I didn't do that.

    I kept reviewing code in stacks I wasn't an expert in. So I started asking myself: why am I able to review stacks I don’t fully know?

    After thinking about it for a while, I realised the answer is: Because my career started not from zero... but from minus.

    My "started from minus" origin story

    To explain why I can now review almost anything, I need to explain how I started.

    I'm self-taught. Before joining my current company, I only built marketing websites in a small team with only me and another engineer. I didn't know Agile. I don't know how to write good unit tests.

    During my interview, I could only write very simple tests and I didn't know test pyramids. (which is ironic because now everyone knows me as the engineer who always writes tests)

    When I joined, I was:

    • the only junior software engineer in the team
    • new to the UK
    • struggling with English
    • unfamiliar with CI/CD pipelines
    • confused about Agile (What is retro/refinement? What do we do there?)
    • only comfortable with React/Next.js

    So even though I had some working experience, I still say I started from minus. I felt behind everyone and desperately wanted to catch up! (like... WHAT is retro?)

    The secret weapon that changed everything

    One day, my manager encouraged me to review more PRs after I joined the company for a few months. He said just left comments, we'd love to see your thoughts there.

    So I opened the PRs.

    They were written by senior engineers, I am just a junior. Everything looked... good. I didn't even know what to comment on. Zero. Absolutely nothing.

    But my manager said I should comment and I really didn't want him to ask why I hadn't. So I forced myself to ask any question.

    At first, the only comments I could make were:

    • What does this mean?
    • I'm not familiar with X, what does this do?

    Then, after I accidentally broke production once, I discovered the magic question:

    • How do we handle errors here?
    • What happens if this fails?
    • Do we have an error state?

    I realised many engineers naturally focus on the happy path first. Once you ask about error handling, you immediately reveal missing validation and missing tests.

    The magical thing is these questions don't depend on syntax. They work in any language, any stack, any repository.

    Even in stacks I don't know, like legacy systems, I can still ask useful questions.

    My secret list of questions for reviewing ANY stack

    These questions helped me survive reviewing PRs I didn't understand:

    • How do we handle errors/edge cases here?
    • Do we have error states?
    • Do we have tests for this behaviour?
    • Why do we need this? (And if the answer is complex) Could you add a comment explaining this so we don't forget why?
    • Why is it written this way? (e.g. deeply nested ifs) Can we simplify it?
    • How does this flow actually work?
    • Does this function do too many things?
    • This variable is used everywhere, should it be split or named differently?

    Notice something? None of these questions have anything to do with which language this is in. They're to do with logic, behaviour, readability and testability.

    You don't have to know Python, Go, Ruby, Kotlin, or some kind of legacy stack.

    When you ask "What happens if this fails?", you force the code to reveal assumptions that were never written down, or uncover hidden behaviour that even the original author didn't notice.

    That's why this technique works across frontend, backend and even legacy code. Failure is universal. Once you learn to look at the unhappy path, you can see it in a higher-level.

    Results: six years later...

    Without noticing it, forcing myself to leave comments, even when embarrassed, even when clueless, reshaped my entire engineering career.

    After six years of doing this, I reviewed hundreds of PRs. I can review repos I've never seen. I can context-switch extremely fast!

    I can spot good/bad patterns quickly. I can ask useful questions even in languages I don't write. I could review backend, mobile, legacy, GraphQL, data pipeline, anything.

    Reviewing became the fastest way I grew as an engineer. It helped me far more than writing code alone ever could.

    I learnt from dozens of people, dozens of styles, dozens of systems. In the age of AI, this ability becomes even more important.

    I'll talk about AI in part 2. See you there!

    Tags

    reviewengineeringsuperpowerai

    Comments

    More Blog

    View all
    Five Gemma-4 models, one accelerator: what porting E2B 31B to AWS Inferentia2 taught megemma

    Five Gemma-4 models, one accelerator: what porting E2B 31B to AWS Inferentia2 taught me

    I ported the whole Gemma-4 family — E2B, E4B, 12B, 31B, and the 26B-A4B MoE — to run on...

    X
    xbill
    Hey DEV, I'm Tobore. Let's actually connect.community

    Hey DEV, I'm Tobore. Let's actually connect.

    Hey DEV, I'm Tobore. Let's actually connect. I've been on here for a while now, mostly writing and...

    L
    Laurina Ayarah
    I burned through thousands of AI tokens. Then a friend did it for freeai

    I burned through thousands of AI tokens. Then a friend did it for free

    (yep, kinda clickbait, just for the funsies 😊) At the beginning of the year, I relaunched my...

    P
    Paulo Henrique
    Claude might be saturating your machineai

    Claude might be saturating your machine

    My laptop was sitting idle with the fan at full tilt. Nothing was running that I knew of. The culprit...

    S
    Sidhant Panda
    Automated GitHub Code Reviews Using Google Geminigithubactions

    Automated GitHub Code Reviews Using Google Gemini

    I Built a Thing! TL;DR — Google Gemini-based Pull Request reviews and Issue Triaging for...

    D
    Darren "Dazbo" Lester
    What is an "agentic harness," actually?ai

    What is an "agentic harness," actually?

    I've been hearing the word "harness" thrown around a lot lately. I assumed it just meant "the IDE" or...

    T
    Tilde A. Thurium

    Stay up to date

    Get the latest DeepSeek prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for DeepSeek and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    © 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.

    Neura Market

    Custom AI Systems & Services

    Our team of experienced AI builders will help build custom AI systems, workflows, and solutions for your business.

    Request custom work

    Ready-made automations for this

    Workflows from the Neura Market marketplace related to this DeepSeek resource

    • Generating AI Videos with VEO3 and Distributing with Blotato Across Multiple Platformsn8n · $14.99 · Related topic
    • Convert Multiple Files to Base64 with JavaScript Coden8n · $4.99 · Related topic
    • Generate Multiple Language Blog Posts with OpenAI, Supporting Yoast & Polylangn8n · $14.99 · Related topic
    • Automate Lead Engagement Across Multiple Platforms with AIn8n · $19.99 · Related topic
    Browse all workflows