All Projects β†’ Naereen β†’ uLogMe

Naereen / uLogMe

Licence: MIT license
πŸ“Š πŸ“ˆ Automatically collect and visualize usage statistics on Ubuntu, with 🎹 key frequencies and πŸ’» window titles β†’

Projects that are alternatives of or similar to uLogMe

d3-brush-multiple
This is an implementation of multiple brushes in D3js version 4.
Stars: ✭ 17 (-72.13%)
Mutual labels:  d3js
rfvis
A tool for visualizing the structure and performance of Random Forests 🌳
Stars: ✭ 20 (-67.21%)
Mutual labels:  d3js
Twitter-Sentiment-Analyzer
Twitter Sentiment Analyzer
Stars: ✭ 13 (-78.69%)
Mutual labels:  d3js
tw-family-names
ε°η£ε§“ζ°εˆ†δ½ˆεœ°εœ– Taiwan Family Name Map
Stars: ✭ 36 (-40.98%)
Mutual labels:  d3js
modest canvas
Some useful chart modules with d3js
Stars: ✭ 18 (-70.49%)
Mutual labels:  d3js
awesome-biomarkers
Curated List of Biomarkers, Blood Tests, and Blood Tracking
Stars: ✭ 214 (+250.82%)
Mutual labels:  quantified-self
weltschmerz
Weltschmerz by age - "I am X years old and... [Google autocomplete]"
Stars: ✭ 23 (-62.3%)
Mutual labels:  d3js
ADios
ADBlocker - Block ADS on Twitch, Spotify and EVERYWHERE via the HOST File, PI-Hole, Adblocker Add-on, DNSMasq, Response Policy Zone and Adguard Services. - ADios ADS !
Stars: ✭ 73 (+19.67%)
Mutual labels:  spyware
family-tree
Family tree made with neo4j
Stars: ✭ 35 (-42.62%)
Mutual labels:  d3js
ESP-Bug
ESP8266 based WiFi implant to remotely track the presence of certain people or devices via a simple web interface
Stars: ✭ 78 (+27.87%)
Mutual labels:  spyware
Making-elegant-Matlab-figures
A repository comprising multiple functions for making elegant publication-quality figures in MATLAB
Stars: ✭ 44 (-27.87%)
Mutual labels:  pretty
d3js-neo4j-example
Some of D3.js v5 example pages visualize the result from Neo4j
Stars: ✭ 37 (-39.34%)
Mutual labels:  d3js
d3-radial-axis
A radial implementation of the D3 axis component
Stars: ✭ 23 (-62.3%)
Mutual labels:  d3js
qs mind map
Mind Map of Quantified Self and Self-Tracking Tech Space
Stars: ✭ 23 (-62.3%)
Mutual labels:  quantified-self
benchmarkjs-pretty
Tiny wrapper around benchmarkjs with a nicer api
Stars: ✭ 20 (-67.21%)
Mutual labels:  pretty
zenobase-cardio
No description or website provided.
Stars: ✭ 13 (-78.69%)
Mutual labels:  quantified-self
TimeSeriesMaker
Simple app to generate hand-drawn time series
Stars: ✭ 35 (-42.62%)
Mutual labels:  d3js
The-MALWARE-Repo
A repository full of malware samples.
Stars: ✭ 380 (+522.95%)
Mutual labels:  spyware
paper-terminal
Print Markdown to a paper in your terminal
Stars: ✭ 33 (-45.9%)
Mutual labels:  pretty
d3-fdg-svelte
d3 Force Directed Graph example (d3-force) implemented in sveltejs. REPL:
Stars: ✭ 31 (-49.18%)
Mutual labels:  d3js

uLogMe

How productive were you today? How much code have you written? Where did your time go?

Keep track of your computer activity throughout the day: visualize your active window titles and the number and frequency of keystrokes, in beautiful and responsive HTML timelines.

Current features:

  • Records your active window title throughout the day
  • Records the frequency of key presses throughout the day (but not the actual key: no security threat)
  • Record custom note annotations for particular times of day, or for day in general
  • Everything runs completely locally: none of your data is uploaded anywhere
  • Beautiful, customizable UI in HTML/CSS/JS (using d3js).

The project currently only works on Ubuntu or Debian-like Linux (for an OSX version, see the original project). It uses the new fancy Promises feature of ECMAScript 6. This might not be implemented in all browsers, but recent one should have it (recent Chrome and Firefox are fine, at least).

Other self-quantified projects? I've been using cloud-based WakaTime.com since 2015 (see blog post, and locally-hosted ActivityWatch since 2021, but still use uLogMe everyday.

Screenshots

