Recent Posts
ETFs verwalten mit GnuCash
Dies ist die Fortsetzung zu meinem vorherigen Post, in dem ich erkläre, wie man GnuCash als persönliches Haushaltsbuch nutzt. Wenn du zum ersten Mal von GnuCash hörst, solltest du jenen Post (oder irgend eine andere Anleitung zu dem Thema) zuerst lesen.
Seit Dezember 2020 bin ich stolzer Besitzer von Anteilen des allseits bekannten ETF A1JX52 (auch sperriger bekannt als „Vanguard FTSE All-World UCITS ETF“). Was ein ETF ist und wieso ich gerade diesen ETF gewählt habe, werde ich nicht weiter erläutern.
read more
Using nixGL to fix OpenGL applications on non-NixOS distributions
The Nix package manager can be installed on any Linux distribution, on Mac and even on Windows. I’m currently using Ubuntu 20 and am enjoying home-manager to declaratively manage my $HOME directory using Nix tooling. For instance, to use my favorite browser qutebrowser, I could just add it into my ~/.config/nixpkgs/home.nix under packages:
{ config, pkgs, ... }: { home.packages = [ pkgs.qutebrowser ]; } However, since I also want to configure qutebrowser keybindings using home-manager, I’m using the builtin module instead:
read more
Quick tip: Named Terminals in emacs
I’m using the very convenient vterm package to open a terminal in emacs. Now, as with tabs in your browser, you tend to accumulate terminals over time, and you end up with:
vterm
vterm<1>
vterm<2>
vterm<3>
…
And as you can see, it’s even worse than with browser tabs, because you don’t have a natural “title” for terminals. You could use the current working directory, but that usually isn’t enough.
read more