• 0 Posts
  • 15 Comments
Joined 4 months ago
cake
Cake day: March 10th, 2025

help-circle
  • Using something arch-based but not arch while also using the AUR feels like opening the door to problems. The AUR is specifically made with arch linux in mind and often package versions don’t align between arch and arch-based distros.

    Also, I lost trust in Manjaro. They accidently let their SSL cert expire multiple times and told their users to revert system time to have a temporary fix. They also shipped an unstable asahi-kernel to their users without talking to the asahi devs beforehand, as well as accidentally DDoS-ing the AUR with a bug in a pamac version (as far as I know that happened twice). It just feels like their management board has / had some problems.

    These may have all been issues of the past, but with the massive amount of distributions out there, I’d probably walk a lot of different roads before ever touching Manjaro again.


  • Started testing Linux OS around 2003. Never really commited, until late 2020, where I removed Windows and switch to Arch Linux full-time.

    Now, after 4 years of Arch, I switched to Fedora Workstation. I kinda miss the Arch repos and the AUR, but Fedora is doing a lot of work that I would have had to do myself on Arch.

    Well, you gotta sacrifice something to gain something. Equivalent exchange and stuff.




  • And then you critize the government, get a sham trial and are marked for your crime as some kind of “garbage person” without rights. Afterwards, execution or locking away and maybe throw in some torture for the fun of it. This is reality already. It just hasn’t been done to you.

    You can feel about it however you want, I may even feel the same with some people, but as an adult, we have to use logic.

    The point is, there must never be an official group of people without rights you can just “get rid of” im some way. This limit is not for the punished, it exists to shield the innocent.



  • These are the occasions I wish death penalty was a thing, especially for those cases where the idiots have been caught in the act - there are better things to do with my tax money than making sure they have a place to live in and some nice good meals to go with it.

    I do understand how you feel about that and I do kinda feel the same, BUT … you always have to assure that every last person has rights and gets acceptable treatment, even the ones who seemingly have no soul. Because if there’s ever a category of people without rights, any government would have an easy way to get rid of eveyone critizing them.






  • Saved! Thank you so much.

    I’ve used Linux full-time since late 2020 and I never knew about ctrl+y and ctrl+u.

    I’d also like to contribute some knowledge.

    aliases

    You can put these into your ~/.bashrc or ~/.zshrc or whatever shell you use.

    ###
    ### ls aliases
    ###
    # ls = colors
    alias ls='ls --color=auto'
    
    # ll = ls + human readable file sizes
    alias ll='ls -lh --color=auto'
    
    # lla = ll + show hidden files and folders
    alias lla='ls -lah --color=auto'
    
    ###
    ### other aliases
    ###
    # set color for different commands
    alias diff='diff --color=auto'
    alias grep='grep --color=auto'
    alias ip='ip --color=auto'
    
    # my favourite way of navigating to a far-off folder
    # this scans my home folder and presents me with a list of
    #    fuzzy-searchable folders
    #    you need fzf and fd installed for this alias to work
    alias cdd='cd "$(sudo fd -t d . ${HOME} | fzf)"'
    

    recommendations

    ncdu - a shell-based tool to analyze disk usage, think GNOME’s baobab or KDE’s filelight but in the terminal

    zellij - tmux but easy and with nice colors

    atuin - shell history but good, fuzzy-searchable. If you still have the basic shell history (when pressing ctrl+r), I cannot recommend this enough.

    ranger - a terminal file-browser (does everything I need and way more)



  • hamsda@lemm.eetolinuxmemes@lemmy.worldVim > VSCode
    link
    fedilink
    arrow-up
    4
    ·
    3 months ago

    Ha, that would’ve helped me a few times. Good to know!

    Still, I wouldn’t switch vim for nano ever again. nano is a good and easy start, but I think if you do more than just basic editing of a few files every now and then, learning vim is the way to go.

    vim is pretty customizable, widespread and it has been around for quite some time after all. If you think you need it, somebody most likely already made it as a vim-plugin :)


  • hamsda@lemm.eetolinuxmemes@lemmy.worldVim > VSCode
    link
    fedilink
    arrow-up
    12
    ·
    3 months ago

    vim was such an unimaginable improvement over nano for doing stuff on linux servers. Having an in-shell-editor search-and-replace function alone is worth everything you have to do to learn vim.

    And after I was comfortable around vim because of all the “training” on servers, I just switched to vim fulltime. No more GUI editor for me!