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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How do you start development of your latest great idea?

3 点作者 khingebjerg将近 15 年前
I'm interested in hearing about how you aproach the initial development efforts.<p>Choosing technology. Do you go with what you know, or sometimes see it as an opportunity to try something new?<p>Getting started on a prototype. Do you start on paper, i.e. some sort of design, or do you jump heads first into coding?<p>If it's a something with a front end, do you start with that, or do you prefer to start with the back end?<p>Any other insights, on how you attack your new ideas, are greatly appreciated.

5 条评论

bwh2将近 15 年前
Usually I'm building something to scratch my own itch, so I typically jump right into coding. In fact, I usually don't start by thinking, "I should do this as a project." I start just by doing it to solve my own problem, then realize it's pretty cool and I should expand/release it.<p>That being said, I usually start building out the front-end first. Understanding actual user interaction and use cases is pre-requisite for designing appropriate data models and storage solutions. I basically try to get something up and running as fast as possible, while minimizing the cost to change directions.
Rust将近 15 年前
For a simpler project, I usually start by building a basic library of classes/functions I know I'll need (for example, a database factory class and MySQL or PostgreSQL interface, helper functions for cleaning querystrings and form fields, etc.). Then I'll do a basic mockup of the front page and at least one or two internal pages (if they differ from the default page).<p>Finally I start building code out, starting with a very basic theme for the front end and concentrating on any security that needs to be in place.<p>Yes, I generally start from a blank slate each time, just using pieces of code I already have. I don't use frameworks or CSS grids.
exline将近 15 年前
I start with brain storming how it will be used. What are the use cases? This is easy if you are scratching your own itch. More difficult if you not.<p>Then pair down the ideas/use cases/requirments to what you need for an MVP.<p>Then I like to work on the data models and back end. But that is where my strengths are. If it is a complex problem, I like doing some design work to make sure a) its doable b) that I don't code myself into a corner.<p>That said, I'd like to all the above very quickly and get to the coding. I have found at times that I get stuck spinning my wheels. It helps to get input on any of the above from another person.
jtchang将近 15 年前
I love writing snippets of code. Usually they form the basis of a much larger, well architected idea.<p>But at the beginning everything starts out with just one or two files. Figure out what you want to get done and just do it. Don't worry about if it is ugly or not. You are just proving an idea.<p>If you are attacking a much larger concept you still want to start small. If it is a web application make sure you use a framework.<p>Once you know you can do it then you start architecting. Make a list of tech choices you know or want to learn and might be a good fit.
gubatron将近 15 年前
Brainstorm with a group of people I respect. Put the idea to the test to foresee inconvenients and opportunities I may not have considered after a long time thinking about it myself.<p>Then I just go and code the core of it ugly and fast into simple tests to make sure it'll fly.<p>Then I go out and start building a first release with minimum functionality, release it to a closed alpha test group, iterate, iterate, iterate, go beta and cross my fingers.