Skip to content

Instantly share code, notes, and snippets.

@kyanny
Created January 17, 2019 12:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyanny/39682b1577120f6789fa7a4a70ee1294 to your computer and use it in GitHub Desktop.
Save kyanny/39682b1577120f6789fa7a4a70ee1294 to your computer and use it in GitHub Desktop.
(let* ((elapsed
(float-time
(time-subtract
(date-to-time "2019-01-17 18:05")
(date-to-time "2019-01-17 13:19"))))
(in_minutes (/ elapsed 60))
(in_hours (/ in_minutes 60))
(remained_minutes (mod in_minutes 60)))
(format "%d hours %d minutes" in_hours remained_minutes))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment