Showing posts with label lifehacker. Show all posts
Showing posts with label lifehacker. Show all posts

Tuesday, June 23, 2009

(10+2)*5

While browsing Lifehacker today I stumbled upon a post that features a simple application called Procrastination Killer.

The idea behind it is explained on the page, simply put, you work for 10 minutes then you take a break for 2 minutes, thus the 10+2, you repeat that for 5 times (12*5=60) and you get a full hour.

I've been using it the whole day now and it seems to be working; I'm finally getting some work done! But it's so annoying, you HAVE to take a break, and it's just 2 minutes long, by the time you have something fun and interesting to do the break is over. Like, just when I started to type this post the message popped up saying that my break is over, luckily, it doesn't start counting until you press the button so I'm taking a 5-minute break instead!

Let's see how this goes.

Wednesday, April 8, 2009

Productivity Script

I've seen the productivity script on Lifehacker for both Mac and Windows, so I decided to make a Linux version of it, here it is:

#!/bin/sh
zenity --question --text "Consider if this is really how I need to be spending my time. Continue?" --ok-label=Yes --cancel-label=No

while [ "$?" == "0" ] # while test "$var1" != "end"
do
sleep 12
zenity --question --text "Consider if this is really how I need to be spending my time. Continue?" --ok-label=Yes --cancel-label=No
done


Make sure you make it executable.

I hope you enjoy it.