This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here.

More info: http://stackoverflow.com/faq

What is the best/most productive tools you use for time tracking?

Specifically, I'm looking for time tracking tools that:

  • Allow you to tag/start/stop time sessions quickly and as automatic as possible.
  • Has an efficient organizing feature.
  • Take up the least amount of workspace, preferably desktop-based.

The organizing feature is a big point that's missing in most time tracking systems I've tried. Some lets you start a time session quickly but then you'd have plenties of untagged time sessions which are rather useless. Some do have a lot of organizing features but then you'd have to think up of a name and any related tags for your time session every time you start one.

I'm looking for one with a good blend of the first 2 points.

link|improve this question
Installed TimeSnapper, and signed up for rescuetime... will see if their reputation holds – chakrit Sep 12 '08 at 18:26
feedback

closed as off topic by McDowell, Tim Post Sep 6 '11 at 15:48

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

15 Answers

up vote 7 down vote accepted

I sometimes use rescuetime If you work on multiple computers you can install the app on all of them and it will work seamlessly. You can also configure which are 'productive' websites (eg) and less productive ones(eg)

link|improve this answer
This post pushes me over the 100 rep threshold! Now to whack the down hammer on some rubbish questions :D – Loofer Sep 12 '08 at 15:55
RescueTime is great. The only timetracking app that tracks website usage instead of just web browser usage. – dsims Sep 12 '08 at 16:02
Actually, since it can be made to differentiate based on window title, TimeSnapper can generally be made to track website usage as well. – Shog9 Sep 12 '08 at 16:40
Cool! Just what I need. And the analysis part is just awesome! – chakrit Sep 12 '08 at 19:03
feedback

I have this clock that hangs on my wall... ;-p

Actually, the only one i've managed to use consistently for more than a week is TimeSnapper: because it works by recording the time you spend in specific apps, you don't have to interrupt your work flow to tag and organize, you can go back and do it later.

link|improve this answer
I love TimeSnapper – harriyott Sep 12 '08 at 15:58
1  
Thanks for the positive comments guys. Any suggestions/improvements to TimeSnapper are welcome. We try to improve. It's a struggle in this messed up world, but we try. – Leon Bambrick Oct 3 '08 at 11:34
feedback

I have tried Timesnapper once. It was cool. There is a free Timesnapper Classic version.

link|improve this answer
feedback

I use a simple AutoIt script to save the active .EXE name / window title every minute in a log file. To analyze that information, I use an Excel worksheet that imports the logfile and generate a PivotTable.

If I need to stop tracking, I simply Pause the script from the taskbar.

This way, at the end of the day I can see how many hours I spend in StackOverflow instead of Getting my Things Done :)


Added AutoIt script (better late than never :) )

#include <Process.au3>

$FALSE = 0
$sFile = "ActiveWin.log"

$rStruct = DllStructCreate("uint;dword");
DllStructSetData($rStruct, 1, DllStructGetSize($rStruct));

$nPrevInput = 0

Do
    $nh = FileOpen ($sFile, 1)

    DllCall("user32.dll", "int", "GetLastInputInfo", "ptr", DllStructGetPtr($rStruct))
    $nLastInput = DllStructGetData($rStruct, 2)
    If $nLastInput=$nPrevInput Then
        # no key pressed
        $sProc = "IDLE"
        $sTitle = ""
    Else
        $sTitle = WinGetTitle ("")

        $nPID = WinGetProcess($sTitle, "")
        $sProc = StringUpper(_ProcessGetName($nPID))

        $nPrevInput = $nLastInput
    Endif

    $sLin = @YEAR
    $sLin = $sLin & "/" & @MON
    $sLin = $sLin & "/" & @MDAY
    $sLin = $sLin & " " & @HOUR & ":" & @MIN
    $sLin = $sLin & "|" & $sProc
    $sLin = $sLin & "|" & StringStripWS ( $sTitle, 1 + 2)

    FileWriteLine ($nh, $sLin & @CRLF)

    FileClose ($nh)

    Sleep (60 * 1000)
Until $FALSE
link|improve this answer
StackOverflow sure is comsuming everyone's time is it? – chakrit Sep 12 '08 at 15:51
Could you post the script? – Sam Hasler Sep 12 '08 at 23:01
feedback

I use Elapser, which is a great free, Silverlight application, built by my coworker. You can export the hours into excel or html, which makes it easy to put a timesheet together at the end of the week.

link|improve this answer
feedback

There were some good answers to this on SO# 25707

link|improve this answer
question was removed – tovmeod Jan 4 at 14:14
feedback

I wrote TimeKeeper specifically for this. I use it every day, as do several other people in our company and I find it works extremely well, and it's extremely simple to use.

link|improve this answer
Interesting... Actually, I'm always thinking of writing one of my own but if yours can be opensourced.... well :-) – chakrit May 7 '09 at 13:41
feedback

If your constantly working on multiple projects simultaneously, I would recommend Klok. It's a nice little Adobe Air app that makes it easy to switch between different tasks, and also generates nice little charts and spreadsheets to make it easier to see where your time is going.

link|improve this answer
feedback

Premember. It's a new generation desktop based time tracking tool. It allows you to look back into time because it saves screenshots during the day. So by this means you can easily fill in your hours at the end of the day or week. There is both a free and trial version available @ hesiodsoftware

link|improve this answer
feedback

I use Tempo. It's web-based but can be accessed for data input through email, widget, twitter or iPhone. There's an easy start-stop timer like you mentioned and it does a great job of organizing through different projects. You can check out the link here: http://zetetic.net/c/tempo-forum

link|improve this answer
feedback

1DayLater! time tracking and analysis tool - http://1daylater.com

link|improve this answer
feedback

Another great one is Grindstone - http://www.epiforge.com/Grindstone2/

link|improve this answer
feedback

It sounds like Freckle is a good fit for you. Check it out at http://letsfreckle.com

link|improve this answer
feedback

I would also recommend Freckle. It has the features you are looking for. Check it out.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.