Skip to content

Instantly share code, notes, and snippets.

@mghignet
Created January 1, 2020 20:55
Show Gist options
  • Select an option

  • Save mghignet/0560b09e0adf2e027dec006bc09489d6 to your computer and use it in GitHub Desktop.

Select an option

Save mghignet/0560b09e0adf2e027dec006bc09489d6 to your computer and use it in GitHub Desktop.
All scripts that can be useful to get the most out of Tiime
// Get the total number of kilometers for a year (in case the amount has been reinitialized)
// Run that in the Chrome console
Array.from(document.querySelectorAll(".table tr.ng-scope"))
.filter(row => row.querySelector("td:nth-of-type(1)").textContent.endsWith("2019"))
.map(row2019 => Number(row2019.querySelector("td:nth-of-type(3)").textContent))
.reduce((a, b) => a + b, 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment