Dont Use Question Marks in Windows Filenames

Ran into a problem when cloning my second brain repository on a new windows machine which I need to use for work. Also trying to get familiar with VSCode although I鈥檓 doing my best to get a good WSL setup going on my new windows setup. One problem I was running into was that I could not for the life of me clone my repository at all on Windows. Eventually I realized that it kept failing on a file that had a question mark in its filename. ...

October 5, 2023 路 Mischa van den Burg

It is good to keep your second brain compatible with Obsidian

Although I rarely use Obsidian anymore, I still have it open because it is running the obsidian-git plugin in the background and it is constantly backing up my second brain to GitHub. I use iCloud to synch my vault across my iOs devices and I always create and edit my files using neovim. For my new gig at work I鈥檓 forced to use a windows laptop which means I cannot use iCloud to synch my vault. Then it is a godsend to be able to install Obsidian and use that to interact with my second brain. ...

October 5, 2023 路 Mischa van den Burg

The Power of Writing

Ah, writing. It鈥檚 one of the skills that I鈥檝e consistently been praised for throughout my life. I鈥檓 pretty good at it, and I think that鈥檚 because I enjoy it. It led me to getting an academic degree in English Literature and Culture, simply because I was following the things I was naturally good at. However, just like any other skill, you can only become better at it through consistent practice. This morning I read a wonderful little blog post on writing regularly, and I was touched by his words: ...

May 1, 2023 路 Mischa van den Burg

My Neovim Zettelkasten: How I Take Notes in Markdown Using Vim and Bash

I used to make all my notes on paper, but I decided to switch to a digital note-taking system about two years ago. Digital note-taking provides the following advantages: Searchability Collected in one place Can be converted to different output formats Easier to share with others Does not take up physical space No risk of losing your notes in case of fire or other disaster I鈥檝e gone through several iterations of my note-taking systems. I started on Google Docs, moved on to Notion and eventually landed on Obsidian. However, as I became more proficient with UNIX systems and vim, I realized I did not need all of that distracting functionality, and I switched over to using Neovim and a few bash scripts. I occasionally open up Obsidian to look at my graph view or to make use of the Anki plugin, but I enjoy the trimmed-down version that I built myself. I don鈥檛 need to leave the command line to read my notes or to create a new one. ...

March 27, 2023 路 Mischa van den Burg

Converting markdown to PDF on MacOS

It happens that I want to share my notes with friends that just simply want a pdf instead of a markdown file. This morning I figured out a quick way to convert markdown to pdf on a M2 MacBook running MacOS Ventura. You need the pandoc and wkhtmltopdf packages. brew install pandoc wkhtmltopdf To convert: pandoc 00-zettelkasten/Fundamentals\ of\ Bicep.md --pdf-engine=wkhtmltopdf -o /tmp/test.pdf This will output a pdf to my /tmp/ directory and it looks pretty good. ...

March 25, 2023 路 Mischa van den Burg

Trying out pandoc for vim

I do all of my writing in markdown. I keep my diaries in my Second Brain, I constantly write notes on the topics I鈥檓 studying, and my entire blog is written in markdown. Some of the writing is done in Obsidian but I鈥檓 moving away from Obsidian step by step. I鈥檒l still keep my second brain compatible with it, but I want to be able to do all of my writing in (neo)vim. ...

March 23, 2023 路 Mischa van den Burg