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.

Ask HN: How do you restart a coding project after vacation?

2 pointsby headShrinkeralmost 9 years ago
Imagine you are coding a fairly complex payment system with 6 or so classes, invoicing, payment confirmation, email messaging, due date tracking, etc. Memorial day comes and you leave your code as a series of half completed read and write methods, getters and setters, and some buggy calculations, briefly commented. When you come back, you are at a loss on how to restart. This is what happened to me and it&#x27;s taking all day to get my head back in to it.<p>How do you come back to a coding project after being away from it for more than a few days?

2 comments

greenyodaalmost 9 years ago
<i>&quot;How do you come back to a coding project after being away from it for more than a few days?&quot;</i><p>I keep a log of what I&#x27;m working on, including to-do items (each of which get expanded into subtasks when I start working on it), next steps, questions to be resolved, ideas for future work, summaries of design discussions, etc. This gives me some context that I can look at when I go back to a task (whether it&#x27;s after a short interruption like a meeting or a several-day long absence). I maintain this log as a plain text file that I keep open in my editor.<p>Another advantage of having a permanent, searchable log is being able to go back and figure out why I did something in the past.
nwrkalmost 9 years ago
try overcoming the overwhelming :-) by breaking it down to smaller tasks &#x2F; steps<p>+ simpler mental model<p>+ simpler code<p>reward yourself with small completed goals. take it easy!