beriukay comments on 10-Step Anti-Procrastination Checklist - Less Wrong
You are viewing a comment permalink. View the original post to see all comments and the full post content.
You are viewing a comment permalink. View the original post to see all comments and the full post content.
Comments (51)
I'd like to hear more solutions to the 15-60 second break problem. Options less extreme than working on a treadmill.
I've had some success with having a second task that is light on wetware ram on hand to jump back and forth with, ie. proof-reading for clerical errors or formatting documents. But this is not ideal, these boring tasks have their own weak ugh fields that can derail the whole plan.
With coding, at least, I find that I can stay focused if I put console outputs in the program. Debug info, or progress updates.
For example, I had some encoded text to decipher in my crypto class, and I knew the method of encoding used, so all I had to do was check every character's input with the ciphertext to see the answer... so I made it print every character, and then delete the character if it was wrong (or move on to the next if right), so it looked a bit like Hollywood-style decoding. Definitely kept me interested.