• 3 Posts
  • 83 Comments
Joined 3 years ago
cake
Cake day: June 14th, 2023

help-circle
  • They might be thinking of .deb vs .rpm

    I haven’t touched it in a few years but I had to switch distro because (X)Ubuntu filled my system SSD with multiple copied of every single Snap it had installed. Iirc it saved the last 3 versions and there was no way of turning it off

    IMO Ubuntu is a good fit for people who don’t want to learn anything about computers and have no opinions about how their OS should work, so they want someone else to make all decisions for them. Nothing inherently wrong with that, it’s just not for me. I switched to Fedora because I want to be in control of my computer



  • If you want a DE which looks similar to KDE, try Xfce with Arc theme and some nice icon pack.

    I use KDE (and it’s snappy on my hardware) but I like it because it has a lot of features and advanced options which it tries to make easily accessible to the user. IMO this is pretty much the opposite of “modern”, which is usually very minimalist, and UX designers like to remove or hide as much as possible. I’ve tried Gnome several times but personally I can’t stand it just because it’s a modern UI :) You try as many as you can and pick the one that suits you best of course, just thought it was funny that the same word can have different meanings to people.




  • Never used this software, but I would recommend looking it up on flathub and there should be links to the project homepage (if you need instructions for how to use it) and to its issue tracker (if you think you have found a bug).

    Btw. I’m guessing your post is getting downvoted because it’s impossible to know what is wrong based on the information have have provided. “It doesn’t work” and “it doesn’t produce any answers” tells us absolutely nothing about the actual error. Almost anything could be causing those kind of symptoms.


  • I’m not saying I think it’s going to be intentionally killed or taken down, my prediction is that everything is going to turn to garbage when bots are vastly outnumbering human users. And I think that unfortunately the only form of “captcha” that will be able to keep bots out at scale is some form of centrally issued human ID coupled with an unbroken cryptographic chain starting on hardware level. But I am of course talking only about larger public services, small invite-only private instances would definitely still be an option.


    1. With AI becoming stronger and stronger, it’s just a matter of time before the part of the internet without OS-level attestation tied to government issued IDs is going to become completely unusable. At some not too distant point anyone with a Claude/ChatGPT/etc subscription will be able to instruct it with things like “Invent 20 different personalities and create accounts on different Lemmy instances for them. Write neutral comments for them for a few weeks, then gradually begin to subtlety promote X. Use your psychology skills etc. to manipulate other users to support X and coordinate the accounts to shut down anyone criticizing X. Always post in character and never reveal that you are an AI.” Then multiply that by a million people trying to push their ideas, products, politics, conspiracy theories, etc.


  • Sure, we’ll find workarounds

    I’d phrase it as “we might occasionally find workarounds that kinda work sometimes”. I tried running de-Googled Android on my phone for a while, and the only reason I could use it for online banking, pay for public transport, contact health services, etc. was because some people had reverse-engineered Google’s services (i.e. microG). It also stopped working every now and then when something changed, and to my knowledge Google could also shut it down instantly if they started encrypting their APIs. I wouldn’t bet on there always being workarounds if this push to lock down operating systems and online services continues.

    Someone else posted something interesting/alarming the other day… With AI becoming more advanced and also more accessible, it’s going to be increasingly difficult to keep spam, scams, etc. at bay. If the mainstream computing world ends up in this gilded cage trap, even if a minority choose to maintain and use forks that stay outside the system, it might be quite difficult to keep for example a forum functional.


  • And services can choose to only allow operating systems which don’t lie, have anti-tamper mechanisms, and authenticate themselves cryptographically. It has definitely been easy to spoof your identity in the past, but OP is talking about where we might be heading in the future. Since the laws about OS:es having to partially identify the user is so obviously useless in its current form, don’t you think the corporations and politicians who are pushing for it are going to keep expanding it when they get the opportunity?


  • Then he said Arch Linux should implement it anyway because the law requires it. archinstall PR #4290

    Well, it’s not “the law”, it’s your local law. To most people on the planet, it doesn’t apply any more than for example North Korea’s laws. As far as I can find, Arch Linux is not owned by a foundation or similar legal entity (i.e. which could have been located in California), but the lead developer appears to live in Germany.




  • Very important. I spend a lot of time at my computer and my desktop environment is like my home. I want it to look in a way that I find aesthetically pleasing and it mustn’t try to force me to change the way I work because some UX designer decided that their way was much better than everybody else’s. Perhaps you can guess where this is going :D but I’ve tried to like Gnome 3 since it was first announced. I’ve given it multiple chances but it just doesn’t work for me. It feels like they’re going down the same road as all “modern” UIs, where only the most basic features are visible and everything else is either dumped into the “advanced” category or removed entirely. On the other hand, I have a coworker who only uses his PC like a tool, and he thinks Gnome is the best DE ever and can’t understand why anyone would want something else.

    Currently I use KDE and I’m pretty happy with it. It’s highly configurable, and I’ve made it look and feel the way I want. I used mainly Xfce for a long time but now I prefer KDE.



  • I think a new Linux user shouldn’t have to choose a DE, so starting with a distro which makes this choice for them is most likely better. Unless the CachyOS installer does a good job at explaining what a desktop environment is, there’s a risk that a new user thinks they’re just selecting a skin for the OS and don’t understand how it will affect their desktop experience. If they for example choose an extreme light weight DE for their brand new gaming PC, their first impression of Linux might be that it looks dated.

    Having a DE chooser built into more distro installers could be a good thing for us more experienced users though.


  • These aliases for zsh I use all the time. It’s part of the prezto configuration framework.

    setopt AUTO_CD              # Auto changes to a directory without typing cd.
    setopt AUTO_PUSHD           # Push the old directory onto the stack on cd.
    setopt PUSHD_IGNORE_DUPS    # Do not store duplicates in the stack.
    setopt PUSHD_SILENT         # Do not print the directory stack after pushd or popd.
    setopt PUSHD_TO_HOME        # Push to home directory when no argument is given.
    
    alias d='dirs -v'
    for index ({1..9}) alias "$index"="cd +${index}"; unset index
    

    Type d and enter to list all the directories you’ve recently been in, then type the number at the start of the line followed by enter to immediately cd there.

    Not sure if latest bash can do it the same thing, but some years ago I wrote a script to implement it there too. IIRC it might’ve been the automatic removal of duplicates in dir history that was missing.