Fighting procrastination has been my major concern these days. I’ve devised a number of experimental tools to help me with that. One of them is called snafu and can generate reports of your activity throughout the whole day of work. It’s in a preliminary state, but works (at least since I’ve found and fixed a long-standing bug in it which would cause it to barf every now and then), and I already have a number of ideas for its further expansion.
Reports alone, however, do not quite muster enough motivation for
work. I’m doing most of my editing/programming work in Emacs, so
yesterday I grabbed the Emacs Lisp manual and came up with a couple
of extra lines at the end of my .emacs.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |
Every second (to change that to every 10 seconds, change the 1 to
10 in the last line) it creates a file named /tmp/emacs-lmt which
contains the time of last modification of any non-system buffer.
That’s all there is to it, at least on the Emacs side. The other part is a simple shell script, which uses MPlayer to display a nag-screen for five seconds, and then give me some time to start doing anything useful before nagging me again:
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
The nag-screen in my case is an animation which I’ve created using MEncoder from a single frame which looks like this. Beware the expletives! (This is one of the few cases I find their usage justified, as the strong message bites the conscience more strongly.)
I’ve only been testing this setup for one day, but so far it’s working flawlessly: I got more done yesterday than for the two previous days combined, and that’s excluding the hour or so that took me to write these snippets.
If anyone else happens to give it a try, I’d love to hear any comments.