beriukay comments on 10-Step Anti-Procrastination Checklist - Less Wrong

32 Post author: JesseGalef 17 May 2013 01:59AM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (51)

You are viewing a single comment's thread. Show more comments above.

Comment author: wadavis 24 May 2013 05:44:23PM 1 point [-]

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.

Comment author: beriukay 26 May 2013 01:00:29PM 0 points [-]

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.