Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

> Code is not accruing danger or becoming dead by just sitting there, untouched.

All other things being equal, this is true, except for hardware issues where replacement parts may be very expensive or completely nonexistent.



sort by: page size:

> Code that is no longer being touched is not done; it's dead.

The goal should be to write code not needing maintenance.

Four weeks ago I contacted a coworker to ask about some routines he wrote 5 years ago. He said he hadn't touched them in 5 years. The code has been tested continuously in the interim. His old code worked perfectly for me the first time and it saved me hours.


I've heard a similar quote:

"Broken code gets fixed, but shitty code lasts forever."


> A readable incorrect program is worse than an unreadable correct one. That neither is acceptable doesn’t negate that.

I will happily fix a readable but non-working code rather than maintain a working but unreadable code any day under the sun.


> so the rate of change never falls to zero until the code stops being useful

Non-useful software changes all the time ;) Also, Useful software stands still all the time, without any proposed changes.


> but more code == more errors in general.

you can't have bugs in code you never have to write!


> Don't be afraid to break code.

Just not in production :)


> Typically, the code itself is trivial.

There are tremendous financial opportunities waiting behind automation of expensive tasks usually performed by developers.

For many of those tasks, the moment is right now, and the code itself is not trivial.


>> Is it even possible?

No. The only code that requires no maintenance is the code you do not write. In other words, "No code is easier to maintain than no code." Add that to the nihilist coding attributes:

No code runs faster than no code.

No code has fewer bugs than no code.

No code uses less memory than no code.

No code is easier to understand than no code.

No code is easier to maintain than no code.


> ...preparing for code/components to be thrown away is a no-op.

You might be agreeing, but I find that the bad code that sticks around is bad code that is hard to get rid of. So in that sense, code that is removable isn't a no-op. It takes some effort, for instance, to keep a clear dividing line between two components so that either may be replaced someday.


> Focus instead on writing code you can throw away easily, code that you are wholly unattached to and is isolated enough that rewriting it won’t cost absurd hours.

> Good code is highly maintainable so that you can continue to meet business objectives in a timely manner without regressions.

I think you essentially agree on what people should do, regardless of whether you call this 'good code' or just maintainable code.

Write tests. Give things good names. Use comments to explain why you're doing something, not how to program. Don't copy and paste the same implementation x times because that way there's only one place to fix it.


> replacing working code is probably not a good idea

Depends what you mean by "working".


>you're guaranteed to be writing performant safe code

Let's not get overboard here


> The best code is the easiest to throw away and rewrite, because let's face it, the older the code is, the more hands it's been through, the worse it is, but more importantly the less motivated anyone is in maintaining it.

The more testing that's been done and the more stable it should be.

The argument for new can be flipped because new doesn't mean better and old doesn't mean hell.


> please make sure it works today, and can work tomorrow.

This would fall in the "nice to have but not required" column.

Publishing messy code that's hard to run is a million time better than no code at all.


> The less code you need to solve your problem, the better.

Couldn't agree more. I always reject PRs with dead code in them. The author will argue that they added it for some future use case, but in my opinion it is never acceptable to have dead / unreachable code. It's confusing for future readers of your code and you can always add it later if your imaginary use case ever becomes real.


> Having said that, I certainly hope that this does not become some sort of thing that people spend a lot of time worrying about, enforcing, or baby sitting others.

If that is the case, then that precisely proves the usefulness of such a code.


> and coding is only fun when the code is clean.

I wish I could upvote this more than one time.


> make things possible, often just to run it once

This is the largest difference. When there's no expectation of code lasting beyond a very short lifespan, why go through the effort to future proof things, improve maintainability, have better ergonomics, etc?


> the code isn't that clean

It's cleaner than a solid 90% of the code I've read over the years :)

next

Legal | privacy