701
702
703
 
 

TL;DR: The advent of AI based, LLM coding applications like Anthropic’s Claude and ChatGPT have prompted maintainers to experiment with integrating LLM contributions into open source codebases.

This is a fast path to open source irrelevancy, since the US copyright office has deemed LLM outputs to be uncopyrightable. This means that as more uncopyrightable LLM outputs are integrated into nominally open source codebases, value leaks out of the project, since the open source licences are not operative on public domain code.

That means that the public domain, AI generated code can be reused without attribution, and in the case of copyleft licences - can even be used in closed source projects.

704
705
MX Linux KDE appreciation post (lemmy.libertarianfellowship.org)
 
 

Longtime Mint stickler here, never developed a taste for any other distro schools (Arch, Fedora, other *buntus and Debians). But tried out MX after a long period of deferring and I am genuinely blown away. This distro has everything I could have ever ask for - Debian stability coupled with advanced hardware support (with more recent zen kernels and drivers), a solid opinionated Plasma DE setup that is both minimalist and all-encompassing at the same time, and a full stock of sensible and pragmatic utilities to cover the boring stuff.

Mint's relative lethargy at migrating to wayland has been increasingly becoming a sore point due to the sheer practical difference it makes (especially in terms of multi-monitor HiDPI and fractional scaling, in addition to security and performance). MX KDE has all that covered and then some. It's the first time I had to genuinely stretch to find any fault. The only complaint I have is that they aren't letting me post this testimonial in the MX forum because it doesn't accept anon-aliased emails for logins.

706
707
 
 

I have been looking for a linux app to write notes in and thought that asking real people would be the best way to find one

708
709
710
711
712
 
 

“PacHub provides a GTK4/libadwaita GUI for pacman and AUR, so you can avoid the terminal. PacHub can install/uninstall packages, perform upgrades, and provide

713
 
 
714
715
716
717
718
 
 

Please mention their features and where they’re based out of

719
720
721
722
723
724
 
 

We all know about Debian, Fedora and Arch but what about the lesser known ones that are built from the ground up?

725
submitted 4 months ago* (last edited 4 months ago) by to c/linux@programming.dev
 
 

It was fairly easy. I used rustic to back up my entire home directory to a USB flash drive.

The trick is to ensure that all applications (except KDE) are closed. Firefox, for example, really hates if you try to actively sync or copy over it's profile directories while it is running.

And then I also nuked my podman user data. (podman system reset). Podman sometimes makes the ownership of it's files weird, but also the container images take up a lot of space that I don't really care about actually backing up. It's okay if those aren't on the new laptop.

Then I backed up to the usb flash drive:

rustic init -r /path/to/repo — this will prompt you for a password

rustic backup -r /path/to/repo /home/moonpie

One cool thing about the backups is that they are deduplicated and compressed. So I backed up 120 gb of data, but it was compressed to 80 gb.

restic snapshots -r /path/to/repo

The snapshots are deduplicated as well. Data that doesn't change between snapshot versions, doesn't take up any extra space.

rustic restore -r /path/to/repo snapshotid /

The / is needed because rustic restores to paths underneath the thing. It gave me a bunch of permission errors about not being able to read stuff not in my home directory, but eventually it restored all of my data.

And then yeah. All my data. Except Wifi passwords, which I had stored as unencrypted for all users, because I didn't like having to unlock the KDE wallet to get to Wifi passwords when connecting. I had (and have) LUKS encryption so I didn't worry about that too much. But it means that data not in my home directory was not copied over.

It was surprisingly smooth, and now I have all my data and firefox profiles and stuff on the new machine.

view more: ‹ prev next ›