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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Does poor coding ever sink a startup?

16 点作者 cmorgan8506超过 12 年前
I was curious if there are any stories of a startup failing due to poorly built software.

7 条评论

johnrgrace超过 12 年前
I'm positive that more than a few startups have been sunk by poor code, however I don't have any examples.<p>I worked on a Big oil company IT project that had failed twice due to bad code. As the business guy I figured out that the system would round round down the final non zero digit of any value stored in the system to either zero or five. Usually this would make the report numbers slightly off, but sometimes it could be massive. Say you bought 1,000 $9.00 parts the system would show $5,000 in cost instead of $9,000, but if you paid $9.26 for the parts it would show $9,250 in cost.<p>The root cause of this error was the IT team had one guy who was crazy smart and had a bucketfull of assumptions about what the problem was that couldn't imagine that the issue was one baked into some of the first code he had written.<p>In a nutshell, this was a reporting package that sat ontop of SAP that was supposed to be actually useable by field managers and guys who turned wrenches so they could keep track of their budgets and spending. Of course this was needed because SAP had been implemented with very little training and no helpdesk for users.<p>The project had been rolled out twice to the field and just rejected flat out because the numbers didn't match, million had been spent building it and there was a 3rd try before the entire system was scrapped and a few million spent on an off the shelf piece of software.<p>It took a while to find the root cause of the totals being off because I'd always get these great complex explinations as to why the data was off an they had project change orders in to fix it. Finally I just pulled data to find out what was going on, and saw this weird pattern of the data being off in specific places but it took a day before I had the insight that the same thing was changing $140.00 into $100.00 as $0.79 into $0.75 i.e. the final nonzero digit of any stored value was being rounded down to the either 0 or 5.
mcotton超过 12 年前
I know a startup who spent 18 months and all their investment capital on outsourced development. When the code wasn't up to standards they used expensive consultants to fix the code. They ultimately decided to hire development staff but couldn't add new features without breaking the existing product.<p>It is a good little business but failed because of bad management decisions and poorly built software.<p>Contact me if you want more details.
moocow01超过 12 年前
Yes and probably more often than you think but it can quite difficult to diagnose from a top down perspective. It usually materializes in costs becoming too great but the underlying cause frequently is a rushed product that eventually costs too much to iterate on because of sloppy underpinnings. Its a delicate balance - you've got to get stuff out quick enough but also stable enough to make sure the next iterations wont become exponentially longer and more costly.<p>Outsourcing, high turnover, constantly changing requirements with unreasonable schedules all can lead to codebases that become too expensive to iterate on when the market demands more. Sometimes the only way out is to approach a complete rewrite which is usually a risky proposition.<p>Many times poorly coded products from the outside can have correlated symptoms of poor performance, bugginess, and slow feature development which are the cited reasons users may abandon the product.
评论 #4757898 未加载
TheMakeA超过 12 年前
One issue that I have seen is that many people will confuse anything more than slapping together code and checking it in as "premature optimization." Many of the same people believe that the value of their code scales proportionately with its size. More code is always better, right?<p>Poor code leads to technical debt, startup or not. Like all debts, if you don't bite the bullet and repay it, you will eventually be consumed by it.
xoail超过 12 年前
They may not completely fail due to bad code but it does incur a huge hit in pockets. Bad code results in high maintenance cost of the project and could take eventually kill it. Hence there is need for application and solution architects in any software development project.
debacle超过 12 年前
I've experienced more startup failures due to over engineering and premature optimization (and thus late to market) than bad code.<p>You can fix the code after you launch, or you can just never launch.
gadders超过 12 年前
One that springs to mind is Friendster. I seem to remember there were lots of stories about it running like a dog when converted to run on Java (and I'm not knocking Java).