diff --git a/feed.xml b/feed.xml index e4ac5eb..b949ba8 100644 --- a/feed.xml +++ b/feed.xml @@ -17,8 +17,8 @@ https://judah.freedomland.xyz// en - Thu, 21 Dec 2023 00:00:00 -0500 - Thu, 21 Dec 2023 20:05:56 -0500 + Fri, 22 Dec 2023 00:00:00 -0500 + Sun, 24 Dec 2023 02:30:24 -0500 weblorg 0.1.0 (https://emacs.love/weblorg) Judah Sotomayor @@ -28,6 +28,243 @@ + + Reflections on a year of Zettelkasten: Tooling + https://judah.freedomland.xyz//posts/reflections-on-a-year-of-zettelkasten-tooling.html + author@mail.com (Blog Author) + https://judah.freedomland.xyz//posts/reflections-on-a-year-of-zettelkasten-tooling.html + + Fri, 22 Dec 2023 00:00:00 -0500 + + +Back in 2021 I began a zettelkasten using guides from zettelkasten.de. +It has grown to over 723 notes in less than two full years. +

+ +

+nil +

+ +

+I'll cover this topic in several posts. +This first post will discuss the tools I've used to grow and maintain my second brain. +

+ + +

+I have shifted between note-taking systems multiple times between now and the genesis of my Zettelkasten. +Different strengths and weaknesses have left me uncomfortable in every system, up until the last: Emacs. +Before I get to that, I'll cover the pieces of the system, what's changed, and what hasn't. +

+ + + +
+

Text editing

+
+
+
+

Vimwiki

+
+

+The first version was the amazing vimwiki, a system simple and elegant. +It provided most of the features needed for a zettelkasten, and supported standard markdown. +During this period I grew comfortable with Vim, which I consider the premier editing experience. +

+ +

+I began to use Taskwarrior, an amazing command-line task management tool. +Taskwiki is another amazing vim extension that maps tasks between vimwiki and taskwarrior, allowing you to create "viewports" with various Taskwarrior filters. +The combination of Vimwiki and Taskwarrior is exceptionally comfortable, and taught me my first important lesson: tasks and data are inseparable. +It is impossible to provide sufficient information to do a task if that task is separated from its context, its data and metadata. +

+ +

+Eventually I grew tired of the limitations of editing text in a terminal. +Vim doesn't support graphical things very well, and I wanted to view images inside my notes. +While various extensions solve this problem, and adjacent problems, I had at this time noticed dendron. +

+
+
+ +
+

Dendron

+
+

+Dendron features a mixed hierarchical/networked note setup, which (according to the creators) scales well with heavy use. +While I still have not reached the ~10k note count that the authors asserted Dendron would survive, the structure appealed to me because at the time I was working with several sorts of knowledge that a hierarchy represents well–things like programming language concepts in multiple languages. +Dendron also features a note-graph, which represents both the hierarchy of notes and the links between notes. +This feature was most attractive to me, as inside Vim I was having trouble visualizing my entire zettelkasten. +

+ +

+Overall, the featureset provided enough value that I made the change. +I adapted all of my vimwiki links (or most!) to Dendron's format, and began to implement some of Dendron's more advanced features in my daily use. +I installed VSCode and a Vim emulation plugin, and away I went. +

+ +

+The first snag I ran into was the limitations of Vim emulation plugins, so I switched that plugin to vscode-neovim, which embeds neovim into VSCode. +I learned a value here: closer to Vim is more comfortable. +Vim truly allows you to "edit text at the speed of thought". +Its modal paradigm turns the keyboard into a uniquely fluid control panel, optimized for text editing. +Extensions often miss features or have subtle bugs. +The closer I can get to actual Vim, the more comfortable I am when it is time to edit. +

+
+
+ +
+

Vim (V2)

+
+

+After Vim emulation, VSCode+Dendron's most significant problem was its lack of serious todo functionality. +Taskwarrior and its sister program Timewarrior had previously handled my todo lists, while Vimwiki handled documentation and project management. +Dendron had no such extension. +VSCode's slow startup time wore at me, and I decided I didn't appreciate all of the higher-order features of Dendron. +Additionally, around this time development on Dendron ceased, and while the project leader declared it good enough to manage his personal projects, several rough edges and missing features took away from its initial promise. +

