Skip to content

Instantly share code, notes, and snippets.

@lightdiscord
Created September 11, 2020 07:47
Show Gist options
  • Select an option

  • Save lightdiscord/3e9177b72ec2ed300fa218911a17f338 to your computer and use it in GitHub Desktop.

Select an option

Save lightdiscord/3e9177b72ec2ed300fa218911a17f338 to your computer and use it in GitHub Desktop.
Get total log time on the intra
(() => {
const total = [...document.querySelectorAll("g[data-toggle='tooltip']")]
.map(({ dataset }) => dataset.originalTitle)
.map((title) => {
const [h, m] = title.split("h");
return (+h * 60 + +m)
})
.reduce((a, b) => a + b);
return (`${Math.floor(total / 60)}h${total % 60}`);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment