Adding Articles to Wallabag From Qutebrowser

I鈥檝e been daily driving Qutebrowser for over a month now, and I鈥檓 starting to feel at home in it. Since it doesn鈥檛 have any extensions, you have to hack things together yourself, which is why I like it so much. Today I wanted to add an article to my Wallabag instance, which I usually did by using the browser extension. I installed this Wallabag CLI: https://github.com/artur-shaik/wallabag-client pipx install wallabag-client After setting up the config I can now add entries from the command line. By running wallabag add [url]. Neat! ...

September 2, 2024 路 Mischa van den Burg

No More GitHub - My Updated Backup Setup For My Obsidian Zettelkasten

I relied on iCloud sync for my Obsidian backup for many years. However, my vault has grown significantly and has reached nearly 3500 notes. This leads to problems when opening the vault on other iOs devices, because iCloud sync removes files from devices when they are not used. When the vault is reopened, it takes over 5 minutes to sync everything. Having this 5 minute waiting time every time I open up my vault on my iPad was a problem which I needed to address. ...

July 28, 2024 路 Mischa van den Burg

The Return of Arch Linux

I鈥檓 planning to do a series on Linux on my YouTube channel. The idea is to cover the fundamentals of Linux, either by teaching them myself or to link to existing resources. When the basics are done, I will take over and we鈥檒l build an Arch Linux desktop together. I use my MacBook for normal productive work and coding, and I have a Thinkpad T480 which I have for experimentation, and mostly for writing notes and browsing while I鈥檓 in the living room. It was running Fedora using the Sway spin, and it worked fine. ...

July 26, 2024 路 Mischa van den Burg

Best Way To Download Youtube Videos From Cli

This is hands down the best CLI for downloading YouTube videos. I needed this to transfer some of my private videos to Vimeo. Don鈥檛 use this to break YouTube鈥檚 terms please. https://github.com/kkdai/youtube Links: 202405121505

May 12, 2024 路 Mischa van den Burg

Found a Mastodon CLI

Last week I created my own Go program to send toots to Mastodon but now I stumbled across a full fledged CLI with a TUI https://toot.bezdomni.net/ Links: 202312311312

December 31, 2023 路 Mischa van den Burg

Discovered a simple CLI to backup and upload Grafana dashboards

This is a super useful tool to list, download and upload Grafana dashboards as json. Currently using this to occasionally take extra-extra backups of my Grafana creations https://software.es.net/gdg/ Links: 202312301612

December 30, 2023 路 Mischa van den Burg

Getting A Secret from an Azure Key Vault From The Command Line

I use this bash code to get secrets from Azure key vaults using the Azure CLI. Make sure to set your subscription with az account set -s 12321424 kvname=kv-vo-rea-prd-weu-001 secretname=worker-ad-client-secret az keyvault secret show --vault-name $kvname --name $secretname --query value -o tsv Links: 202310312010 [[Azure]]

October 31, 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

Video: How I Write & Publish My Blog Using Neovim & Hugo From The Command Line

I show my workflow to publish my Hugo blog from the command line using neovim and bash Links: 202305091705

May 9, 2023 路 Mischa van den Burg

How To Check The Weather From The Command Line

For the past few months I鈥檝e been using this neat API to check the weather from the command line. It鈥檚 very simple to use. Simply run: curl wttr.in This will show the weather based on your location, but you can also give a particular location and format. curl wttr.in/Amsterdam Links: 202304271504 https://github.com/chubin/wttr.in

April 27, 2023 路 Mischa van den Burg