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.

How Not to Be Overwhelmed

10 pointsby banrovegrie2 days ago
When starting a huge project or product from scratch how do you guys prevent yourselves from getting overwhelmed by the sheer amount of code to write or work to do?<p>I have a bad habit of trying to deal with this by estimating how much code I can write in a day and seeing how that compounds over time. That way when you see that you can have &quot;x lines of code&quot; written by the end of 2&#x2F;3 months, it makes you feel okay this much amount of code is enough to finish up the project.<p>Not sure if this is the ideal way to go about things.

11 comments

he11owabout 12 hours ago
Don&#x27;t know about &quot;ideal&quot; but YC have a video where Michael Siebel talks about the dev cycle they had at Twitch. Before they applied it, he says, they wrote lots of redundant code and also get stuck on stuff that didn&#x27;t matter.<p>Eventually, what they did was set up two-week dev cycles. Before each, they&#x27;d write down suggestions for features&#x2F;WIP and stick everything on the board. They would also estimate if a feature was large (one week of work or over), medium (2-3 days) or small (up to a day). Then, they&#x27;d pick the most urgent things off that list, and work only on them. Two weeks later, same thing. But you don&#x27;t keep a list of the ideas, the other things don&#x27;t go into a queue.<p>I applied this for a product I was building last year, and it definitely helped build faster.<p>Not sure about measuring things in LOC or commits.
carlnewton1 day ago
I started a new passion project last year. I don&#x27;t know if it counts as a huge project, but I could tell going in that it would be the largest and most ambitious solo project I&#x27;ve ever taken on. Given that this is a project that nobody is paying me for, I have the luxury of not having to give any deadlines, so depending on your situation, your mileage may vary.<p>Firstly, whenever I encounter a bug or an idea that I don&#x27;t want to interrupt my flow, I make a note of it. I&#x27;m currently using a Github project board for this. You don&#x27;t have to use any complicated features to do this, it can be essentially used as a todo list so that you keep track of the things you want to implement. These things should be broken down into small achievable tasks.<p>I have embraced the idea that this project might take me literally years to finish, or it might never truly be finished. There are a great number of successful software projects that are never finished! Linux, for instance! I&#x27;ve given myself the odd fleeting thought to how much time it would take for a v1.0.0, but never tried to calculate it. I&#x27;ve accepted that it&#x27;ll be done when it&#x27;s done. Especially given that I don&#x27;t know if I&#x27;ll be too busy to work on it in a few weeks time.<p>This way, by not worrying about when it&#x27;ll be done, I&#x27;m finding myself in that flow state of just working on the thing that I want to work on right now.
评论 #43987379 未加载
Koshimaabout 18 hours ago
I totally get where you’re coming from. One thing that has helped me is not just counting lines of code, but also using tools like Cursor (YC-backed) to get a sense of how my productivity stacks up against other developers. It’s a neat way to avoid the “just ship more code” mindset and focus more on efficient problem-solving.<p>I also find it useful to break projects into smaller, well-defined milestones. Instead of just aiming for a certain line count, I set targets like “implement the first API endpoint” or “get the first integration test passing”. This way, you’re not just pushing code but actually moving the project toward completion in a more structured way.<p>Curious if anyone else has tried using tools like Cursor or something similar for this?
austin-cheneyabout 17 hours ago
What you describe is a form of anxiety. The behaviors and the problem is the same whether you are talking about code or a mountain of dirt. You need to address that directly without medication. The healthy way most people solve for this is by embracing stress, often not by choice, adversity.<p>As far as your large project just take it a step at a time. Have something to execute, then write your first feature or solution, then add some usability, then do type checking or linting or whatever, then refactor as necessary, then determine if that first feature should be expanded or if you need a second feature, then, then, then…
jf221 day ago
I focus on today.<p>Throughout my career the backlogs have always feel infinite, the priorities high, the scope growing, the deadlines are impossible, and the stakeholders are always in a hurry.<p>It&#x27;s not you, the company, or the project, it&#x27;s just how the industry works.
quintes1 day ago
You have to break it up. Chunks milestones and evaluation.<p>That is Chunk up the work over some periods<p>Milestones tell you when you want what. This helps with expectation setting and managing anxiousness.<p>Evaluation is seeing how you are going and what change needs to be made.<p>When I do my own projects it’s feature based one at a time but knowing what the full thing is in terms of vision. It doesn’t always go to plan.<p>For teams, agile design, agile thinking, delivery and monitoring. It doesn’t always go to plan.<p>When it didn’t go to plan the question is how do I respond to it. That’s where growth lies
everythingabili1 day ago
I was once at a coding conference (Prograph CPX now you ask) and there was a coding competition. Who could create a usable To Do List App in one hour. About six people took part.<p>At the end of the hour, people demoed their creations. &quot;This one is clunky and works like this...&quot;, &quot;This one uses text to&quot; etc.<p>The last person got up and showed some doodles and notes on sheets of paper. He said &quot;Mine is the only one that actually works and is well designed, I just need to code it now&quot;.<p>I don&#x27;t know if there&#x27;s a lesson in there, but to me it was cool as.
a_tartaruga1 day ago
Reduce what you are trying to build as much as possible. Then reduce how much code you use to build it. Build something you can use as soon as you can. If you&#x27;re writing a ton of code before this thing is getting used then how do you know that you actually need all that code?
评论 #43983861 未加载
coolcase1 day ago
Work as a team. Your team takes the weight equally, helps each other out, so on no day shpuld you alone work late (and working together late should be rate).<p>Also know this: it ain&#x27;t your code. You can be fired at any time. Each day you work and you get paid. Not worth stressing. Instead make sure about staying employable and keeping up with interviews and networking etc.
evanjrowley1 day ago
Your plan should include time spent on fixing bugs and addressing technical debt.
scarface_74about 14 hours ago
I create a project plan. What are the functional requirements for an MVP and work backwards until I can get task that can be done in no more than a couple of days. If it’s a solely project, I break down only the work for the current “epic” or “work stream”.<p>My current job (consulting) has me going back and forth between requirements gathering and proposal writing, tech lead&#x2F;some project management and hands on implementations for smaller projects that don’t require a team. I have some project management training - just enough to be effective.<p>I don’t even think about lines of code. I think in terms of task completion.<p>For personal projects and even to juggle multiple projects at work I have personal Trello boards