Public notes need some love

I stopped publishing notes regularly, and this led to some features stopped working.

Namely, I stopped making every note its own node in my Vulpea notes corpus, and switched to custom property on heading (TEXTPOD_ID). But that broke search for linked terms, when I reference existing Vulpea node, like this - "the flow".

Something to fix, later. May be.

Finding of the day - PEL (Pragmatic Emacs Leverage)

github
pierre-rouleau/pel: Pragmatic Emacs Leverage
index PDF
here
PEL Documentation
224 PDFs as of [2026-09-04 Fri]

There I found built-in timeclock package. Simplified version of Org time tracking.

timeclock

Built-in Emacs package for time tracking.

  • (describe-package 'timeclock)
  • (◊doc 'timeclock)

Maybe I should try it to stay in "the flow"?

  • (identity timeclock-workday) ;; 28800 / 60 / 60 = 8 hours
(use-package timeclock :ensure nil
  :config
  (display-time-mode +1)
  (timeclock-mode-line-display +1)
  (display-time-mode -1))