

And drains our freshwater reserves in order to do it.
The dumbest timeline.
And drains our freshwater reserves in order to do it.
The dumbest timeline.
Licensing is the least of my objections to the gen AI plague.
Indeed. I want AI companies to get regulated into smithereens, but not through expansion of copyright law. There would be too much collateral damage, and it wouldn’t even work.
Absolutely. There’s not a good guy on either side here.
If AI vendors win, it’s basically this:
I played, I won, I smiled. Good job OP!
Eh, every distro is trade-offs. There’s not a straightforward “better or worse”.
The worst mistake you could make? Making it hard for you to change your mind later.
So take notes on what you modify, try to keep your data/configs consolidated so you could easily migrate to a new distro, etc.
And ideally have your hardware set up so that you can try booting a new distro without losing your existing setup.
I never played Descent itself, but I played a shitty clone on one of those “1000 Games on 10 CD-ROMs” packs back in the day.
After learning about the source material, I always wanted to go try it but haven’t taken the time.
I made some critical posts about it several months ago. It was exhausting. So I stopped. Haven’t changed my position though.
Our monetization offer within premium games makes the player experience more fun by allowing them to personalize their avatars or progress more quickly, however this is always optional.
If it’s more fun to progress more quickly, that should be the default.
I’ve been assured that AGI is right around the corner and will solve climate change (in a way that is economically palatable to the rich and powerful)
I often want to know the status code of a curl
request, but I don’t want that extra information to mess with the response body that it prints to stdout.
What to do?
Render an image instead, of course!
curlcat
takes the same params as curl
, but it uses iTerm2’s imgcat
tool to draw an “HTTP Cat” of the status code.
It even sends the image to stderr instead of stdout, so you can still pipe curlcat
to jq
or something.
#!/usr/bin/env zsh
stdoutfile=$( mktemp )
curl -sw "\n%{http_code}" $@ > $stdoutfile
exitcode=$?
if [[ $exitcode == 0 ]]; then
statuscode=$( cat $stdoutfile | tail -1 )
if [[ ! -f $HOME/.httpcat$statuscode ]]; then
curl -so $HOME/.httpcat$statuscode https://http.cat/$statuscode
fi
imgcat $HOME/.httpcat$statuscode 1>&2
fi
cat $stdoutfile | ghead -n -1
exit $exitcode
Note: This is macOS-specific, as written, but as long as your terminal supports images, you should be able to adapt it just fine.
It’s a modern OS, but it’s legacy too.
The process is supposed to be sustainable. That doesn’t mean you can take one activity and do it to the exclusion of all others and have that be sustainable.
Edit:
Also, regretably, I’m using the now-common framing where “agile” === Scrum.
If we wanna get pure about it, the manifesto doesn’t say anything about sprints. (And also, you don’t do agile… you do a process which is agile. It’s a set of criteria to measure a process against, not a process itself.)
And reasonable people can definitely assert that Scrum does not meet all the criteria in the agile manifesto — at least, as Scrum is usually practiced.
It’s funny (or depressing), because the original concept of agile is very well aligned with an open source/inner source philosophy.
The whole premise of a sprint is supposed to be that you move quickly and with purpose for a short period of time, and then you stop and refactor and work on your tools or whatever other “non value-add” stuff tends to be neglected by conventional deliverable-focused processes.
The term “sprint” is supposed to make it clear that it’s not a sustainable 100%-of-the-time every-single-day pace. It’s one mode of many.
Buuuut that’s not how it turned out, is it?
Witcher 4 devs adjusting to Unreal Engine after years of REDengine:
“You have companies using copyright-protected material to create a product that is capable of producing an infinite number of competing products,” Chhabria said. “You are dramatically changing, you might even say obliterating, the market for that person’s work, and you’re saying that you don’t even have to pay a license to that person.”
To prevent both harms, the Copyright Office expects that some AI training will be deemed fair use, such as training viewed as transformative, because resulting models don’t compete with creative works. Those uses threaten no market harm but rather solve a societal need, such as language models translating texts, moderating content, or correcting grammar. Or in the case of audio models, technology that helps producers clean up unwanted distortion might be fair use, where models that generate songs in the style of popular artists might not, the office opined.
It’s the #1 thing that drives me crazy about Linux.
It seems obvious. You’ve got a Windows/Apple/Super key and a Control key. So you’d think Control would be for control characters and Windows/Apple/Super would be for application things.
I can understand Windows fucking this up, cuz the terminal experience is such a low priority. But Linux?
There’s some projects like Kinto and Toshy which try to fix it, but neither work on NixOS quite yet.
US once again beaten by rest of world.
The real question is all the stuff beyond just having the distro installed. The packages, the services, the configs, the application data.
If you leave all that stuff the way it was installed via the old package manager, it may have some bad assumptions baked in and may be incompatible with packages you install with the new package manager.
And if you clear all of it out and reinstall it, have you really gained anything vs. just doing a clean install?
There’s a reason you have a home dir. Just copy that forward along with whatever other config files you might’ve customized.
Btw, if the ability to make drastic changes while still maintaining continuity is an important feature for you, maybe check out NixOS.
I loved my Eee PC so much.
I’ve been watching and hoping for a modern ARM equivalent, but haven’t seen anything quite right so far.