RSSAmplifier

Blog

IDEA Glue Blog

renesat.meRSS feed ↗2 posts

Latest posts

How to Yggdrasil with Mullvad

Most of the time I use Mullvad as my ISP. I think Mullvad is more trustworthy than my local ISP. I configure it through NetworkManager using a simple WireGuard config. It works fine, but I miss some cool features like Post-quantum encryption , DITA , or Obfuscation , like on my phone. So I thought, why not write this in my NixOS config: services . mullvad-vpn . enable = true ; And… it works! With…

How convert SVG icon to favicon in Hakyll

I am using Hakyll for this blog. And I have a problem start script for every icon change. And I thought: Why am I not using Hakyll to do this? Icon has been created in Inkscape with SVG format. A script like this converted SVG icon to PNG: inkscape -w 16 -h 16 -o icon-16.png icon.svg inkscape -w 32 -h 32 -o icon-32.png icon.svg convert icon-16.png icon-32.png favicon.ico I am not using only…