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

help-circle
  • 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 you missed the part where it said “[…] cannot be overridden or otherwise defeated by a user with significant technical skill.” I.e. either the printer will only allow flashing with signed firmware containing the detection algorithms, or it would have to be done by a separate chip which isn’t affected by flashing firmwares.

    But also detecting firearms in gcode is a ridiculously complex task, and if companies actually try to comply they might opt for building the algorithms into their closed source slicer instead, and then only allowing their printer to print encrypted/signed gcode. Or they might do the analysis using some AI algorithm on their cloud servers, requiring an always on internet connection to print things. It might be tempting to think that nobody would buy a printer like that, but I think that enough people will do if they make it convenient and cheap enough.



  • 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.



  • ffhein@lemmy.worldto3DPrinting@lemmy.worldLinux Slicer
    link
    fedilink
    English
    arrow-up
    2
    ·
    26 days ago

    If you set the UI to “simple” most of them are hidden, but it’s the best slicer for people who want a lot of options IMO :) I think it does a good job at categorizing and organizing all the different options, so it’s relatively easy to find whatever you’re looking for.








  • 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.