TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

How to write unmantainable code (2015)

160 pointsby diegoloover 2 years ago

24 comments

Waterluvianover 2 years ago
They forgot the masterpiece I saw years ago:<p>1. Give all your Python class members a tedious naming convention.<p>2. Be DRY by writing helper functions that do name lookup based on a string of the last half of the member name.<p>3. Be even more DRY by having the function guess a little if the match isn’t exact<p>You now have an application where you cannot search for where members are referenced.
评论 #34122455 未加载
评论 #34122429 未加载
评论 #34125412 未加载
评论 #34123371 未加载
评论 #34122997 未加载
评论 #34133394 未加载
评论 #34131511 未加载
评论 #34122317 未加载
xyzelementover 2 years ago
My first job out of college, my boss and I took over some code that was written by two genius PhDs (one math, one physics - we were working in finance.)<p>I noticed a variable (long word starting with z) used in a lot of places. Turns out it was the German word for &quot;counter&quot;.<p>It was my first hint that most of the backend codebase was written as a competition between the two of them to seem the smartest.<p>On the front-end, I remember opening some many thousand line long file trying to figure it out. I scrolled pages and pages to the top of the file looking for a comment. I found one. The comment:<p>&#x2F;* What is this shit? *&#x2F;<p>Written by someone who tried to help those guys.
评论 #34123566 未加载
评论 #34123959 未加载
评论 #34128406 未加载
评论 #34123492 未加载
评论 #34125050 未加载
评论 #34127080 未加载
评论 #34126423 未加载
评论 #34123402 未加载
mtlmtlmtlmtlover 2 years ago
This is the way it seems to go in the public sector, at least here in Norway.<p>1. Get an n year government contract for some huge public IT overhaul. E.g building a new hospital journal system for a large region(this example is real, google &quot;helseplatformen&quot;)<p>2. Spend years developing this huge proprietary .net monolith with a waterfall model, and minimal user interaction and testing during most of the contract.<p>3. Release an MVP by the end of the contract that&#x27;s barely suited for the task(inevitable due to inherently broken dev model) and causes a huge amount of problems<p>4. Get another n year contract to fix the thing<p>5. Print money.
评论 #34122634 未加载
评论 #34122706 未加载
评论 #34126131 未加载
评论 #34126424 未加载
评论 #34123287 未加载
评论 #34122449 未加载
评论 #34122730 未加载
praptakover 2 years ago
The section on naming is amateur. Names like `fred` or &#x27;asdf&#x27; are too obviously meaningless and wouldn&#x27;t even pass a code review.<p>You want names that <i>do</i> describe your code but <i>badly</i>. If your function reads policies from the DB, filters them and calculates some missing data, be sure to name the function &#x27;readPolicies&#x27;. Nobody will look at that function when chasing a bug related to the filtering part!<p>You may want to spread it across a few changes to get plausible deniability. You may also &quot;fix&quot; the name by changing it to something hopelessly generic like `initializeState`.
评论 #34126297 未加载
deterministicover 2 years ago
Heh. The author forgot the most important one:<p>Use micro-services! The more the better! And write each micro-service using a different programming language and build system. Make sure the protocols are not documented. And that the micro-services are called p376, f190 etc. Make sure that some micro-services need to access a specific server setup to build!
评论 #34123638 未加载
csoursover 2 years ago
I just reworked some java code that is deployed INSIDE an oracle database. You can load java classes into oracle and use them like functions.<p>So I would say: find the most obscure place you can deploy code, and make sure it is not testable.
评论 #34125838 未加载
SCLeoover 2 years ago
&gt; Hungarian Notation is the tactical nuclear weapon of source code obfuscation techniques; use it! Due to the sheer volume of source code contaminated by this idiom nothing can kill a maintenance engineer faster than a well planned Hungarian Notation attack. The following tips will help you corrupt the original intent of Hungarian Notation:<p>I can&#x27;t stop laughing.
评论 #34125583 未加载
steveBK123over 2 years ago
Worked with some guys like this, probably doing it intentionally. One guy liked single-letter vars &amp; derivatives thereof. For example all the following might appear in the same 100 lines of code: a, aa, a_, aa_, aa__, A, AA, A_, AA_.<p>Often these were crazy code forking paths like:<p>* a is a 1 liner which calls a_ or aa depending on a conditional.<p>* a_ then returns something or calls a__ depending on a conditional.<p>* aa calls aa_ or aa__ depending..<p>* A, AA, A_ and AA__ might be some global states or boolean flags or cmdline args or env vars read in which effect all the above..<p>Another favorite was to use the same noun in different cases for different types of things. For example:<p>* servers - a function you call which returns a list of servers<p>* servers_ - a subfunction called by servers<p>* SERVERS - a boolean global variable switch to enable functionality<p>* Servers - a variable containing the list of servers used by all of the above<p>I once asked him to explain the differences and there was no consistency. Sometimes all-caps was the function, sometimes all-caps was the boolean, sometimes lowercase, whatever.<p>The best was clearly someone forced him to put in comments under duress.<p>However he ONLY commented the obvious stuff, like-<p>getCmdline # gets the cmdline
aurelianitoover 2 years ago
Extra points: leave old and outdated documentation and scripts in the repository. New documentation should go to a wiki that is not referenced in code and does not track versions. Different parts of the wiki should apply to different code versions.
epguiover 2 years ago
Another really good technique: make sure your imports cause side effects! Can&#x27;t believe that one wasn&#x27;t mentioned.
Sirenedover 2 years ago
My favorite is when the codebase is so deeply buried in macros and headers that send you on a wild goose chase to find any actual code that it becomes much easier to just dump the binary in ida&#x2F;binja. The source code can lie but at least the compiled binary directly does what it says
评论 #34123630 未加载
评论 #34123211 未加载
semi-extrinsicover 2 years ago
One of my favorite tricks is to combine functions that get called recursively (ideally four-five calls before you get back to the first one in the circle) with objects that are gradually unpacked such that their identically named member functions do subtly different things.
评论 #34126306 未加载
eyelidlessnessover 2 years ago
&gt; If you call your variables a, b, c, then it will be impossible to search for instances of them using a simple text editor.<p>My friends, it’s time we all learn regex. You’ve heard it’s unknowable, but a simple \b on either side of your target search is your friend too! It just means “there isn’t an alphanumeric character next to me!” It wants to get to know you! If you can’t search for a variable named a, it wants to help!
评论 #34134672 未加载
评论 #34125011 未加载
gofreddygoover 2 years ago
Best way I know to write unmaintainable code is to use all the best practices you can find.
bottled_poeover 2 years ago
Hmm, that’s a lot of rules to adhere to. I wouldn’t want to miss one. If only there were a linter to ensure these rules were always followed..
TrackerFFover 2 years ago
It&#x27;s a fun read, but it is pretty much impossible unless you&#x27;re running a one-man show, with zero oversight or checks at place.<p>Code like that should set off alarms very fast, and any code review should catch it early on.
评论 #34125767 未加载
评论 #34125188 未加载
justinlloydover 2 years ago
This &quot;how to&quot; guide describes, quite literally, a project I used to be on. I ran down the list and just went &quot;Check. Check. Check. _pause_ Yeah, check. Check. Check.&quot;
toredover 2 years ago
Inherited one project where the previous developer enjoyed writing if cases like this<p><pre><code> if (article &gt; 0) </code></pre> confusing early on becuase you would start thinking this is a beginning of arithmetic comparison of numbers when it actually was just a check if the article existed or not.
throwaway14356over 2 years ago
you no longer have to learn all that, there are plenty of frameworks and specs to combine into much greater complexity with great P deniability. OAUTH is a good place to start, add some graphQL parsing, there is plenty of similarly legit looking nosql.
CHsurferover 2 years ago
My son is just starting to code for a class in school. If only the author was grading his assignments…
dev_tty01over 2 years ago
#define else
dzhiurgisover 2 years ago
Reading one of these years ago at the start of my career helped me to write at least somewhat more maintainable code
hinkleyover 2 years ago
&gt; Roedy Green<p>&lt; Sir Alec Guinness voice &gt; That’s a name I’ve not heard in a long time…
Dawnyhf2over 2 years ago
If you put something out for free on the Internet, don’t expect credit. Why would you?