* TODO Update Emacs package count DEADLINE: <2022-11-25 Fri .+1m> A small org file to keep track of some metric in a table, see [[https://orgmode.org/manual/Results-of-Evaluation.html][Results of Evaluation]] in the Org mode manual for more information. In this case, count the number of packages in my Emacs init file. Press =C-c C-c= inside the code block to add a new entry to the table below. #+begin_src elisp :results table append (with-temp-buffer (insert-file-contents user-init-file) (list (format-time-string "%F") (count-matches "(use-package "))) #+end_src #+RESULTS: | 2022-11-25 | 140 |