Search
-
Re: What is happening in your ZK journey this week? January 24, 2025
-
Re: What is happening in your ZK journey this week? January 24, 2025
My example from last year: was created by a script with Obsidian Dataview: ```dataviewjslet groups = dv.pages('"3_Permanent Notes" AND #theme/zettelkasten') .where(p => p.best_of == "year") .sort(p => p.file.name) .groupBy(p => p.created.substring(0,4).toUpperCase())for (let group of groups) { dv.header(3, group.key);… -
Re: What is happening in your ZK journey this week? January 24, 2025
I’m always inspired by @Will ’s posts he shares on a regular basis. On January 24, 2025 he shared three lists: * Books read (4 items per week) * Soundtracks (5 items per ???) * Zettel production (22 items per 17-days) My insights: * Lists are easy to read. They help to get an easy access to the complexity of Zettelkasten.… -
Re: Share with us what is happening in your ZK this week. December 8, 2023
> Yes, it seems to be hard work. But the good news are: The structure of my ZK is getter better prepared for any analysis, every day. Total files: 4242 Permanent Notes: 1000 (really, 😀) Good Notes: 20,1 % Definition of Good (DoG) * Notes in predefined folder "3_Permanent Notes" * Timestamp "created" and "modified" in… -
Re: Inspect and Adapt - Why You Need Empirical Process Control for Your Zettelkasten
Yes, I'm aware of being way too hard on myself. Before I started to inspect and adapt my Zettelkasten based on data analytics, I was pretty happy with my ZK and my workflow. And I'm still happy. With my: 7 Criteria for Good Notes 1. Notes in predefined folder "3_Permanent Notes" 2. Timestamp "created" in properties section… -
Re: Types of permanent notes
Yes I use my tags for searching. In Obsidian I have tools like Dataview and Graph View, where tags make it easy to filter special note clusters. One example: #type/term helps me to generate a glossary with terms and definitions from my Zettelkasten. A Dataview query needs 5 simple lines of code to do this job…