"Daily view" page

Demo - Daily view

"Overview" page

Demo - Overview Demo - Overview

Demo (by @karpathy)

See a blog post (along with multiple screenshots) describing the project here.


Getting started

To install uLogMe

  1. Clone the repository to some folder: $ git clone https://github.com/Naereen/uLogMe.git
  2. If you're on Ubuntu, make sure you have the dependencies: the xdotool xinput wmctrl xprintidle packages are required (to install them: $ sudo apt-get install xdotool xinput wmctrl xprintidle). On other Linux distribution, install them also, and you may also need gnome-screensaver ($ sudo PACKAGEMANAGER install gnome-screensaver where PACKAGEMANAGER=pacman on ArchLinux, PACKAGEMANAGER=yum on Fedora, etc).
# maybe do that, or wherever you want
cd ~/.local/

# ONLY the first time do that to install the project
git clone https://github.com/Naereen/uLogMe.git

# and ONLY ONCE run this to install the dependencies
sudo apt install xdotool xinput wmctrl xprintidle
# or use 'pacman' on ArchLinux or 'yum' on Fedora or 'brew' or a similar tool on Mac OS X

To start recording

  1. cd uLogMe/scripts inside the directory and run $ ./ulogme_data.sh. This will launch two scripts.
    • The first one, keyfreq.sh, records the frequency of keystrokes,
    • and the other one,logactivewin, records active window titles.
    • Both write their logs into log files in the logs/ directory. Every log file is very simple: just the Unix time stamp followed by data, one per line (plain text file).
    • We tried to be smart and only logging the useful data.
cd ~/.local/uLogMe/  # or wherever you installed uLogme
cd scripts/
./ulogme_data.sh   # starts collecting data !

The user interface

  1. Important. As a one-time setup, copy over the example settings file to your own copy: $ cp render/js/render_settings_example.js render/js/render_settings.js to create your own render_settings.js settings file. In this file modify everything to your own preferences. Follow the provided example to specify title mappings: A raw window title comes in, and we match it against regular expressions to determine what type of activity it is. For example, the code would convert "Google Chrome - some cool website" into just "Chrome", or "GitHub - Mozilla Firefox" into just "GitHub". Follow the provided example and read the comments for all settings in the file.
  2. Once that is set up, start the web server viewer: $ python ulogme_serve.py, and go to the provided address (by default, it is https://localhost:8443) in your browser. Hit the refresh button on top right every time you would like to refresh the results based on most recently recorded activity (it erases cache). You can also use a convenience file ulogme_serve.sh to do both: start the server, and open the web-page.
  3. If your data is not loading, try to explicitly run $ python export_events.py and then hit refresh. This could only be an issue the very first time you run uLogMe.
cd uLogMe/  # or wherever you installed uLogMe
# only once, create your own setting file
cp render/js/render_settings_example.js render/js/render_settings.js
# then launch the visualization server
cd scripts/
python ulogme_serve.py
# Open the page with Firefox, or use 'open' or 'xdg-open' or 'chromium-browser' or any recent browser
firefox https://localhost:8443/
# if needed
python exports_events.py

Bonus with tmux

Bonus: If you are using tmux

  1. The script ulogme_tmux.sh can be used to create a new tab in your current tmux session, name it "uLogMe", split it in half vertically, and then it starts the user interface script in the left column, and the data recording in the right column. Very convenient!

Hum... What is tmux?

  1. The best terminal multiplexer. Just go discover more by yourself (by @tmux).

User Interface

The user interface can switch between a single day view and an overview view by link on top. You have to hit the refresh button every time you'd like to pull in new data (and not your browser's refresh, Ctrl-R or F5, as it reads the cache by default).

Single day page

  • You can enter a reminder "blog" on top if you'd like to summarize the day for yourself or enter other memos.
  • Click on any bar in the barcode view to enter a custom (short) note snippet for the time when the selected activity began. I use this to mark meetings, track my coffee/food intake, sleep time, or my total time spent running/swimming/gym or to leave notes for certain patterns of activity, etc. These could all later be correlated with various measures of productivity, in future.
  • Note: every chart title has a permanent anchor linked to it.

Overview page

  • You can click the window titles to toggle them on and off from the visualization.
  • Clicking on the vertical bars takes you to the full statistics for that day.

Keyboard shortcuts

  • On both pages, r reloads the data (like clicking the reload ⟲ button).
  • On the single day page, left or p goes to the previous day, right or r goes to the next day.
  • Go to overview page with o and to the single day page (to the more recent day) with s or i.

Interactive demo

Demo - Interactive GIF


Security concerns ?

