================
== betoissues ==
================

Sharing my dev log and notes from Obsidian

After I had to do some troubleshooting yesterday to get GUI applications working from SSH using WSL2 with X Forwarding, I decided to start publishing some of my “dev notes” from my Obsidian vault.

Inspired by other people on the internet, I’ll also be sharing a more frequent “log” of the technical (and maybe not so) things I’m constantly working on.

To do this I’ll be using hugo as SSG, with a script (leveraging) other tools, that so far looks something like this.

#! /bin/bash
VAULT_PATH="/vault/path"
DEST_PATH="$HOME/hugo-site-path"
FLAGS="--only-tags published --frontmatter always --start-at"

set -x
cd $DEST_PATH
obsidian-export $VAULT_PATH $FLAGS $VAULT_PATH/07\ Wiki $DEST_PATH/content &&
hugo convert toTOML --logLevel debug --unsafe
# required to fix some footnotes issues
find . -type f -name "*.md" -exec sed -i -e 's/^[ \t]*\(\[^[0-9]]:.*$\)/\1/' {} \;

Along with Obsidian’s Templater plugin and obsidian-export I hope this becomes a reliable way to share my knowledge in a short-form way.

articles from blogs i follow

dude, where are your syscalls?

The OpenBSD kernel is getting to be really old, like really, really old, mid 40s old, and consequen…

via flak March 5, 2025
📝 5 March 2025 at 07:14 - I don't know how anyone uses an iPhone without a...

I don't know how anyone uses an #iPhone without a case. They're alm…

via Kev Quirk March 5, 2025
What SimpleSAMLphp's core:AttributeAlter does with creating new attributes

SimpleSAMLphp is a SAML identity provider (and other stuff). It's of deep interest to us because …

via Chris's Wiki :: blog March 5, 2025

Generated by openring