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

help-circle

  • 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
    ·
    2 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
    ·
    2 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!