up vote 47 down vote favorite
35
share [g+] share [fb]

I had about 7 employes until today and everyone had another kind of timesheet/timereporting.

How do you track your time at your current workplace, or if your a freelancer, how do you keep track of your time?

link|improve this question
show 1 more comment
feedback

closed as off topic by Bill the Lizard Feb 15 '11 at 15:39

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

53 Answers

1 2
up vote 34 down vote accepted

I have a ruby script that appends a line with timestamp and all commandline arguments to a text file. Then I have an alias from "I" to this script, such that I can just type on the command line...

% I start working
0d 14:06'11"
% I have read mail
0d 00:27'45"
% I answered a question on stackoverflow
0d 00:11'32"
%

...and all that is recorded in a text file with timestamps.

Other scripts later use that text file to generate work reports, or just tag clouds of what I have done during the last weeks or months.

require 'date'
File.open('time.txt', 'a') do |f|
  f.puts "#{DateTime.now.strftime("%Y/%m/%d\t%H:%M:%S\t")}#{$*.join(' ')}"
end unless $*.empty?
back = DateTime.new
now = DateTime.new
File.open('time.txt') do |f|
  f.each do |line|
    unless line.strip.empty? then
      back = now
      now = DateTime.strptime(line,"%Y/%m/%d\t%H:%M:%S\t") 
    end  
  end
end
if $*.empty? then
  back = now
  now = DateTime.now.new_offset(of=0) + DateTime.now.offset # fix timezone!
end
diff = (now - back)
puts "#{diff.to_i}d #{(DateTime.new + (diff - diff.to_i)).strftime("%H:%M'%S\"")}"
link|improve this answer
show 4 more comments
feedback

Since I am an independent contractor, accurately measuring my time is very important.

I wrote a utility that sits in the taskbar and records the process name and window caption of the active window every second of the day. If the keyboard or mouse was touched during that second then the time is considered active versus idle. Every 15 minutes this information is summarized and written to an SQLite database. At the end of the day I can view that data in a timeline and use a Bayesian filter to classify each unique process/window into one of three buckets: work, play, other. From there I estimate my hours based on some predefined thresholds that I've worked out over time.

I have tried professional software but the combination of automated recording and classification of active windows is by far the easiest approach to accurate time tracking!

One of these days I'll have to open source it...

link|improve this answer
3  
....wow....yeah, please do....I was thinking of doing something like this myself, but you took it to a whole new level :) – Adrian Mester Jun 25 '09 at 9:25
1  
I have since discovered manictime.com which is similar but much more polished. Unfortunately it doesn't have Bayesian classification so I haven't switched over myself... – Nathan Baulch Apr 8 '10 at 3:17
show 5 more comments
feedback

I like to use TimeSnapper in order to track my time. It also provides a way of reconstructing everything I have done, as it is based on periodically taken screenshots.

The actual timesheet is then constructed by using the data from TimeSnapper and categorizing the worked-on items as appropriate in an excel spreadsheet.

link|improve this answer
show 1 more comment
feedback

We use Redmine - you can just add the spent time directly to a ticket. Actually a web-based tracker is the best solution if you work on different computers.

Maybe one of the tools here can help too.

link|improve this answer
feedback

FogCreek's FogBugz has really nicely integrated time tracking; you just need to remember to use the "working on..." pulldown.

It'll use the timesheets to give you some fascinating feedback on the accuracy of your original estimates, and feeds them into statistical projections of project completion dates too.

link|improve this answer
show 2 more comments
feedback

