惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
B
Blog RSS Feed
I
InfoQ
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Help Net Security
L
LangChain Blog
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
aimingoo的专栏
aimingoo的专栏

Hacker News: Ask HN

The New Window Delete ChatGPT Atlas Spyware Tell HN: Qwen Free Tier Is Discontinued Ask HN: SeedLegals Partnerships in London, worth it? Ask HN: How to highlight talent from untraditional backgrounds? Ask HN: We dont need a programming language now? Durable Object alarm loop: $34k in 8 days, zero users, no platform warning What if Time at the subatomic level has multiple arrows? How to add MidnightBSD Key to UEFI Secure Boot DBX? (Revoked and Forbidden Keys) Ask HN: What's your experience working at xAI as an AI tutor? Any engineers here with experience of clinical data standards? Ask HN: Who is using OpenClaw? Agent Skills for Software Test Automation Ask HN: Who needs contributors? Claude Code is thinking too much Ask HN: What Is the Big-O Order of a Jigsaw Puzzle? Ask HN: Stepping into a new role as a Senior, mentoring dos and dont's? Founder from Zurich heading to SF and Austin for the first time Hacker News No Manual Screenshots: I Built a Scalable Screenshot API Using Cloud Playwright Ask HN: Thought experiment: AGI giving us answers we don't like? Ask HN: I quit my job over weaponized robots to start my own venture 1% Vacancy, 81% Preleased: Where Midmarket Compute Deploys in 2026 Ask HN: Preferred pricing model for sound effects libraries? Copy of the email I sent to my undergraduate professors on Nov 30, 2025 Model API Performance | Hacker News Ask HN: Are open-weight LLMs the new offline encyclopedias? Valgrind 3.27 RC1 is out Claude Code OAuth down for >12 hours Ask HN: What's Better?–Tauri or Electron?
How do you tackle a backlog of deferred maintenance you d...
zeelex · 2026-06-26 · via Hacker News: Ask HN

I don't mean migration in the sense of switching databases or rewriting in another language. I mean that a codebase rots if nobody maintains it. Deprecations, warnings, upstream changes — each is cheap to handle the moment it appears, often a 10-minute fix (let's say 'in average'). But plenty of teams never catch them. No real CI/CD, no culture of reading changelogs or acting on warnings. So it piles up silently, and then at some point — usually when an infra or security team shows up with tickets — the whole accumulated pile lands on one person at once. Often a new hire or a junior who's never seen the code, with no record of why any of it is the way it is beyond git blame, a stale changelog, and a few dead chat threads. What I think gets underestimated is that clearing it all at once costs far more than the sum of the small fixes would have. The problems tangle into each other, and the context that would let you separate them is already gone. So I'm trying to learn from people who've been dropped into this. What did you actually reach for, and what worked — tests, diffing output before/after, shadowing prod traffic, or just running it and hoping? Did anyone try LLM agents, and where did they genuinely help versus confidently make things worse? (I know of an Angular case where the agent kept patching a function it assumed was the problem, and after a couple of failed runs invented its own workaround — when the correct approach was in the docs the whole time). Just time spending. If you can ballpark it: how much worse was all-at-once versus incremental — 3x, 10x? And one thing I keep wondering: when you were reconstructing a system like this, what were you missing more — a description of what the code does, or of what someone meant it to do? Those feel like two different problems.