Your private data should be safe with uLogMe:

  • Your data don't leave your computer! (you can read the code in details to check it).
  • Only the number of keys hit is logged, not the details of which keys were hit (during time windows of 10 seconds).
  • You can safely delete any data, any time (see below), without risking to break the program.
  • For the window titles, warning by default every title is logged. You can add more checks in the logactivewin.sh script (XXX customize here...). Right now, the title is not logged if it contains one of these words: privΓ©e, InPrivate, Private, Incognito (it should be enough to remove private browsing windows from Firefox, Chrom{e,ium}, and Internet Explorer).
  • And from now on, the web UI is served by default over a local (untrusted) HTTPS server.

Of course, this is a computer program, written by enthusiast programmers, not security experts: there is bugs, and there might be security problems. But none that we know of at least! Please file an issue if you notice a potential security threats !

How can I clean my data ?

  • Simply delete the logs/ folder to completely remove your old data.
  • You can aslo delete the log file for just one day if you want (e.g., if you are ashamed of a very non-productive day haha!).

πŸ› Known issues

  • You may see "The port 8443 was already used" error if you try to run python ulogme_serve.py. This may be because the port is being used by another program. You can use the optional argument to specify a different port, for example $ python ulogme_serve.py 8444 and then go to https://localhost:8444/ instead, (for example).
  • Overview page is blank. Are you sure your browser supports ECMAScript 6 ? You can check it with these tools: ES6 checker or Compat-Table ES6. Any recent browser should be fine (Chrome and Firefox, at least).

Explanations on the architecture

  • The Ubuntu and OSX code base are a little separate on the data collection side (note: I am NOT keeping the OSX code in my fork, cf. the original project).
  • However, they each just record very simple log files in /logs.
  • Once the log files are written, export_events.py takes the log files, does some simple processing and writes the results into JSOn files (.json) in /render/json.
  • The HTML templates for the UI lives in /render. It uses jQuery.Ajax to read the JSON files, and then d3js for the plots and charts.
  • The Javascript scripts (requirements, library and utility functions) lives in /render/js. The dependencies are included minimized, everything is Β© of their original authors.
  • The CSS style sheets for the UI lives in /render/css. It's very basic CSS formatting.
  • There is also two SVG files (for some badges) in /render/svg, and a small Pikachu favicon! Why Pikachu? ALWAYS PIKACHU!. Pikachu (and other PokΓ©mons) should also be used for the icon for the desktop notifications sent when refreshing... Useless but funny right?! Here is a demo:

Demo - desktop notifications when refreshing

Ubuntu (or any Debian-like Linux)

uLogMe has three main parts:

  1. Recording scripts keyfreq.sh and logactivewin.sh. You probably will not touch these.
  2. Webserver: ulogme_serve.py which wraps Python's SimpleHTTPServer and does some basic communication with the UI. For example, the UI can ask the server to write a note to a log file, or for a refresh. ulogme_serve.sh helps to launch the Python web server more easily.
  3. The UI. Majority of the codebase is here, reading the .json files in /render and creating the visualizations. There are several common .js files, and crucially the index.html and overview.html files, that are simple HTML template (with a lot of Javascript in the beginning). Feel free to adapt them to your preferences. I expect that most people might be able to contribute here to add features/cleanup/bugfix.
  4. Bonus: the ulogme_tmux.sh script, if you are using tmux.

An example of the output displayed by the two parts of the "server" side (data recording and HTTP server), in two horizontal panes in tmux: Demo - colored logs

Yes, the logs are colored, from both shell and python scripts, using color.sh for bash and ansicolortags for Python.

OSX code

Not in my fork, refer to the original project


Related projects ?

  • selfspy: log everything you do on the computer, for statistics, future reference and all-around fun. I also worked a little bit on selfspy-vis, some tools to visualize the data collected by selfspy.
  • My minimalist dashboard, generated every hour (with a crontab file), with this bash script GenerateStatsMarkdown.sh.

For more projects, this question on Personal Productivity Stack Exchange might be also worth a look.

πŸ“œ License ? GitHub license

MIT Licensed (file LICENSE).

Β© 2014-2016 Andrej Karpathy and GitHub collaborators, and Β© 2016-2018 Lilian Besson and GitHub collaborators.

Maintenance Ask Me Anything ! Analytics

ForTheBadge uses-badges ForTheBadge uses-git

Contains-PokΓ©mon : contains-Bulbasaur contains-Charmander contains-Dratini contains-pikachu contains-Snorlax contains-Squirtle

ForTheBadge uses-css ForTheBadge uses-html ForTheBadge uses-js

ForTheBadge built-with-love

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].