this post was submitted on 08 Jul 2026
60 points (96.9% liked)

Programming

27651 readers
201 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 3 years ago
MODERATORS
 

Spent an hour today renaming env vars across three services to make them "consistent." Broke staging in the process because one service cached the old values. Should've just left the mess alone — it worked fine before I touched it.

top 17 comments
sorted by: hot top controversial new old
[–] FizzyOrange@programming.dev 1 points 24 minutes ago

It doesn't mean you made the wrong decision. Changing the names has a potential cost - you break something (this is especially risky for environment variables which have insanely global scope, no static type checking, etc.).

Not changing the names has a potential cost too - causing confusion in future, wasted time, or even bugs due to the increased chance of mistakes.

I'm currently leaving a company where they almost never clean up their messes. Tons of old unused code is just left in the repo. Causes huge wastes of time.

Don't underestimate the potential cost of not keeping things orderly. There was a famous case (Knight Capital) caused by not cleaning up an old unused CLI flag and it cost them $440m and destroyed the company.

[–] HaraldvonBlauzahn@feddit.org 2 points 11 hours ago* (last edited 10 hours ago)

Good names matter.

If you don't refactor codebases continuously and consistently(!), the'll become a total mess over time. I've worked recently with code bases that still use DOS character encodings common before 2000 or so.

If something is purely local, in a single process, it is easy to change. But the more stuff it touches, the more difficult and laborious it gets. On the extreme end, there are things like network protocols like IPv4 which are almost impossible to get rid of.

[–] CombatWombat@feddit.online 38 points 2 days ago (1 children)

I had a senior early on in my career who took pride in producing the smallest diff possible to solve any given ticket and I thought it was so strange -- I'm already in the file, why not clean up a bit? In hindsight, they were entirely right, and I always regret doing just a little cleanup without it being strictly necessary.

[–] tryagain@sopuli.xyz 11 points 2 days ago

I'm so, so guilty of this. But that's also because I've inherited a codebase that's almost comically badly structured and every file I open is a new outrage.

[–] voytrekk@sopuli.xyz 24 points 2 days ago (1 children)

Better to break things in staging than prod.

[–] indidev@lemmy.world 7 points 2 days ago

Yeah, that's the silver lining I guess. Still felt dumb staring at broken builds because of a rename that nobody asked for.

[–] tomiant@piefed.world 19 points 2 days ago

"Let me just clean this thing aaaaaand it's gone"

[–] ell1e@leminal.space 7 points 2 days ago* (last edited 2 days ago)

I feel like it depends on the project.

Typically in the ones I work on, whenever I spot an inconsistency I fix it no matter how much of a mess that causes. Yes it hurts at first, but it may hurt more down the line when the weirdnesses accumulate to the point where it impacts operations and it'll be a much bigger problem to fix.

However, I can totally see a more chill strategy work better for a project that is mostly just relatively simple code, like perhaps some website deployments. In my opinion it depends a lot on whether the code is generally already complicated, which is when you'll typically want to refactor earlier than later.

[–] Maestro@fedia.io 9 points 2 days ago

Yes, guilty. But also no longer regretting it a year later now that there's a clear naming scheme and structure and I can easily find what I'm looking for.

When refactoring, it always gets worse before it gets better. So, make sure to finish it so you get to the "better" state and don't leave it at "worse"

[–] mrmaplebar@fedia.io 6 points 2 days ago

The problem with renaming environment variables is that you don't always control the environment.

[–] locuester@lemmy.zip 4 points 2 days ago

This is one of those things that break two golden rules. Minimal change, or consistency? The only further variable a most senior person considers is the brittleness of the environment and deployment process.

[–] partial_accumen@lemmy.world 4 points 2 days ago
  • $variable1
  • $othervariable
  • $july2014fixvariable
  • $notneeded

...and finally...

*$otherothervariable

These shall be the variable names until the heat death of the universe! Blessed be! So say we all!

[–] valar@lemmy.ca 3 points 2 days ago

I've not done this specifically, but I know the pain of wanting to make things neat and it breaking things. Then having to live with the unsatisfying setup instead of making everything symmetrical and scratching my brain itch.

[–] farmgineer@nord.pub 2 points 2 days ago* (last edited 2 days ago)

At a place years ago, I misspelled a word (stupid English) which made its way into the APIs our FE consumed. FE guy decided to do a quick find/replace and broke prod. He missed some files.

(One of oldest database tables also had a spelling error from the site's first dev because English sucks)

Edit: WTAF, autocorrect?

[–] fuckwit_mcbumcrumble@lemmy.dbzer0.com 2 points 2 days ago (1 children)

"If it aint broke don't fix it"

[–] thenextguy@sh.itjust.works 8 points 2 days ago

"If it ain't broke, it's about to be."

[–] palordrolap@fedia.io 1 points 2 days ago

I once worked on a project where a third party-parser had a bug that effectively made it sensitive to the order it loaded files.

This wasn't a syntactic or a semantic problem. There was a stack processing issue that could be avoided by simply loading the files in a different order. This might have changed the final semantics if one file contradicted another, but that generally didn't happen. Each file had a specific purpose and it would still break without any contradictions.

The default load order was whatever order the file system had the files stored, but knowing that wouldn't necessarily help because changing the size or contents of a file in such a way that it retained the same position might trigger the same issue. Therefore you could force by-Unicode load ordering and still have it choke.

It was very hard to track down and I very much did not like editing those files for fear of triggering the parser bug. When I had to would be where the regret kicks in.

The other regret, and maybe a little more relevant, was renaming all the files to a different filename format that didn't make any difference in the end, but it was uglier than the original and it stuck.

I believe a later version of that parser fixed the bug(s), but I moved on.