BIBLIOGRAPHY

Andrei Sukhovskii. 2024a. “A Joker in Zettelkasten.” February 19, 2024. https://qnnnp.medium.com/a-joker-in-zettelkasten-79967d13a025.

———. 2024b. “Substack - Qnnnp.” June 16, 2024. https://qnnnp.substack.com/archive?sort=new.

“Emacs101/Howm-Manual: Note-Taking in Emacs with Howm Package.” 2025. https://github.com/Emacs101/howm-manual.

“Emulating Howm Notes with Denote and Consult - System Crafters.” n.d. Accessed March 7, 2025. https://systemcrafters.net/live-streams/march-7-2025/.

“Howm: Note-Taking Tool on Emacs.” n.d. Accessed May 30, 2024. https://kaorahi.github.io/howm/.

“Leah Blogs: Note Taking in Emacs with Howm.” n.d. Accessed May 30, 2024. https://leahneukirchen.org/blog/archive/2022/03/note-taking-in-emacs-with-howm.html.

Sukhovskii. 2025a. “Андрей Суховский | Substack.” 2025. https://substack.com/@qnnnp/notes.

———. 2025b. “Qnnnp | Андрей Суховский | Substack.” February 24, 2025. https://qnnnp.substack.com/?utm_medium=web.

RelatedNotes

History

  • [2025-03-08 Sat 11:22] howm

Андрей Суховский | Substack

(Sukhovskii 2025a)

  • Substack - qnnnp
  • Andrei Sukhovskii
  • 2025
  • 개인

qnnnp | Андрей Суховский | Substack

(Sukhovskii 2025b)

  • Sukhovskii
  • quod non nōvit, non prōficit. Click to read qnnnp, by Андрей Суховский, a Substack publication with hundreds of subscribers.
  • 2025

A Joker in Zettelkasten

  • (Andrei Sukhovskii 2024a)
  • In Niklas Luhmann’s slip box, in one chain of his thoughts, there is an interesting observation about the nature of Zettelkasten (It is the…
  • 2024

Substack - qnnnp

(Andrei Sukhovskii 2024b)

  • Andrei Sukhovskii

  • Full archive of all the posts from qnnnp.

  • 2024

Emacs101/howm-manual: Note-taking in Emacs with howm package

(“Emacs101/Howm-Manual: Note-Taking in Emacs with Howm Package” 2025)

howm: note-taking tool on Emacs

(“Howm: Note-Taking Tool on Emacs” n.d.)

Emulating Howm Notes with Denote and Consult - System Crafters

(“Emulating Howm Notes with Denote and Consult - System Crafters” n.d.)

Emulating Howm with Denote and Consult What will we be trying to replicate?

  • Searching for notes in most-recent-edit order
  • Searching for notes from today, yesterday, specific date
  • Following search query links
(consult-denote-mode 1)
 
(let ((tab (make-hash-table :test 'equal)))
  (puthash "Foo" "foo.org" tab)
  (gethash (completing-read "Yes: "  tab) tab))
 
(defun denote-howmish-find-file ()
  (declare (interactive-only t))
  (interactive)
  (let* ((sorted-files (sort (mapcar (lambda (file)
                                       (cons (file-attribute-modification-time
                                              (file-attributes file))
                                             file))
                                     (denote-directory-files))
                             (lambda (left right)
                               (not
                                (time-less-p (car left)
                                             (car right))))))
         (table (make-hash-table :test 'equal))
         (options
          (mapcar (lambda (file)
                    (puthash (denote-retrieve-title-or-filename (cdr file) 'org)
                             (cdr file)
                             table))
                  sorted-files))
         (result
          (consult--read table
                         :prompt "Note: "
                         :sort nil
                         :require-match t
                         :add-history (thing-at-point 'filename)
                         :state (consult--file-preview)
                         :category 'file
                         :history '(:input consult--find-history))))
    (when result
      (find-file (gethash result table)))))

leah blogs: Note taking in Emacs with howm

(“Leah Blogs: Note Taking in Emacs with Howm” n.d.)

2025-03-08 W09

@user howm: note-taking tool on Emacs에 대해서 알려줘. 그리고 Denote와 어떤 점에서 차이가 있는지 궁금해

@assistant howm과 Denote는 모두 Emacs에서 사용할 수 있는 노트 작성 도구입니다. 두 도구의 주요 특징과 차이점은 다음과 같습니다:

howm:

  1. 20년 이상의 역사를 가진 오래된 패키지입니다.
  2. 단순하고 우아한 노트 작성 솔루션을 제공합니다.
  3. 링크를 검색 트리거로 사용합니다.
  4. 메뉴와 요약 버퍼를 통해 노트에 접근할 수 있습니다.
  5. 일정 관리와 할 일 목록 기능을 제공합니다.
  6. 다양한 파일 형식을 지원합니다.

Denote:

  1. 최근에 개발된 비교적 새로운 패키지입니다.
  2. 예측 가능하고 설명적인 파일 명명 규칙에 중점을 둡니다.
  3. 노트뿐만 아니라 모든 유형의 파일에 사용할 수 있습니다.
  4. Org 모드에 의존하지 않고 다양한 파일 형식을 지원합니다.
  5. 특정 노트 작성 방법론을 강요하지 않습니다.
  6. 외부 데이터베이스 없이 작동합니다.

주요 차이점:

  1. 접근 방식: howm은 링크와 검색에 중점을 두는 반면, Denote는 파일 명명 규칙에 중점을 둡니다.
  2. 기능 범위: howm은 일정 관리 기능을 포함하지만, Denote는 순수한 노트 작성에 집중합니다.
  3. 설계 철학: Denote는 예측 가능성, 구성 가능성, 유연성을 핵심 원칙으로 삼고 있습니다.
  4. 사용 편의성: howm은 오랜 기간 동안 개선되어 왔지만, Denote는 현대적이고 단순한 접근 방식을 제공합니다.

두 도구 모두 Emacs에서 효과적인 노트 작성을 지원하지만, 사용자의 선호도와 필요에 따라 선택할 수 있습니다.

@user