I come in, I work the hours (+ a few more if I'm on a roll), I go home. My boss trusts me to get the work done.

(I am fortunate enough to work in an environment where that is okay behaviour, I realise that this isn't an option for many people)

In the past when I have done billable work, I had some nifty time-reporting software on a Palm Pilot that you could reach across and touch to start/stop/select task - i.e., far less intrusive than having to fill out a spreadsheet as you went.

link|improve this answer
show 3 more comments
feedback

Try http://projecthamster.wordpress.com/, if you only need something small, something for yourself only.

link|improve this answer
feedback

I track my time by remembering what I have done each day, my out look callender seems to tell me what I was supposed to be doing, so I use that as a basis for it.

link|improve this answer
1  
That's exactly what I do! Although I've got the feeling I would get a more precise picture, if I did it in a more "dedicated" fashion. – Martin Bøgelund Oct 2 '08 at 11:02
feedback

I use a Google Spredsheet which lets me add start and end time. It then sums up per project. I need to know how much I work on each project, so it is as simple as possible.

link|improve this answer
feedback

I remember in my previous office they had a crappy web-based time management system in place. I had an account on it, and someone, probably one who managed that application, added all my currently assigned projects to it, so when I accessed the application to add my time at the end of a day, I would have sections for each project I was working on. Of course, I had to manually add, say, five hours for this project, and two for this, and so on and so forth. I really did not see what actual purpose that served, and even though the technically-sound managers failed to see any actual benefit of the system, they still requested people under them to fill up the time sheet.

In my current job, there is no time management. One reason may be that unlike my previous workplace, this one is considerably small. But, most of all, we trust each other to do the stuff. We maintain centralised and per-client TODO lists and message boards, where we discuss stuff and post timelines, and tasks, and mark them off. All in all, that gives a good overview of what is happening and what is not.

link|improve this answer
show 2 more comments
feedback

SlimTimer is a low friction time tracker and is my current tool of choice.

link|improve this answer
show 1 more comment
feedback

I've used 'harvest' before (www.getharvest.com) - it's not too bad since it works from a widget. With a bit of effort, in a week or two you can get into the habit of clicking what project you are on (it tracks the hours for you).

I have seen some spurious time-tracking systems at companies, if people's hearts aren't in it (i.e. writing proper time-sheets), the data in them is pretty much fictional. I don't know if operational managers realise this, if you force someone to do time sheets without doing two things; 1) explaining why, and 2) leading by example - you will get rubbish data. People will just back-track and make up whatever to fill in their time.

As a project manager, what I would like to do is this - fill out my programmer's time-sheets for them on a weekly basis. And I think this would be possible using a program like timesnapper. If I get the chance, I will be trying this out at the next company I work at.

link|improve this answer
feedback

If your people are just working on 1 project, have them use Excel. We use that and it works great.

link|improve this answer
feedback

I use Rachota as a task timer, then copy the results to a spreadsheet.

Pros:

  • Free
  • Easy to track time by tasks (with start/pause button)
  • Desktop client that runs on all OS's (I run mine on Windows)

Cons:

  • I can't correct the times in Rachota (e.g. if I go to the bathroom and forget to stop the timer), but when I copy values to the spreadsheet I'll tweak them a bit.

I looked through the solutions so far (52 of them) and I personally didn't see anything I'd prefer to use. I don't want an online tool, anything that costs money, and tools that automatically track application time don't seem that useful to me. I'm not saying that my way is best... do what works for you!

link|improve this answer
feedback

We have an in office built solution that all projects are created on and all employees write down their time and describe what was done.

link|improve this answer
show 1 more comment
feedback

I use Eclipse a lot, and when I activate and deactivate tasks in Mylyn (an Eclipse plugin), the start and stop time along with the Task ID is recorded in an xml file. So for me that is one good source of timekeeping data, which can be imported to our time tracking system.

link|improve this answer
feedback

I described how I track (and schedule) my time in another question: http://stackoverflow.com/questions/37139/how-do-you-maintain-a-project-schedule#128578

link|improve this answer
feedback

We use a site called Taskdirector.com which was actually built by a previous intern at the company. It has a pretty simple interface to assign projects to people and the user can select from the dropdown list of tasks assigned to them and then just manually put in how much time they worked on it. It's quite simple. I guess its not the most accurate method though...

link|improve this answer
feedback

This isn't so important in my current job, but my previous job I was building websites and needed to track time, there's a really good time tracker for Google Desktop, called Time Tracker I think... (imagine that). Me and the rest of my co-workers absolutely loved it. Then at the end of the day, we'd jump into netsuite, or whatever our time entry program of choice was at the time, and enter our time.

link|improve this answer
feedback

If you use Eclipse, Mylyn will automatically track the time you spend working on tasks from your team's bug/issue tracker. With the free Tasktop Starter, a dashboard shows you exactly what you've been working on so you can enter it into your team's time tracking system. Tasktop Pro adds functionality for reporting over arbitrary time periods and task categories.

Mylyn: http://www.eclipse.org/mylyn/

Tasktop: http://tasktop.com/

link|improve this answer
feedback

Replicon has a web timesheet that where I work uses. It is OK for giving a matrix-like entry of hours while there is also a weekly e-mail of tasks to provide that kind of perspective on how us developers are doing.

link|improve this answer
feedback

Slife is a fantastic tool that tracks your usage on your pc based on the application that your using. It can also log how much time you err 'waste' of sites such as SO. There are OS X and Win versions available.

link|improve this answer
feedback

I've been using [ManicTime][1] to do part of the work. It tracks what window you're in, the window title etc. So at the end of the day (or a week later), you have enough information to be able to reconstruct a reasonable picture of what you were doing.

I hate tracking time at the time and always end up fudging the figures one way or another. And this seems to make the process a bit less painful, even though it doesn't seem intended for this purpose at all.

[1]: http://www.manictime.com/ ManicTime

link|improve this answer
feedback

i use rescue-time i love it mainly because its desktop client :)

link|improve this answer
feedback

I've created an application, which allows me to define some projects and I can enter the tasks in there. The application creates an XML-File out of this stuff and I can use it to create the bills or import this into another system.

Read more about this tool

link|improve this answer
feedback

I allocate a page in my notebook (the paper kind) for a single day and list down all the things that I need to do for that day. I mark off items as they are done and list down the number of hours I spent working on it. I tally them at the end of the day.

I have another page that summarized what happened that week including the daily figures.

I then type in the figures on my employer's intranet based timesheet app.

link|improve this answer
feedback

At work we used to use a truly horrific Excel spreadsheet for this. In the end I got so tired of it I developed a quick web app for this written in PHP with a MySQL backend. It doesn't look wonderful but is easy to use. Best of all I control the data and can extract it in any way I wish. Every year the data is exported into a CSV file and sent to my main Manager who can import it into his Excel spreadsheet. Not exactly the most efficient solution but it does the job.

link|improve this answer
feedback

I use an Excel workbook with one worksheet per day. I generally updating it every few hours or if I'm very busy, the next day.

It's infinitely flexible if hard to data mine. It includes unique project numbers, location and work description etc. and a Y/N chargable column. I use formulas to total client time based on project numbers and the chargable column.

It's a real boon at the end of a month, I can look at four weekly workbooks and total up the hours for a client, and summarise the work that was undertaken.

I've been meaning to create a small application to do this for some time, but Excel is so simple and flexible that, other than automated reporting, I'm not sure it'll be an improvement.

link|improve this answer
feedback

I have been using Timelog for a couple of years, and I am quite satisfied with it. It is a web-based, hosted application. Every day, I fill out a spreadsheet-like page, typing in the hours I have worked in different projects. The project manager keeps track on who's working on what, and bills customers using monthly reports.

link|improve this answer
feedback
1 2

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