HN user

codeman001

78 karma
Posts20
Comments4
View on HN
bytesizedbets.com 9mo ago

Era of AI slop cleanup has begun

codeman001
3pts1
www.freecodecamp.org 10mo ago

How to Refactor Complex Codebases

codeman001
1pts0
news.ycombinator.com 10mo ago

Ask HN: How much are you guys paying for AI coding tools monthly?

codeman001
13pts13
www.devtoolsacademy.com 1y ago

Betterauth vs. Nextauth

codeman001
3pts0
ohhfishal.net 1y ago

Don't solve problems you don't have. You're creating problems

codeman001
1pts0
news.ycombinator.com 1y ago

Ask HN: How much better are AI code reviews vs. human code reviews?

codeman001
6pts1
www.devtoolsacademy.com 1y ago

Cursor vs. Windsurf – Choose the Right AI Code Editor for Your Team

codeman001
2pts0
tweedegolf.nl 1y ago

Does using Rust make your software safer?

codeman001
4pts0
cekrem.github.io 1y ago

Coding as Craft: Going Back to the Old Gym

codeman001
98pts93
govigilant.io 1y ago

Why I Chose Calendar Versioning for Vigilant

codeman001
1pts0
blog.nitwhiz.xyz 1y ago

Spoofing a Pokémon Red Trade in Go

codeman001
2pts0
www.freecodecamp.org 1y ago

How to Perform Code Reviews in Tech – The Painless Way

codeman001
1pts0
www.devtoolsacademy.com 1y ago

Cody vs. Cursor

codeman001
3pts0
justincartwright.com 1y ago

MySQL Transactions per Second with 3000 IOPS

codeman001
1pts0
blog.codingconfessions.com 1y ago

Hardware-Aware Coding: CPU Architecture Concepts Every Developer Should Know

codeman001
7pts1
www.heise.de 1y ago

Harvard study: open-source has an economic value of 8.8T dollars

codeman001
66pts28
leaddev.com 1y ago

Garry Tan says YC startups are launching with 95% AI-written code

codeman001
1pts2
shiftmag.dev 1y ago

As an engineer, I'd rather be called stupid than stay silent

codeman001
41pts14
blog.container-solutions.com 1y ago

No Longer Talking to Architects About Microservices

codeman001
3pts0
www.coderabbit.ai 1y ago

How to Do Thoughtful Code Reviews

codeman001
3pts0

wow code reviews in CLI. I'll try but I enabled coderabbit on a few of my open source repos and experience is pretty good it's better than expected, best of the limited number of code review tools I have experience with. Having an extra active "maintainer" (even if ai) just adds a bit of extra confidence.

I use CodeRabbit that helps, but it does not fix the two root issues. I run their free VS code plugin to review local commits first, which catches nits, generates summaries, and keeps me in my editor. The PR bot then adds structure so humans focus on design and invariants. Review state still lives in the forge, not in Git, and interdiffs still depend on history. If Git gets a stable Change-Id, storing review metadata in Git becomes realistic. Until then this is a pragmatic upgrade that reduces friction without changing the fundamental.

https://www.coderabbit.ai/ide

I used AI code review tools but agree It would never replace human IMO.

Here is why because of 2 golden rules of Code Reviews in tech why AI can't understand or trained on:

- AI can't see always and remember it’s a human being on the other end of the code and review. - AI could be brutal and will miss the good intent like a senior member who is helping the junior.

It goes without saying that the key benefit of doing code reviews is to make the code better and fix issues.