As I see it, there are 2 main ends of a spectrum when it comes to releasing projects that aim to solve problems:<p>- top-down approach: you state your problem, think it through, consider all related work in this problem space, think very hard, come up with multiple possible solutions, evaluate their trade-offs and implement the best one (a-la Hammock-Driven Design: https://www.youtube.com/watch?v=f84n5oFoZBc&t=1816s)<p>- rapid prototyping: you state your problem, come up with the easiest possible solution, test it, repeat (a-la Lean Development: https://en.wikipedia.org/wiki/Lean_software_development)<p>I know some great examples of the first approach (Clojure, Datomic, maybe Git?), but I don't know that many successes of the second approach. Furthermore, my personal work experience leads me to believe that the second approach, at least in practice, leads to a lot of wasted effort, so I'm interested to know whether it is so or not.
I get the feeling that the "wasted effort" in the second approach is about rewriting code.<p>Rewriting code is <i>good</i> in my experience. It's always better the second time around (or third, or fourth). It's not that my first attempt was rubbish, it's that I didn't understand the problem as well as I did the second time (and so on).<p>Lean is also about avoiding premature optimisation. Which is hard because it cuts against the grain of our engineer sensibilities. Doing something "good enough for now" is tough, when you know that with just a few more days' effort you could make it bulletproof. But I've had to delete "bulletproof" code so many times, because it turns out the product didn't need that feature, or it needed to work differently.<p>In the long term, Lean avoids more wasted effort, in my experience.
Top-down generally only works for a well-understood problem domain, and even then it only holds up for focused projects where you have the power to declare what is in scope and out of scope in a very strong fashion. This works better for dev tools, libraries, middleware or other projects that are abstract and not tied too closely to a specific business or end-user goal. In other words, the more abstract the tool and the more technical the audience, the more likely that you can drive massive impact while maintaining a simple vision and avoiding all kinds of edge cases and incidental complexity.<p>Rapid prototyping is more optimal for any end-user product or any new domain, because it’s a faster way to discover the unknown unknowns, both in terms of user features as well as well as technical challenges you may not have anticipated.
I believe Git to be actually part of the 2nd than the first group.<p>Linus built the working prototype/self-hosted in 3 days mixing a lot of his learnings from bit-keeper and his knowledge of disk management [1].<p>To me, that's rapid prototyping. It's enough domain knowledge to make it work for himself well. He didn't spend a bunch of time thinking nor coming up with solution since he was actively building Linux at the time. The key is he employed the help of others to build Git and eventually take it over since he wanted to focus on Linux.<p>This all comes with a huge caveat in that Linus's 3 days == 1000 of mine. His 'just enough' knowledge is near expert level.<p>As others have asked, what are you trying to build? A technical solution or an end-user solution.<p>Technical solutions do require a lot more domain knowledge than a twitter/airbnb (at the early stages).<p>In the end, I believe in rapid prototyping and failing fast[2]. Learn just enough, whether technical or end-consumer to launch fast.<p>The thing I agree 100% is though, don't break user-space [3]. I believe this applies to end users of products, whether developers or customers. Once people start consuming something, don't break it. Doesn't matter whether you believe it to be 'correct' or a 'bug'. Expectation management of slow and easy depreciation.<p>[1] <a href="https://en.wikipedia.org/wiki/Git#History" rel="nofollow">https://en.wikipedia.org/wiki/Git#History</a>
[2] <a href="http://paulgraham.com/startupmistakes.html" rel="nofollow">http://paulgraham.com/startupmistakes.html</a>
[3] <a href="https://lkml.org/lkml/2012/12/23/75" rel="nofollow">https://lkml.org/lkml/2012/12/23/75</a>
I feel like the question is mixing 2 things.<p>One is using a top-down approach versus an iterative approach. The other is about the nature of your problem: do you have product risk or market risk?<p>The lean approach is about eliminating waste, which, in the context of startups, often means building something small and talking to users. But that's only because most startups have market risk. If you have product risk, you should still iterate on your solution instead of building it in one go.<p>I feel like you are asking for examples where the market-risk was addressed. The most interesting companies would be those where the first test was a total miss and they solved a totally different problem in the end.
I don't think your dichotomy is valid.<p>Git definitely doesn't fit the first approach. Not sure why you would state that.<p>Maybe the core of Clojure, with the persistent data structures, fits the first approach, but I doubt the rest of it does (speaking as an outsider to th eproject).<p>"Implement the best one" belies a lot of sweat and places where it could have gone wrong. In other words, the initial thinking is not even addressing half of the problem or doing half the work.<p>The philosophy of Clojure itself is very much based on iteration and interactive programming. You need a lot of action, feedback, and iteratino in addition to the "think very hard" part.
Wouldn't Lisp count for the top-down approach? Only that most of the thinking was done without thought spent on an actual implementation, and the actual implementation was done by different people who recognised the practicality of it?
Dark (<a href="https://darklang.com" rel="nofollow">https://darklang.com</a>) was a bit of both. I spent several years thinking about the problem, and once I had a solution and decided to work on it, went into rapid prototyping to figure out if it could work. To a certain extent, we're still in that phase, just with a much bigger team now.
Two examples of rapid prototyping spring to mind:<p>* Twitch, started as one guy streaming his life then they realised lots of gamers were watching, and that they'd like to be able to stream <a href="https://www.youtube.com/watch?v=FBOLk9s9Ci4" rel="nofollow">https://www.youtube.com/watch?v=FBOLk9s9Ci4</a><p>* Segment, started as a thumbs up/down tool for professors in lectures to work out when students are getting confused. They realised everyone just went to Facebook instead, then they wondered why they couldn't tell this when they were remote! <a href="https://www.youtube.com/watch?v=l-vfn97QTr0" rel="nofollow">https://www.youtube.com/watch?v=l-vfn97QTr0</a>
One of HN favourites (?)
DropBox : <a href="https://techcrunch.com/2011/10/19/dropbox-minimal-viable-product/" rel="nofollow">https://techcrunch.com/2011/10/19/dropbox-minimal-viable-pro...</a>
The reality often is a mixture.<p>If you don't know your problem there is nothing to prototype, no minimal viable product. Nothing.<p>If you spend years analysing and planning you get nowhere.<p>You need to have an idea, a problem which has to be solved, but should not be lost in the forest.
At a strategy level, which one of the two points you end up doing depends on who commissions and evaluates the work. If someone hands you a spec and then disappears, only to come back 5 years later and expect to receive a finished project, you'll be working "top-down". If you're trying to solve someone's immediate problem with software, and are in regular contact with that someone, you'll be working in "rapid prototyping". All projects, software or otherwise, are spread around the spectrum between the two endpoints. Where exactly depends on specifics, but if you're starting a new project, the consensus is that you should aim to be closer to the "rapid prototyping" end.<p>At a tactical level, feature level, you mix both. You state your problem (or get it stated to you), you think it through, hopefully considering at least some related work and doing some hard thinking, come up with multiple possible solutions and evaluate their trade-offs... by implementing their prototypes as fast as possible, because that's the only real way to discover the trade-offs. Depending on how much in a hurry you are, you might pick the first prototype that isn't a total disaster and build your feature from it, then test it, and repeat.<p>See how "top-down" and "rapid prototyping" is interwoven here. This approach can be expressed as: think before you do, but remember that you only learn the true scope of a problem by attempting to solve it.
I like and have successfully used the Business Model Canvas approach. You fill in all assumptions. Test the riskiest one in the simplest manner, then move on. E.g. if you're not sure you can find the right partnerships, look for that first. If you're not sure the value proposition would work, interview some people, make some mockup PowerPoint slides, and so on.
My personal avalanche detection project <a href="https://avanor.se" rel="nofollow">https://avanor.se</a> (I haven't started the image uploads for this season yet), seems to fit the second model. It's very simple and small, but is successful in terms of being a prescribed tool for professional avalanche forecasting in Sweden.<p>I think it's on it's third rewrite or something right now, and runs circles around the only other service in this space regarding bang for the bucks (guess my budget, its smaller than that).
Just because you build a project with the second approach, it doesn’t mean you haven’t thought about alternative solutions or design like defined in the first.<p>A lot of times it’s useful building products by rapidly iterating because you see flaws, holes in your thinking, and get feedback immediately from people who are going to use it.<p>Immediate (or shorter term) feedback can be very helpful.<p>But to answer your question, YC talks a lot about Twitch being an example of the second approach.