If you’re interested in (co-)moderating any of the communities created by me, you’re welcome to message me.

I also have the account @[email protected]. Furthermore, I operate the bot account @[email protected], which posts in [email protected].

  • 34 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: February 27th, 2025

help-circle










  • Es ist sehr wohl relevant, weil man fortan die Darstellung als “Stimme der Mehrheit” zünftig mit einem Verweis auf den eklatanten Mangel an Abonnenten kontern kann. Irgendwann wird so eine Diskrepanz zwischen Anspruch und Wirklichkeit auch für Rechtsextreme peinlich – bestes Beispiel Nius selbst, das sich eben nur noch “Überparteilich. Populär” zu nennen wagt.

    Ganz wichtig: Den Spott schön auf andere Mehrheitssprecherlein übertragen: “Soso, Vertreter einer schweigenden Mehrheit bist du? Ganz so wie Nius, ja? – die Stimme der Mehrheit des Milliardärs Frank Gotthard, die nach drei Jahren, trotz erfahrenstem Personal und zig Millionen Euro Zuschüssen, immer noch weniger Abonnenten zählt als die Schülerzeitung von Buxtehude?”



























    • tldr (aka tealdeer) for quick command usage examples

    • bat (aka batcat) for most uses of less/more/cat

    • difft (aka difftastic) which I’ve just learnt about here/here. Use in git diff by running $ git config --global diff.external difft

    • btm (aka bottom) for viewing processes & system status

    • This code in my .bashrc for colored man output:

    Spoiler
    # Colors for Manpages
    function _colorman() {
      env \
        LESS_TERMCAP_mb=$'\e[1;35m' \
        LESS_TERMCAP_md=$'\e[1;34m' \
        LESS_TERMCAP_me=$'\e[0m' \
        LESS_TERMCAP_se=$'\e[0m' \
        LESS_TERMCAP_so=$'\e[7;40m' \
        LESS_TERMCAP_ue=$'\e[0m' \
        LESS_TERMCAP_us=$'\e[1;33m' \
        LESS_TERMCAP_mr=$(tput rev) \
        LESS_TERMCAP_mh=$(tput dim) \
        LESS_TERMCAP_ZN=$(tput ssubm) \
        LESS_TERMCAP_ZV=$(tput rsubm) \
        LESS_TERMCAP_ZO=$(tput ssupm) \
        LESS_TERMCAP_ZW=$(tput rsupm) \
        GROFF_NO_SGR=1 \
          "$@"
    }
    alias man="LANG=C _colorman man"
    function perldoc() { command perldoc -n less "$@" |man -l -; }
    

    (Not by me, but I forgot from whom I got it.)