TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Why nobody knows what they're doing

59 点作者 clawrencewenham超过 15 年前

5 条评论

petercooper超过 15 年前
This is a prime example of why the (domain.com) section at the end of links on HN should be the full hostname, and not just the top domain. I only looked at this because I thought it was a Google posting :-)
评论 #1051641 未加载
评论 #1051712 未加载
rationalbeaver超过 15 年前
Huh. It turns out that the enterprise software development cycle is a complicated analog of human history.
评论 #1051636 未加载
dasil003超过 15 年前
In other words, computers didn't turn out to be the legendary invention that transformed human enterprise into mathematically precise processes. I guess the futurists of the 40s and 50s oversold the promise of computation just a bit. But hey, at least we have job security.
评论 #1051977 未加载
edw519超过 15 年前
A better title for this screed would have been, "I have not seen these things be successful, therefore they <i>can't</i> be successful".<p>In all fairness OP cites lots of examples where success is usually elusive, so it's easy for him to make the jump from "usually" to "always". This kind of thinking scares me, not so much because it's so myoptic, but because it becomes a self-fulfilling prophecy: "I have never seen success" becomes "Success is not possible" which becomes true because we stop trying.<p>There is so much to examine here, but I'd like to focus on OP's 10 examples of things that change. Mere mortals throw up their hands in futility, blaming the user, the state of the art, or the alignment of the planets, without ever understanding the fundamental principal that great systems accomodate great needs and the greatest need of all is constant change.<p><i>the company recategorizes its product line based on utility and lifestyle rather than brand and designer</i><p>This is incredibly common and can easily be accomodated with proper database design, decoupling products from their associated attributes.<p><i>the parent company divests itself of you and withdraws the connection to its parts and inventory database</i><p>So now you have to treat them like any other vendor? You do have some of those, don't you?<p><i>a manufacturer starts using more than one UPC per product because they changed the packaging</i><p>A simple database design consideration. "One to one" is just a special case of "one to many".<p><i>the law now requires that national holidays must be counted against vacation time if the employee takes a vacation day immediately before/after that holiday</i><p>Rule driven logic. What's the big deal? (Your logic was rule-driven from the outset, not hard-coded, right?)<p><i>a loan company files to become a bank and store deposits that earn interest</i><p>Additional logic to existing data. We do this all the time.<p><i>CSV files exchanged with a partner were always denormalized, but then one company starts using normalized records with mixed column mappings</i><p>Any decent batch file processor should be able to handle anything thrown at it. Companies that do a lot of this build uncertainty into the design of their systems.<p><i>another partner decides to ditch file transfer as a way to submit data, and creates a web service that you're supposed to invoke commands on</i><p>Sounds like you'll need an extra piece of software to create a feed. Not exactly like no one's ever done this before.<p><i>the shipping carrier reveals that their tracking numbers are all recycled at the end of each year</i><p>Not a problem if they were never used as the primary key to a table.<p><i>new rules require every credit card number to be encrypted, but you still have to be able to quickly search for matches in a database of millions</i><p>Ahh, but the last 4 digits do not have to be encrypted. Start your search with them and resolve synonyms. Pretty standard stuff.<p><i>a partner switches to mixed-case alphanumeric PO numbers</i><p>As an identifier, a PO number is always a string even if it looks like it's numeric. (When was the last time you added 2 PO numbers together?)<p>OP's roadblocks are experienced developers' speedbumps. Just because he hasn't done it doesn't really mean that "Nobody knows what they're doing".
评论 #1051754 未加载
iamwil超过 15 年前
I find that I have to protect myself against desire at times. When I find out about a new tech, I start looking around for problems to apply the solution. Sometimes that's good. Sometimes, that's bad.