Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)VA
Posts
0
Comments
46
Joined
2 yr. ago

  • So, a dark pattern is a design that tries to trick the user into something. But what is the word for "knowing what the user wants, blatantly ignoring it and imposing the companies will anyway"?

    Example: I think YouTube shorts are a terrible format, and I find them generally irritating. So I click the X on the element in YouTube that has a bunch of side scrolling cards, where each card is one of these shorts. YouTube informs me it will hide them for 30 days and then they'll be back.

    Another example, Windows Update. I've set all the group policy settings so it should never restart and update without me triggering it. But, if I allow it to download the update, then damn my group policy settings, it is going to apply that update and restart whenever it wants.

  • I've found that alternative reddit frontends bypass this. That and I believe changing the URL to old reddit.

    Of course, this will only work until (if?) Reddit is successful in removing old reddit and preventing third party front-end.

  • Ubuntu/Canonical is the Microsoft of Linux distros. It's no surprise they were the choice for WSL.

    Ubuntu has been forcing decisions on users and embedding advertisements for a long time.

    Examples that immediately come to mind...

    • When that Amazon search was embedded into the app launcher search.
    • These sorts of self promotions.
    • Quietly installing snaps instead of debs when using apt install
  • Sort of, if you mean the controller tools one. I believe when that was working it would show battery percentage. The Bluetooth plugin does not. So this is more general.

    It also brings the feature of waking the deck via Bluetooth which is super convenient if you use it docked.

    I'm trying not to get my hopes up, but they have been making a lot of changes targeted at the docked experience lately, and I have a theory that is because they are getting close to announcing a Steam Deck Controller.

  • For those who unfortunately have to use Windows laptops for work, there is a workaround. Unplug the laptop before putting it to sleep/hibernate. That's it. Super irritating they won't fix it, but not surprising, too busy trying to shove (more) ads into the start menu.

  • It's so ridiculous that this isn't even brought up:

    The Command you provided worked fine. Thank you so much for the help! Really appreciated! We are going to proceed to make a release today and test with customers. Will post the updates here.

    Gotta love being a forced beta tester... I mean customer.

  • I had similar issues. When first booting into plasma6, my bottom panel was changed to floating. Changing it to not float made it spaced from the bottom of the screen.

    While trying to fix that, I somehow managed to move the pinned icons all off the panel and onto the desktop, but they were unable to be clicked or moved. I ended up restarting for unrelated reasons and they snapped back to the panel.

    I think there were other wonky issues with the edit session, but I don't recall specifics. Good luck!

    Edit: this was on a wayland session with integrated amd graphics.

  • This is only tangentially related to improving your code directly as you have asked. However, in a similar vein as using source control (git), when using Python learn to manage your environments. Venv, poetry, conda/mamba, etc are tools to look into.

    I used to work with mostly scientists, and a good number of them knew some Python, but none of them knew how to properly manage their environments and it was a huge problem. They would often come to me and say "I ran this script a week ago and it worked, I tried it today without making any changes and it's throwing this error now that I don't understand." Every time it was because they accidentally changed their dependencies, using their global python install. It also made it a nightmare to try to revive old code for them, since there was almost no way to know what version of various libraries were used.