+ +

+I switched to Vim again for a short time, and tried to find plugins to piece together some of Dendron's features while avoiding the pain points. +Around this time I discovered another innovation, "Emacs Org-mode." +This video by Harry Schwartz from thoughtbot showed up in my feed. +Reluctantly, I watched it. +After seeing the power of Org-mode I decided to give it a try. +

+
+
+
+

Org-mode

+
+
+

+This entire post will probably devolve into a shill for Emacs and org-mode at this point, but bear with me as I explain my use-case and needs first. +

+
+ +

+So, here we go again. +Another transition. +Each of the last has cost me more than a few hours of troubleshooting and problems and configuration. +Theoretically, I was using markdown the entire time, but the unique link formats from Vimwiki and Dendron made transitions difficult. +

+ +

+Now I'm preparing to switch to another format, one with completely incompatible links, formatting, and functionality. +

+ +

+In fact, all of my links broke. +All my code-blocks broke. +All my LaTeX math snippets broke. +

+ +

+It took me weeks to reach the same level of productivity. +But Org-mode's features are amazing, and it was well worth the transition. +

+ +

+The ability to write and evaluate code, mixed in with all my notes, is amazing. +

+ +
+
print("Hello!")
+print( 2 + 2 )
+
+
+ +
+Hello!
+4
+
+ + +

+Emacs' power and scriptability far outstrips everything that Vim had to offer, and Evil mode satisfies my desire for Vim's editing model. +

+ +

+Emacs also handles task management. +The default org-mode todo manager is fine, but with the addition of edna for better dependency management and d12frosted's little hack for todo-items in hundreds of files, it becomes much easier to manage projects spread across a zettelkasten of knowledge. +org-roam is the final piece of the puzzle, integrating the best of ID-based linking and backlink features into emacs. +

+
+
+ +
+

TODO Write ten zettels

+
+
+

TODO Rewrite d12frosted's absurd code into a simple ripgrep script

+
+
+

DONE Finish up this post

+
+

+Org-mode provides far too many features to cover here, but suffice it to say I am very happy with this setup. +I have complete freedom to do anything I need to do, all in plain-text, all with an easily-hackable and infinitely customizeable interface. +

+ +

+It has many issues, and I'll put out another blog post some day detailing the problems I've encountered so far, along with what I have as far as mitigations. +Despite the issues, I heartily recommend Emacs to anyone looking for the ultimate endgame in text-editing capability. +

+ +

+Other editors are great. VSCode is easy to use, Vim is wicked fast, and Neovim is great. +Emacs is superior in extensibility, it is superior in user-focus, and it is ultimately the most comfortable editor I've ever used. +If you think you can handle the learning curve, I invite you to dive in. +

+ +

+At the least, don't waste as much time as I did trying to find the perfect setup. +

+
+
+
+ + + +
+

Misc. Software

+
+
+
+

Version Control

+
+

+I began using git around halfway through my wiki process. +I wasn't very familiar with it when I began, but I've come to value it as a part of my daily workflow. +It certainly makes data recovery easy, and coupled with a personal gitea instance it allows me to back up and access my projects from anywhere. +

+
+
+
+

Document Production

+
+

+Half of org-mode's appeal is perfectly typset documents with LaTeX. +I have a full texlive install on my writing machine, along with an extensive configuration for APA, MLA, and Turabian. +I also have Citar set up with org-cite and Zotero to make citations a breeze. +So far, manual formatting has been a thing of the past. +

+
+
+
+

Encryption

+
+

+I use GPG and age to encrypt sensitive documents such as my journal files. +It works fairly well with org-roam, which supports transparent file encryption. +

+
+
+
+]]>
+
+ RSS Feed https://judah.freedomland.xyz//posts/rss-feed.html @@ -61,7 +298,7 @@ If any project purports to be from me, and is not signed by this key, the

Key:

-
+
 
 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII0YkBVeeBhoCm/+6mCteO7Ikv528ZDmg/tYtWc6O1qP
 
@@ -72,7 +309,7 @@ ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII0YkBVeeBhoCm/+6mCteO7Ikv528ZDmg/tYtWc6O1qP
 

Fingerprint:

