Every time I work on a project, the amount of progress increases logarithmically. This means I start off really strong and I end off really weak. Iâve noticed this for a majority of projects that I work on.
I think a big reason why this happens is because when my project is able to get 50-60% of cases (ie it works but donât touch it), internally my brain feels like itâs done and I donât want to work on it anymore. When I start off a project I get huge boosts in dopamine when I finish a part and get it to work. Over time there are fewer and fewer things to do and I donât get as big a dopamine hit when I gradually finish up remaining features. This gets really ****bad when I try to think of edge cases, because itâs not entirely clear what needs to be done, and I donât even know what edge cases exist.
This has affected the quality of my work and I would like some strategies of keeping high output even towards the later stages of a project which involves less excited parts of work.
I think this somewhat relates to Alexâs video on ââ, but I feel that the hard part is that I donât even know where to begin. I donât know where edge cases may. On a component level itâs not too bad, but when youâre doing integration testing and when the space of possible inputs is extremely high, it feels like youâre put in the middle of the ocean.
As an example, recently I was tasked with writing a bot to draw an ordered set of lines, curves and arcs on a canvas. The input a vector representation of the drawing and the output is an mp4 recording.
First 3 days went pretty well. In fact, I pretty much built the entire system and integrated everything. The annoying part comes to solving edge cases from integration testing. For the next 7 days I spent days kind of just sitting around, testing my system, and getting bored. I was waiting for my partner to finish his part of the system.
What strategies are there to make my output more consistent? I tried doing a test plan but they tend to be really shallow because I donât know how the system looks like/what edge cases look like until Iâve actually built the product.