Spyke

Replies

Comment on

Why I Left NixOS for Ubuntu

Reply in thread

They're between releases right now, but once COSMIC desktop is ready and they release Pop 24.04 I'll probably try it out. More likely that I'm moving to Xubuntu Minimal 24.04 on the daily driver though.

PopOS is great OOTB but I've become attached to rofi and XFCE recently and like the old-school "apps are utilities" style of Linux desktops over PopOS / Mint which try to bundle everything together.

Comment on

The Most Minimal Kanban

Reply in thread

Yep - I do it in the scripted version.

The main challenge is dealing with dynamic data in a way that won't mess up merge conflicts. Sort order is the main one and it's pretty bad because a merge conflict will result in multiple tickets with the same sort order. The best way I could think of in the slightly less strict paradigm of the plainban project was to keep a data.yml file for each column which records the sort order of tickets by storing them as a list of uuids and making their name a comment. That way it's very easy to keep track of the order of tickets on merge conflict in a way that's not possible in a central data source like a csv file.

sort_order:
    - abcd # my cool ticket
    - 1234 # another cool ticket
    - ab12 # final ticket

Will change current, less merge-friendly implementation to this when I get to it.

Comment on

Stacks for Simple Static Sites

Reply in thread

For me, I write notes in Markdown anyways as part of a Zettelkasten, and by setting up my site this way I can stay in my development / note taking environment (nvim) and push stuff up to the site very quickly. It's far easier as a developer to work off-the-cuff with this type of workflow, at least for me.

Also, would be very easy to self-host or move provider if Vercel or any other provider goes down.

You reached the end