The_Decryptor

joined 2 months ago
[–] [email protected] 8 points 21 hours ago

We have so many more problems than not being able to show some types of drug use in video games.

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

Well there was Joseph Staten, worked on CE/2/3/ODST, went with Bungie when they became independent, then rejoined MS and ended up being "Head of Creative" on Halo Infinite.

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

They're investing in "green metal", using their own renewable generation to produce hydrogen.

Whether or not it works out is another matter, but he (Andrew Forrest) seems to believe in it and is willing to put his money where his mouth is.

[–] [email protected] 2 points 2 weeks ago

At the kernel level you're not going to be using package managers, or anything with a GC (rip D)

I don't think C is particularly good, but it's "good enough", and nothing obviously better at these use cases has come along to displace it. It's been around long enough that it "just is" the tool of choice for stuff for people.

Which of course leads to things like the Linux situation where it's big enough that nobody actually understands how it all works or fits together.

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

They're super useful, and it's easy to get a US model in case you come across region locked blu-ray disks

[–] [email protected] 2 points 2 weeks ago

It supports it, but it's opt-in by apps.

Enabling compression is another option (Though with a speed and size penalty), it's user visible at least.

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

Hmm, for me it just says "This item is not available for purchase in your region", not sure I know that currency.

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

There are different kinds of solar power generation, the photovoltaic panels that generate electricity directly that we all know and love, and thermal solar. You'll commonly see a small-scaled version of this used on homes as a hot water system.

Scale it up though and you've got a system that can generate energy 24/7, as long as you've got enough thermal mass, and sunlight.

[–] [email protected] 3 points 1 month ago (1 children)

What you see in stuff like Google Maps or OpenStreetMap isn't plain Mercator, it's a variant called "Web Mercator"

And the US DoD doesn't like it because it introduces even more deviations than plain Mercator.

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

I quite liked the locale in FC5, but the (nearly?) unavoidable captures the game would force on you when you did too much open world stuff annoyed the hell out of me.

Then I had the ending spoiled for me and I just got too annoyed at the story planners and never touched it again.

[–] [email protected] 7 points 1 month ago* (last edited 1 month ago)

Then don’t get me started about how the www subdomain itself no longer makes sense. I get that the system was designed long before HTTP and the WWW took over the internet as basically the default, but if we had known that in advance it would’ve made sense to not try to push www in front of all website domains throughout the 90"s and early 2000’s.

I have never understood why you can delegate a subdomain but not the root domain, I doubt it was a technical issue because they added support for it recently via SVCB records (But maybe technical concerns were actually fixed in the decades since)

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

They're "file like" in the sense that they're exposed as an fd, but they're not exposed via the filesystem at all (Unlike e.g. unix sockets), and the existing API is just mapped over the sockets one (i.e. write() instead of send(), read() instead of recv()). There's also a difference in how you create them, you open() a file, but connect() a socket, etc.

(As an aside, it turns out Bash has its own virtual file-based wrapper around sockets, so you can do things like cat a remote port with Bash, something you can do natively in Plan 9)

Really it just shows that "everything is a file" didn't stand up in practice, there's more stuff that needs special treatment than doesn't (e.g. Interacting with TTYs also has special APIs). It makes more sense to have a better dedicated API than a generic catch-all one.

view more: next ›