As someone that uses a custom domain for the majority of his email, it’s not really a privacy thing, it’s a control thing.
I have hundreds of unique unpredictable email addresses and I can disconnect them at will to stop spam.
Hiker, software engineer (primarily C++, Java, and Python), Minecraft modder, hunter (of the Hunt Showdown variety), biker, adoptive Akronite, and general doer of assorted things.
As someone that uses a custom domain for the majority of his email, it’s not really a privacy thing, it’s a control thing.
I have hundreds of unique unpredictable email addresses and I can disconnect them at will to stop spam.
That’s not true. It’s not all free software. The distribution of it certainly isn’t free even if most of the individual pieces are.
My distro containing emacs doesn’t make the distribution itself free software, it just contains some free software. Similar to how emacs being on Windows doesn’t make Windows free software.
Steam OS is a higher percentage of free software than Windows, but it is not exclusively free software. The SteamOS trademark is also not free to use without authorization.
This is not disparaging free software, you’re making drama where there need not be any.
Sure, but by then it could be too late for the vast majority of people.
It’s not super relevant if nobody is looking for it/it’s hard to detect even if you are and plenty of damage can be done prior to detection.
They can do whatever they want. Operating systems are effectively divided into two partitions, privileged kernel space and user space.
When you run a kernel level anticheat what you’re really doing is running a custom program in the kernel space. It effectively becomes part of Windows.
This means that anything that an operating system can instruct hardware to do, that program can do. It can read your files, check your email, print letter you wrote to your crush in Word but “deleted” because it was embarrassing, log every key you type, turn on your webcam, listen to the microphone, download explicit or illegal imagery, upload your hard drive to the NSA, disable your computer fans, etc
You really only want to run this stuff if it’s from a trustworthy vendor and even then it’s completely defensible to object to running one of these programs.
Currently these things have yet to be caught doing any of these things, but that’s because they haven’t been instructed to, not because they can’t.
I mean this is FSR upscaling that I’m referring to. I did several comparisons and determined that it looked significantly better to upscaling using FSR from 2K -> 4k than it did to run at 2k.
Hunt has other ghosting issues but they’re related to CryEngine’s fake ray tracing technology (unrelated to the Nvidia/AMD ray tracing) and they happen without any upscaling applied.
I mean it installs a rootkit on your computer that gives them full control over everything including what you type, hear, and see as well as the ability to record what you’ve previously typed and said. It could at any moment also fully disable your computer (as well as millions of other computers) rendering them useless.
Just because they haven’t used it that way, don’t assume they can’t or won’t.
China is state capitalism. Capitalism isn’t losing. The West is losing because China is using state funds to buy up successful Western companies, and as their new owner, has the ability to force them to do China’s bidding.
Meanwhile the West is completely barred from buying a majority stake in any successful Chinese company and even if it could would not be taking it over on behalf of serving the state.
The problem is China plays by its own rules and those rules are heavily stacked against every other nation. That was fine when they were making junk for Walmart; it’s not so fine when it’s highly sophisticated electronics and software (that can do whatever China wants it to in the West) … and to add insult to injury it’s often based on stolen Western technology (since us idiots decided to put the factories that manufacturer the designs there).
Eh I’m pretty happy with the upscaling. I did several tests and upscaling won out for me personally as a happy middle ground to render Hunt Showdown at 4k vs running at 2k with great FPA and no upscaling or 4k with no upscaling but bad FPS.
Mileage plus I think is just their free rewards program. So, not really a subscription, but it’s kinda like “download the app for a free coffee once a week”/“join our loyalty program” kinda promotions.
Yes, it’s expensive as hell, and my suspicion is that long term the displays will be replaced with a waveguide (Stanford’s looks pretty good at this point), so it won’t need the external-facing display
Interesting; any more information on this? I tried a search but didn’t turn much up.
I think that they saw what Google glass could become capable of, and thought that the phone as it is now (screen, etc) was going to become obsolete at some point, and they were terrified of losing that race.
That’s very fair… I definitely think the only viable future here is lightweight AR glasses.
I think one of the computers in my basement is an ASRock board, and it’s the flimsiest board I’ve ever had. Like the USB ports are really flexible.
Interesting; I’ve associated them with just making cheap boards. Is that changing?
I’ll add this to the list of things that were working just fine that we’re about to break along with using a passport to board a plane.
There are two things going on here.
The first is that yes, more connections causes more opportunities for the plugs to slip. So you can get short circuits or even arcing that can start a fire.
The second is that the wire in the cord has a certain rating on it. Many of those cords do not use 12 (20 amp) or 14 (15 amp) gauge wire; so, they’re not rated for the full capacity of the wire in the wall. The breakers are sized to protect the wires in the wall, they don’t know anything about the things plugged into them. So what can happen is you plug too much into the extension cord (particularly if it’s a power strip) and the load on the extension cord is not enough to trip the breaker (because the walls are fine) but it’s enough to overload the extension cord wire. In other words, the extension cord can start getting so hot it melts and possibly arcs up as the insulation fails.
You can have a fire from overloading a single power strip in just the same way. However, the more you chain together, the more likely you are to overload the power strip.
Ideally, you just think about what you’re doing… But historically the easy answer is just to tell people not to chain things.
In short it’s not about the distance, it’s about the insulation and quality of the wire itself along with the number of connections.
It’s been said that those that make change via peaceful means impossible, invite violence.
I don’t like that someone was shot, but this is the direction we’re heading unless we can get this fixed.
It’s not just health care either, it’s every large corporation trying to get more from their employees and more from their customers without giving back anything in exchange … or realizing that they have enough.
The infinite growth mindset is out of control and ridiculous.
You’re both saying the same thing though.
We’re not quite saying the same thing though because …
It’s not a 2 vs 3 issue. You can have an infinite number of instances of the same logic and it still not be a case for generalization because it’s not actually general … it’s just an infinitely large program. You can also have two copies of the same code that should be reduced because they are general (e.g. you have the exact same algorithm for generating a UUID copied into two different spots). If you’re thinking about it in terms of quantity you’re already doing it wrong.
It’s not fixable by “just” copying something.
Those two points are really important points.
The code in the article isn’t complicated enough that I’d bother. It even ends up with about the same number of lines of code, hinting that you probably haven’t simplified things much.
I think it’s a good example of the problem though. People take that same idea and apply it too liberally. The point isn’t that specific code, it’s about not apply DRY to code that’s coincidentally identical.
But otherwise, I disagree with the article. If it’s complicated enough to bother abstracting the logic, the worst that can happen in the above situation is that you just duplicate that whole class once you discover that it’s not the same. And if that never happens, you only have 1 copy to maintain.
That’s… Not at all true in practice. What often happens with these “DRY” abstractions when they’ve been improperly applied is you end up with an inheritance hierarchy or a crazy template or some other thing. You’re really lucky if you can just copy some code and find your way out of the weeds.
There are plenty of bad abstractions in the wild and novices applying DRY is a common source of them.
FPS by far … Most of the time I’m uninterested or minimally interested in a game’s story. If I wanted to read a book or watch a movie… That’s what I’d be doing.
If I’m playing a game it’s normally because I want a challenge or something to do that doesn’t involve being totally idle … and also doesn’t involve a ton of thinking.
I remember reading that and I very much hope it is truly what they end up doing. As of now though, that has yet to materialize.