TheFadingOne

joined 7 months ago
[–] [email protected] 5 points 1 day ago (1 children)

Ich will das alles nicht mehr

[–] [email protected] 2 points 1 day ago

Ich habe mir das letzte mal so einen Text durchgelesen vor 2 oder 3 Tagen als Twitch mir gesagt hat, dass die TOS geändert wurden.

Ich les (oder zumindest überfliege) den Spaß immer, wenn ich nicht gerade nicht aus irgendnem Grund furchtbar unter Zeitdruck stehe.

[–] [email protected] 11 points 2 days ago* (last edited 2 days ago) (2 children)

Ich hasse die Bild so sehr.

Was würde ich dafür tun, dass die zur Rechenschaft gezogen werden, für all die Fabrikationen, die die regelmäßig veröffentlichen.

[–] [email protected] 13 points 1 week ago* (last edited 1 week ago)

I mean the function syntax is pretty much just taken from Lambda Calculus.

[–] [email protected] 3 points 2 weeks ago* (last edited 2 weeks ago)

I'm mainly using zsh but I have a backup bash prompt that closely mirrors it. It shows the return value of the previous command if it's non-zero and gives some information about the current git repository if there is one.

retval() {
        if [ $? -eq 0 ]; then
                printf ""
        else
                printf "\001\e[31m\002($?)\001\e[0m\002"
        fi
}

gitbranch() {
        if type git 2> /dev/null 1> /dev/null && git rev-parse 2> /dev/null 1> /dev/null ; then
                MODIFIED=""
                if [[ -n $(git status --short) ]]; then
                        MODIFIED=" M"
                fi
                BRANCH=$(git rev-parse --abbrev-ref HEAD)
                SHORTREF=$(git rev-parse --short HEAD)
                printf "\001\e[31m\002%s\001\e[0m\002(%s)\001\e[31m\002%s\001\e[0m\002" $BRANCH $SHORTREF $MODIFIED
        else
                echo -n ""
        fi
}

export PROMPT_DIRTRIM=3

PS1='$(retval)[\001\e[1;95m\002\u\001\e[0m\002@\h : \w $(gitbranch)] \$ '
PS2='> '

[–] [email protected] 1 points 3 weeks ago

I mean, from what I've heard there are other things but I haven't looked deeper into that so far, so I can't comment to that.

My 2 cents regarding that specific PR is that I find it very disappointing to shut down a PR pushing for neutral language in build instructions for supposedly "advertis[ing] [...] personal politics" because in my opinion this sends a clear signal of non-inclusivity. Your mileage may vary on this I guess.

Is this a reason to boycott a project? Maybe, Maybe not. That's your decision. I will definitely be on the lookout if this is "systematic" in the project but I didn't have the time to look into it so far.

[–] [email protected] 26 points 4 weeks ago* (last edited 4 weeks ago) (10 children)

I've only tangentially picked up things about this but this is an example for it

(For some context, if you didn't already know this, Ladybird originated from a SerenityOS component and the first reply is from the lead dev)

[–] [email protected] 2 points 1 month ago

Ich mach mir ja noch ein bisschen Hoffnung, dass dieses Gutachten da noch nachhelfen kann

[–] [email protected] 3 points 1 month ago

Ich bin ja ein großer Plusquamperfekt Ventilator

[–] [email protected] 0 points 1 month ago

What do you mean by "become bullshit"?

[–] [email protected] 7 points 2 months ago* (last edited 2 months ago) (1 children)

One of Us! One or Us!

What Distro are you switching to?

[–] [email protected] 7 points 2 months ago (3 children)

Sag das mal meinem schönen, noch total zeitgemäßen, 32bit IBM Thinkpad T43 /s

view more: next ›