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.

Ask HN: Most regrettable design decision in computer industry?

12 pointsby t_hozumiover 11 years ago
I think that there is a type of design decision that cause a lot of trouble and trivial benefit. If designers had been aware of problems, the world would have saved tons of time and money.<p>For example:<p>Big-Endian and Little-Endian:<p>The difference of endian forces developers to be careful of target architecture. If early processor vendors had communicated and established which is the standard, there would have been less trouble and no need to invent byte order mark(BOM).<p>32bit IP address:<p>Of course it is difficult to judge how many devices will be in the world, but sometimes I have an uneasy feeling about shifting to IPv6. I think that the industry will experience confusion and need to devote much effort than we think.<p>What do you think is most regrettable design decision in computer industry?

9 comments

pilomover 11 years ago
There are 2 ways to handle strings: 1. All strings are prepended with a length variable 2. Use a NULL character to represent the end of the string<p>The Unix guys originally chose option 2. To them it made sense because it used fewer extra bits and it allowed you to do strings of any arbitrary length. Unfortunately, every single buffer overflow bug is because of that decision.
txutxuover 11 years ago
- plain text authentication (FTP, SMTP, etc).<p>- 2 digits for years of 4 digits<p>- 32 bits ints for counting dates since epoch
informatimagoover 11 years ago
Having a computer industry.<p>All the other design decisions are not regretable within the context of a computer industry, since they just promote more invoicing. On the contrary, the best thing you can do, is to create more such design decision, so you can charge customers more: to implement those design decisions, to reimplement them in a different language for a different platform, to reimplement them when the new extended version of the design decision becomes necessary, and so on. If you make a good design decision, you&#x27;re set for life.
IvyMikeover 11 years ago
If people would have just agreed about exactly what a &#x27;newline&#x27; was, that would have been nice.
jrmenonover 11 years ago
While not directly related to h&#x2F;w, one of my favorite reads has been &quot;Unix Haters Handbook&quot;:<p><a href="http://web.mit.edu/~simsong/www/ugh.pdf" rel="nofollow">http:&#x2F;&#x2F;web.mit.edu&#x2F;~simsong&#x2F;www&#x2F;ugh.pdf</a><p>Note I am a Unix&#x2F;&#x2F;Linux fan myself, but it was really eye-opening to read that doc. (it also confirmed some of my early suspicions on what I perceived to be various design flaws).<p>Also the book was released in the early 90s&#x27;, and since then, some of the issues discussed in it has been fixed in later releases of *BSDs&#x27; and Linux.<p>It is still an enjoyable read :)
LarryMade2over 11 years ago
Non replaceable power adapter-to-laptop cables, they save maybe a buck at most but cost us soo much more in replacement PSUs and fried laptops.<p>Daylight Savings Time
kineticfocusover 11 years ago
640k<p>GOTO<p>Buffer Overflows<p>DRM
rholdyover 11 years ago
CAPTCHA
评论 #6451707 未加载
andyzwebover 11 years ago
null
评论 #6439187 未加载