> Action leads to motivation, not the other way around. I've found this to be very true. A trick I found that made this easier for me is to leave a trivial task to start tomorrow with, often with notes to remind myself what to do. Ideally the trivial task is on the way to something bigger, not finishing something. That gets me into my editor, gets me running the code / tests / etc., and gives me a trivially easy way…
Getting Past Procrastination
41–50 of 185 posts
Re: Getting Past Procrastination
#42"Across a decade working at hypergrowth tech companies like Meta and Pinterest, I constantly struggled with procrastination [...] I was not making progress on the things that mattered." Maybe unless one can really convince themselves that their daily work matters (really matters and not just for their team/company metrics) one is bound to procrastinate as a symptom of some subconscious sense of pointlessness.
Re: Getting Past Procrastination
#43The warrant for this claim: The smaller the action you ask from yourself, the easier it is to choose it over inaction. But sometimes it's not inaction we're choosing against; it's discomfort. In that case, this becomes simplistic.
Re: Getting Past Procrastination
#44> Action leads to motivation, not the other way around. For me, this sounds a bit tautological. Of course the opposite of procrastination is action. It’s similar to saying, “If you want to lose weight, just eat less.” It’s certainly true on a meta level, but very difficult for some people to implement.
Re: Getting Past Procrastination
#45Earlier quoted context omitted.
I mean, its the same concept. what are you procrastinating on?
Sometimes on house chores or small repairs to do.
Maybe the idea can help you starting things?
It also helps that, sometimes, when the tasks are big, I convince myself that I can finish it later. Many times I do not have to finish it later..
Re: Getting Past Procrastination
#46Earlier quoted context omitted.
Yes. It's funny how this kind of trick can instantly snap the entire working context back into your mind. Essentially leaving you free to forget about the context during your free time and overnight. Truly a useful "hack". It's also useful to jot down a quick list of (say) three items that are at the top of your mind when you leave work for the day, and they too will help with a context restore.
Also just chuck Todo comments in the code The magic of Git means you can immediately find them in the working index and get back on to it. Just remember to remove them before the commit.
How does git help you find certain texts in files? `grep` should do the trick just fine, unless I misunderstand what "chuck Todo comments in the code" mean, the code lives on your disk no?
Re: Getting Past Procrastination
#47The older I get, the more I realize there's no point. I'll never be rich. I'll never have a family. I'll never go to space. I'll never take part in Olympics. Best I can do is beating a video game on medium. So I try to focus on that, instead of spending 80% of my life trying to make myself 20% more productive.
Re: Getting Past Procrastination
#48Earlier quoted context omitted.
Also just chuck Todo comments in the code The magic of Git means you can immediately find them in the working index and get back on to it. Just remember to remove them before the commit.
> The magic of Git means you can immediately find them in the working index How does git help you find certain texts in files? `grep` should do the trick just fine, unless I misunderstand what "chuck Todo comments in the code" mean, the code lives on your disk no?
Grep will find them too, but any in the diff you'll know for sure were added by you.
Re: Getting Past Procrastination
#49Earlier quoted context omitted.
Also just chuck Todo comments in the code The magic of Git means you can immediately find them in the working index and get back on to it. Just remember to remove them before the commit.
> The magic of Git means you can immediately find them in the working index How does git help you find certain texts in files? `grep` should do the trick just fine, unless I misunderstand what "chuck Todo comments in the code" mean, the code lives on your disk no?
Re: Getting Past Procrastination
#50Earlier quoted context omitted.
> The magic of Git means you can immediately find them in the working index How does git help you find certain texts in files? `grep` should do the trick just fine, unless I misunderstand what "chuck Todo comments in the code" mean, the code lives on your disk no?
They'll show up in the diff. Grep will find them too, but any in the diff you'll know for sure were added by you.
And why it matters to get them from the diff if they're on disk already? Literally one command to find all of them, rather than going through git?