-
+
 
 SHA256:9Dq4ppxhfAjbX+7HLXEt+ROMiIojI6kqQgUyFUJb9lI
 
@@ -127,8 +364,8 @@ You can check that the latest commits are signed with my key.
       author@mail.com (Blog Author)
       https://judah.freedomland.xyz//posts/qubesos-signing-key.html
       
-      
-
+ +

Double check your keys!

@@ -156,7 +393,7 @@ Qubes release keys and developer keys are all signed with the QMSK. Please see the Qubes website for more information.

-
+
 
 427F 11FD 0FAA 4B08 0123
 F0IC DDFA 1A3E 3687 9494
diff --git a/index.html b/index.html
index 18d9517..18514e9 100644
--- a/index.html
+++ b/index.html
@@ -42,6 +42,15 @@
 
   
    +
  • + + + Dec 22, 2023 — + + Reflections on a year of Zettelkasten: Tooling + +
  • +
  • diff --git a/posts/my-ssh-key.html b/posts/my-ssh-key.html index e8a0cf5..161c98c 100644 --- a/posts/my-ssh-key.html +++ b/posts/my-ssh-key.html @@ -63,7 +63,7 @@ If any project purports to be from me, and is not signed by this key, the

    Key:

    -
    +
     
     ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII0YkBVeeBhoCm/+6mCteO7Ikv528ZDmg/tYtWc6O1qP
     
    @@ -74,7 +74,7 @@ ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII0YkBVeeBhoCm/+6mCteO7Ikv528ZDmg/tYtWc6O1qP
     

    Fingerprint:

    -
    +
     
     SHA256:9Dq4ppxhfAjbX+7HLXEt+ROMiIojI6kqQgUyFUJb9lI
     
    diff --git a/posts/qubesos-signing-key.html b/posts/qubesos-signing-key.html
    index e594aba..e646c7e 100644
    --- a/posts/qubesos-signing-key.html
    +++ b/posts/qubesos-signing-key.html
    @@ -52,8 +52,8 @@
           
         
         
    -
    -
    +
    +

    Double check your keys!

    @@ -81,7 +81,7 @@ Qubes release keys and developer keys are all signed with the QMSK. Please see the Qubes website for more information.

    -
    +
     
     427F 11FD 0FAA 4B08 0123
     F0IC DDFA 1A3E 3687 9494
    diff --git a/posts/reflections-on-a-year-of-zettelkasten-tooling.html b/posts/reflections-on-a-year-of-zettelkasten-tooling.html
    new file mode 100644
    index 0000000..9073a9f
    --- /dev/null
    +++ b/posts/reflections-on-a-year-of-zettelkasten-tooling.html
    @@ -0,0 +1,300 @@
    +
    +
    +  
    +    
    +    
    +    
    +      Open Thoughts
    +      
    +    
    +    
    +    
    +    
    +    
    +    
    +  
    +  
    +  
    +  
    +  
    +
    +    
    +    
    +    
    +  
    +  
    +    
    +    
    +      
    +

    + + Open Thoughts + +

    +
    jump to main content + +
    + + + +
    + +
    +

    + Reflections on a year of Zettelkasten: Tooling +

    + +
    +

    +Back in 2021 I began a zettelkasten using guides from zettelkasten.de. +It has grown to over 723 notes in less than two full years. +

    + +

    +nil +

    + +

    +I'll cover this topic in several posts. +This first post will discuss the tools I've used to grow and maintain my second brain. +

    + + +

    +I have shifted between note-taking systems multiple times between now and the genesis of my Zettelkasten. +Different strengths and weaknesses have left me uncomfortable in every system, up until the last: Emacs. +Before I get to that, I'll cover the pieces of the system, what's changed, and what hasn't. +

    + + + +
    +

    Text editing

    +
    +
    +
    +

    Vimwiki

    +
    +

    +The first version was the amazing vimwiki, a system simple and elegant. +It provided most of the features needed for a zettelkasten, and supported standard markdown. +During this period I grew comfortable with Vim, which I consider the premier editing experience. +

    + +

    +I began to use Taskwarrior, an amazing command-line task management tool. +Taskwiki is another amazing vim extension that maps tasks between vimwiki and taskwarrior, allowing you to create "viewports" with various Taskwarrior filters. +The combination of Vimwiki and Taskwarrior is exceptionally comfortable, and taught me my first important lesson: tasks and data are inseparable. +It is impossible to provide sufficient information to do a task if that task is separated from its context, its data and metadata. +

    + +

    +Eventually I grew tired of the limitations of editing text in a terminal. +Vim doesn't support graphical things very well, and I wanted to view images inside my notes. +While various extensions solve this problem, and adjacent problems, I had at this time noticed dendron. +

    +
    +
    + +
    +

    Dendron

    +
    +

    +Dendron features a mixed hierarchical/networked note setup, which (according to the creators) scales well with heavy use. +While I still have not reached the ~10k note count that the authors asserted Dendron would survive, the structure appealed to me because at the time I was working with several sorts of knowledge that a hierarchy represents well–things like programming language concepts in multiple languages. +Dendron also features a note-graph, which represents both the hierarchy of notes and the links between notes. +This feature was most attractive to me, as inside Vim I was having trouble visualizing my entire zettelkasten. +

    + +

    +Overall, the featureset provided enough value that I made the change. +I adapted all of my vimwiki links (or most!) to Dendron's format, and began to implement some of Dendron's more advanced features in my daily use. +I installed VSCode and a Vim emulation plugin, and away I went. +

    + +

    +The first snag I ran into was the limitations of Vim emulation plugins, so I switched that plugin to vscode-neovim, which embeds neovim into VSCode. +I learned a value here: closer to Vim is more comfortable. +Vim truly allows you to "edit text at the speed of thought". +Its modal paradigm turns the keyboard into a uniquely fluid control panel, optimized for text editing. +Extensions often miss features or have subtle bugs. +The closer I can get to actual Vim, the more comfortable I am when it is time to edit. +

    +
    +
    + +
    +

    Vim (V2)

    +
    +

    +After Vim emulation, VSCode+Dendron's most significant problem was its lack of serious todo functionality. +Taskwarrior and its sister program Timewarrior had previously handled my todo lists, while Vimwiki handled documentation and project management. +Dendron had no such extension. +VSCode's slow startup time wore at me, and I decided I didn't appreciate all of the higher-order features of Dendron. +Additionally, around this time development on Dendron ceased, and while the project leader declared it good enough to manage his personal projects, several rough edges and missing features took away from its initial promise. +

    + +

    +I switched to Vim again for a short time, and tried to find plugins to piece together some of Dendron's features while avoiding the pain points. +Around this time I discovered another innovation, "Emacs Org-mode." +This video by Harry Schwartz from thoughtbot showed up in my feed. +Reluctantly, I watched it. +After seeing the power of Org-mode I decided to give it a try. +

    +
    +
    +
    +

    Org-mode

    +
    +
    +

    +This entire post will probably devolve into a shill for Emacs and org-mode at this point, but bear with me as I explain my use-case and needs first. +

    +
    + +

    +So, here we go again. +Another transition. +Each of the last has cost me more than a few hours of troubleshooting and problems and configuration. +Theoretically, I was using markdown the entire time, but the unique link formats from Vimwiki and Dendron made transitions difficult. +

    + +

    +Now I'm preparing to switch to another format, one with completely incompatible links, formatting, and functionality. +

    + +

    +In fact, all of my links broke. +All my code-blocks broke. +All my LaTeX math snippets broke. +

    + +

    +It took me weeks to reach the same level of productivity. +But Org-mode's features are amazing, and it was well worth the transition. +

    + +

    +The ability to write and evaluate code, mixed in with all my notes, is amazing. +

    + +
    +
    print("Hello!")
    +print( 2 + 2 )
    +
    +
    + +
    +Hello!
    +4
    +
    + + +

    +Emacs' power and scriptability far outstrips everything that Vim had to offer, and Evil mode satisfies my desire for Vim's editing model. +

    + +

    +Emacs also handles task management. +The default org-mode todo manager is fine, but with the addition of edna for better dependency management and d12frosted's little hack for todo-items in hundreds of files, it becomes much easier to manage projects spread across a zettelkasten of knowledge. +org-roam is the final piece of the puzzle, integrating the best of ID-based linking and backlink features into emacs. +

    +
    +
    + +
    +

    TODO Write ten zettels

    +
    +
    +

    TODO Rewrite d12frosted's absurd code into a simple ripgrep script

    +
    +
    +

    DONE Finish up this post

    +
    +

    +Org-mode provides far too many features to cover here, but suffice it to say I am very happy with this setup. +I have complete freedom to do anything I need to do, all in plain-text, all with an easily-hackable and infinitely customizeable interface. +

    + +

    +It has many issues, and I'll put out another blog post some day detailing the problems I've encountered so far, along with what I have as far as mitigations. +Despite the issues, I heartily recommend Emacs to anyone looking for the ultimate endgame in text-editing capability. +

    + +

    +Other editors are great. VSCode is easy to use, Vim is wicked fast, and Neovim is great. +Emacs is superior in extensibility, it is superior in user-focus, and it is ultimately the most comfortable editor I've ever used. +If you think you can handle the learning curve, I invite you to dive in. +

    + +

    +At the least, don't waste as much time as I did trying to find the perfect setup. +

    +
    +
    +
    + + + +
    +

    Misc. Software

    +
    +
    +
    +

    Version Control

    +
    +

    +I began using git around halfway through my wiki process. +I wasn't very familiar with it when I began, but I've come to value it as a part of my daily workflow. +It certainly makes data recovery easy, and coupled with a personal gitea instance it allows me to back up and access my projects from anywhere. +

    +
    +
    +
    +

    Document Production

    +
    +

    +Half of org-mode's appeal is perfectly typset documents with LaTeX. +I have a full texlive install on my writing machine, along with an extensive configuration for APA, MLA, and Turabian. +I also have Citar set up with org-cite and Zotero to make citations a breeze. +So far, manual formatting has been a thing of the past. +

    +
    +
    +
    +

    Encryption

    +
    +

    +I use GPG and age to encrypt sensitive documents such as my journal files. +It works fairly well with org-roam, which supports transparent file encryption. +

    +
    +
    +
    + +
    +
    + +
    + + + + + + + + diff --git a/static/img/filetypes.svg b/static/img/filetypes.svg new file mode 100644 index 0000000..9118b57 --- /dev/null +++ b/static/img/filetypes.svg @@ -0,0 +1,188 @@ + + + +Gnuplot +Produced by GNUPLOT 5.4 patchlevel 4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + 100 + + + + + 200 + + + + + 300 + + + + + 400 + + + + + 500 + + + + + 600 + + + + + 700 + + + + + 800 + + + + + other + + + + + md + + + + + org + + + + + svg + + + + + tex + + + + + png + + + + + html + + + + + pdf + + + + + age + + + + + + + + + data using 0:2:3:xticlabels(1) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + File types + + + + + + + diff --git a/static/style.css b/static/style.css index 43a6101..c0eeeeb 100644 --- a/static/style.css +++ b/static/style.css @@ -6,7 +6,10 @@ --cl-background: #212121; --cl-gray: #828282; --cl-note: #F2FFDD; - --cl-link: #E49619; + --cl-link: #0074D9; + + --cl-meta: #F7A32E; + /* -- Code Block Colors -- */ @@ -125,10 +128,12 @@ main { padding: 10px; } } -article h1:first-child { font-size: 36px; } +article h1:first-child { font-size: 36px; + line-height: 38px; + } .post__meta { font-size: 14px; - color: var(--cl-gray); + color: var(--cl-meta); } /* -- table -- */ @@ -153,7 +158,8 @@ main table th { text-align: left; } .alert { margin-top: 20px; - padding: 20px; + padding: 10px; + padding-left: 20px; border-radius: 2px; font-size: 13px; line-height: 22px; @@ -172,7 +178,8 @@ main table th { text-align: left; } blockquote { margin-top: 20px; - padding: 20px; + padding: 10px; + padding-left: 20px; border-radius: 2px; font-size: 13px; line-height: 22px; @@ -236,8 +243,6 @@ img { max-width: 100%; } a { - color: #0074D9; - } .alert { @@ -267,11 +272,16 @@ th { border: 2px solid; } -.post__meta { - color: #F7A32E; -} p { line-height: 25px; font-size: 17px; padding-bottom: 0px; } + +.todo { + color: var(--cl-meta); +} + +.done { + color: var(--cl-gray); +}