

Yeah, we use Windows servers primarily. Thankfully what I do doesn’t require much interaction with them, though every once in a while I am subjected to SMB file sharing.


My work self hosts Gitea because Forgejo doesn’t support Windows. While I agree with Forgejo’s decision, it sucks to be basically stuck with an old pre-fork version of the forge I self-host.


Yet enforcing your copyright is exclusive to the rich. I had to move off of GitHub because of Microsoft infringing my code licenses and selling them as “GitHub Copilot”, and I have no way of fighting back/recover my losses.


I often have performance issues with Jitsi (“video has been turned off to save bandwidth”). Might this be down to which instance I use? Perhaps it’s time to self-host.


FUTO are the ones changing the meaning of words. The Open Source Definition has existed for a long time and clearly explains what it means. While Grayjay is “source available”, and that’s good, it definitely is not open source.


Grayjay is not open source though.


What kind of collective action are you thinking of?


Gah, Nextcloud is missing all the features and is frankly unusable (mobile apps are slow, can’t make or view albums, and can’t “open with” links on Android at least). My family uses it and my biggest project right now is importing all our stuff to Immich when I finally get the NixOS server ready to replace Ubuntu.
I did not enjoy finding out only at the end that the images in this blog post are generated/made using AI.
Tuwunel had intentions to build a Synapse migration tool, but I haven’t heard anything about it since. Was waiting for it so I could bring over profiles and most importantly chat history for myself and my family.
Sweet, perhaps it will run better than Whisper (according to the graphs at least) on my poor phone as voice input method. Whisper works great if I give it 20-30s to think :)


Enjoyed the article but augh that sticky banner at the top that follows as I scroll took up 30% of my reading space. Gave up halfway through to enable reader mode on Firefox mobile…


Awesome! Maybe I can finally switch to using it, though OBS settings are quite confusing.


omg I totally accidentally enabled this

I’d bother removing it but it’s kinda funny to get an email reprimanding me when I ctrl+c out of a sudo command I mistyped, and maybe it will serve as a warning if it gets compromised :p


Bravo la France ! Here’s to hoping more cities follow suit :)


Very cool! Added the RSS.


Hmm no, I haven’t had this issue. Tempo works fine for me, it’s been mostly bug-free except for a few oversights:
I’m (still) on a Pixel 3a, running LineageOS, in case that matters.


I did use Feishin for a while, it’s an excellent music player but unfortunately not a native program. I might switch back to it from Tauon though, as actually playing the whole song before going to the next is a pretty nice upgrade hehe
What makes a flake config a flake config is simply the flake.nix entry point. So, technically if you read that file to see what file it loads for the
nixosConfigurationyou want to “port”, you should be able to just go directly from that file and bypass the flake.nix. For the longest time, my own flake simply forwarded to my configuration.nix.However, depending on your needs of course, but using flakes even at a basic level can be very useful and I’d 100% encourage doing a basic setup for someone starting out. The main feature here is being able to lock your dependencies (including nixpkgs) to a specific commit, which means you will always get the same resulting setup (not depending on when you installed it, like it does without flakes). But, you know better than me the requirements of your own setup :)