Live data from Hacker News

Selfspy - Tool for Personal Data Analytics

github.com

21–28 of 28 posts

Re: Selfspy - Tool for Personal Data Analytics

#21

I recently wrote a similar utility. I'll definitively take a closer look at this. I don't know if you have these features, but here's couple of features I have in mine that you might find useful: 1) I can upload a timeline into Google calendar. I do this by chunking my day into half-hour increments, and whatever I spent the most time on in that half-hour get assigned to the half-hour. (Hey, Google, please let me set…

[deleted]

Re: Selfspy - Tool for Personal Data Analytics

#24
post #16

I've been using * Karm on KDE/Linux (tracking by virtual desktop, one for each project) * Manic Time Tracker on Windows (very much like this but with a full GUI. Only works on Windows though) * For emergencies on Windows there is also Timesnapper which in facts documents in screenshots what happened (in case you have to "prove" it .) this utility seems like a real improvement on the current situation though. Thanks i…

I'm using Timesnapper and it's great. Not only it keeps screenshots for everything, but you can also filter by application while searching for an old website you saw or data that you forgot to save. It needs a lot of storage though. In 50GB you can keep 2-3 months of screenshots.

Re: Selfspy - Tool for Personal Data Analytics

#25
post #23

Here is a fork by github user ljos that includes OSX support: https://github.com/ljos/selfspy I am actively using it, and it seems to be pretty much like the original linux version.

Actually, now I've forked this myself to streamline the installation process:

  git clone git://github.com/iandennismiller/selfspy.git
  cd selfspy && make requirements && sudo make install

Re: Selfspy - Tool for Personal Data Analytics

#26
post #25
post #23

Here is a fork by github user ljos that includes OSX support: https://github.com/ljos/selfspy I am actively using it, and it seems to be pretty much like the original linux version.

Actually, now I've forked this myself to streamline the installation process: git clone git://github.com/iandennismiller/selfspy.git cd selfspy && make requirements && sudo make install

I keep getting stuck at:

Traceback (most recent call last): File "/usr/bin/selfspy", line 19, in from activity_store import ActivityStore File "/private/var/lib/selfspy/activity_store.py", line 9, in import sniff_cocoa File "/private/var/lib/selfspy/sniff_cocoa.py", line 1, in from Foundation import NSObject, NSLog ImportError: No module named Foundation

Re: Selfspy - Tool for Personal Data Analytics

#27
post #26
post #25

Earlier quoted context omitted.

Actually, now I've forked this myself to streamline the installation process: git clone git://github.com/iandennismiller/selfspy.git cd selfspy && make requirements && sudo make install

I keep getting stuck at: Traceback (most recent call last): File "/usr/bin/selfspy", line 19, in from activity_store import ActivityStore File "/private/var/lib/selfspy/activity_store.py", line 9, in import sniff_cocoa File "/private/var/lib/selfspy/sniff_cocoa.py", line 1, in from Foundation import NSObject, NSLog ImportError: No module named Foundation

I think Foundation provided by pyobjc. I suppose it's possibly you don't have a suitable version installed in site-packages, in which case you might try running the following command globally (i.e. outside the virtual environment):

  sudo pip install pyobjc
Post reply on HN