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
- howm
Андрей Суховский | Substack
- Substack - qnnnp
- Andrei Sukhovskii
- 2025
- 개인
qnnnp | Андрей Суховский | Substack
- 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
-
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:
- 20년 이상의 역사를 가진 오래된 패키지입니다.
- 단순하고 우아한 노트 작성 솔루션을 제공합니다.
- 링크를 검색 트리거로 사용합니다.
- 메뉴와 요약 버퍼를 통해 노트에 접근할 수 있습니다.
- 일정 관리와 할 일 목록 기능을 제공합니다.
- 다양한 파일 형식을 지원합니다.
Denote:
- 최근에 개발된 비교적 새로운 패키지입니다.
- 예측 가능하고 설명적인 파일 명명 규칙에 중점을 둡니다.
- 노트뿐만 아니라 모든 유형의 파일에 사용할 수 있습니다.
- Org 모드에 의존하지 않고 다양한 파일 형식을 지원합니다.
- 특정 노트 작성 방법론을 강요하지 않습니다.
- 외부 데이터베이스 없이 작동합니다.
주요 차이점:
- 접근 방식: howm은 링크와 검색에 중점을 두는 반면, Denote는 파일 명명 규칙에 중점을 둡니다.
- 기능 범위: howm은 일정 관리 기능을 포함하지만, Denote는 순수한 노트 작성에 집중합니다.
- 설계 철학: Denote는 예측 가능성, 구성 가능성, 유연성을 핵심 원칙으로 삼고 있습니다.
- 사용 편의성: howm은 오랜 기간 동안 개선되어 왔지만, Denote는 현대적이고 단순한 접근 방식을 제공합니다.
두 도구 모두 Emacs에서 효과적인 노트 작성을 지원하지만, 사용자의 선호도와 필요에 따라 선택할 수 있습니다.
- Citations: [1] https://github.com/kaorahi/howm [2] https://whhone.com/posts/denote-vs-org-roam/ [3] https://johnrakestraw.com/post/taking-note-in-emacs-a-move-to-denote/ [4] https://opensource.com/article/18/7/emacs-modes-note-taking [5] https://github.com/protesilaos/denote [6] https://blog.breadncup.com/ko/2009/01/25/emacs-org-mode-a-system-for-note-taking-and-project-planning/ [7] https://baty.blog/2024/03/the-emacs-howm-package-for-notes [8] https://lucidmanager.org/productivity/taking-notes-with-emacs-denote/ [9] https://leahneukirchen.org/blog/archive/2022/03/note-taking-in-emacs-with-howm.html [10] https://www.youtube.com/watch?v=mLzFJcLpDFI [11] https://forum.zettelkasten.de/discussion/2767/note-taking-on-emacs-with-howm-package [12] https://protesilaos.com/codelog/2022-06-07-denote-introduction/ [13] https://www.youtube.com/watch?v=eSmTN5jynvg [14] https://elpa.gnu.org/packages/doc/denote.html [15] https://kaorahi.github.io/howm/ [16] https://forum.systemcrafters.net/t/note-taking-brainstorming/392 [17] https://protesilaos.com/emacs/denote
@user
Comments