kbal

joined 2 years ago
[–] [email protected] 17 points 2 months ago (4 children)

continued innovations from major players like Microsoft

MS using its massive reserves of innovation to acquire many of the major game studios.

[–] [email protected] 8 points 2 months ago

Is there even a single OECD government that's firmly opposed to what Israel is doing, firmly opposed to what Russia is doing, and firmly opposed to fossil fuels? Asking for that doesn't seem like too much.

[–] [email protected] 17 points 2 months ago

“encouraging” responsiveness to new legal guidance

i.e. they've been forced to stop one of the illegal things they were doing.

[–] [email protected] 3 points 2 months ago

#!/bin/bash # Recursively rename everything in the current directory as necessary # to make it match the case of filenames in Skyrim's "Data" directory,

from=`pwd -P`
to="${HOME}/.steam/debian-installation/steamapps/common/Skyrim_1.5.97/Data"
tmp="/tmp/skydata_index"
filez="/tmp/skydata_from"

IFS='
'

match_case() {
    cd "$2"
    find . | grep -v '^[.]$' > "$tmp"
    cd "$1"
    find . -maxdepth 1 | grep -v '^[.]$' > "$filez"
    for j in `cat $filez`; do
        if ( grep -i "^${j}$" $tmp ); then
            name=`grep -i "^${j}$" $tmp | head -1`
            if [ "${name}xx" != "${j}xx" ] ; then
                mv "$j" "$name"
            fi
        fi
    done

    # going recursiv
    find . -maxdepth 1 -type d | grep -v '^[.]$' > "$filez"
    for j in `cat $filez`; do
        if ( test -d "${2}/${j}" ) ; then
            match_case "${1}/${j}" "${2}/${j}"
        fi
    done
}
match_case $from $to
rm $tmp $filez
[–] [email protected] 8 points 2 months ago (1 children)

Similar things could be said about things like "real" and "official."

[–] [email protected] 7 points 2 months ago

Hm, someone claiming to be Vaxry says it's real, it's not April fool's day, the link is to the domain that's on their github page, it's still up however many hours later... well that was unexpected.

[–] [email protected] 13 points 2 months ago

Would you approve of a seditious conspiracy to destroy the rightful government of the United States of America? Click here to be added to the list.

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

It's okay, everybody relax. I'm here.

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

Perhaps the full subtlety of her argument is not coming through in this report, because it sure looks like the operative legal theory is that whatever Israel does is by definition good and therefore not illegal.

[–] [email protected] 17 points 2 months ago

(Apparently it's Dave Cutler, who wikipedia reminds me is the crazy VMS guy "known for his disdain for Unix." Apologies to both of them.)

[–] [email protected] 11 points 2 months ago (1 children)

Is that Donald Knuth? If so, "three guys taking a photo with Donald Knuth" might be a better title.

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

True enough — but for those few who enjoy such things I must point out that debian makes kernel builds very easy to do. When mesa gets too old there will usually be a backport.

view more: ‹ prev next ›