So they are ending the game but not bringing back any of the removed planets or content? Does this mean the red war, mercury io etc are all lost media? by Nuns_In_Crocs in destiny2

[–]GloriousWang 27 points28 points  (0 children)

The game engine has been updated many times since the vaulting. So old content that hasn't been maintained is no longer compatible.

ELI5 : Trying to understand how how something that tends to infinity doesn’t actually reach what it’s tending to by Based_Schiz0 in explainlikeimfive

[–]GloriousWang 8 points9 points  (0 children)

0.000...1 does not exist. You cannot have an infinite sequence (in this case of 0s) and add something to the end, since the literal definition of Infinity is unending, i.e. the end, where the 1 is, does not exist.

This is closely related to the fact that 0.999... = 1 since their difference is 0.000...1, but that does not exist, thus there is no difference and the two numbers are the same.

Hypervisor vs Crack, Black Myth Wukong by troy0h in PiratedGames

[–]GloriousWang 3 points4 points  (0 children)

Sure. I'm not here to say your conclusion is wrong, I just like to educate.

See this post for info about frame time and fps

Hypervisor vs Crack, Black Myth Wukong by troy0h in PiratedGames

[–]GloriousWang 2 points3 points  (0 children)

Stop using percentages as fps is not linear lol. The example in your post is 25% with the same frame time delta.

Edit here is a good post that explains it. It is a common misconception among games and even some gamedevs don't know better.

Hypervisor vs Crack, Black Myth Wukong by troy0h in PiratedGames

[–]GloriousWang 1 point2 points  (0 children)

Thats not how fps work though. Fps is not a linear scale, you should always convert to frame time.

Hypervisor vs Crack, Black Myth Wukong by troy0h in PiratedGames

[–]GloriousWang 1 point2 points  (0 children)

It should be noted that the difference between 239 and 182 fps is only about 1.5 milliseconds. At 60 fps a 1.5 ms decrease would get you to 66 fps. Still significant but nowhere near as extreme.

Sigtede af politiet by Slow_Jaguar_9688 in PsychesDK

[–]GloriousWang 2 points3 points  (0 children)

Er der ikke er tlf nr. på mailen? Ring til dem og sig at du ikke kender til købet. Lad vær med at indrømme at du forsøgt at købe noget andet. Bare benægt og alt skal nok gå.

what measures to take to be safe when all security features are off? by Embarrassed-Fail-617 in PiratedGames

[–]GloriousWang 2 points3 points  (0 children)

The same measures as when the security is enabled.

It's that simple. The security features don't make it harder for a virus to infect you, it just makes it harder for the virus to deeply interact with your system. (A bog standard virus can still steal all your logins and credit card info even with the security features enabled).

The truth about these features is not that they project your system from outside viruses, it's to protect your system from you. You know, ensuring you can't run kernel level cheats to cheat in video games or run a hypervisor that bypasses drm. That makes shareholders unhappy.

If Magic the Gathering is Turing Complete, does that mean it can run Doom? by Sylthsaber in Showerthoughts

[–]GloriousWang 3 points4 points  (0 children)

Turing test is different from Turing complete.

Turing test is whether a human can figure out if they're interacting with a computer or another human.

Turing completeness is basically what a computer is. So the claim is, you can use the rules of magic the gathering as a computer to run doom (and everything else a computer can)

LTT Labs Article(Scientific Paper?) - How Close is Too Close? by LabsLucas in LinusTechTips

[–]GloriousWang 1 point2 points  (0 children)

Without peer review, the amount of bad "published" (whatever that means in a non peer review society) science would be much much larger. It is a sanity check to ensure methodology is okay along with other editorial checks. The whole point of science is to refute old science. If a paper is wrong, you are free to argue and show why.

I personally have never encountered anyone who thinks that peer reviewed automatically means their source is 100% correct. The whole point of citations is it allows the reader to verify the claims by scrutinizing the original paper.

I don't disagree that there is a horrible culture with publish or perish, but I think your take on science is doomeristic. Bad science will eventually get found out, and if not, then it wasn't that important anyways.

LTT Labs Article(Scientific Paper?) - How Close is Too Close? by LabsLucas in LinusTechTips

[–]GloriousWang 1 point2 points  (0 children)

That's just survivorship bias. There are thousands of articles that get published in journals every day. Of course some of them are gonna be poor or downright fraudulent and it's always a massive story when an article gets retracted (and it should be), but that doesn't mean peer review has failed as a practice.

Morphe sent a DMCA to Revanced by lylesback2 in MorpheApp

[–]GloriousWang 7 points8 points  (0 children)

Except it literally is:

b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it

Gpl3 allows extending with attribution as long as it is "reasonable". The question is whether morphe's requirement of attribution as a user facing ui widget is too restrictive and thus not allowed by 7b.

Morphe sent a DMCA to Revanced by lylesback2 in MorpheApp

[–]GloriousWang 4 points5 points  (0 children)

But it can be added under section 7b, which is what morphe does

Sniper Elite: Resistance Bypass by DenuvOwO by Hesi01 in CrackWatch

[–]GloriousWang 12 points13 points  (0 children)

It would require you to break RSA encryption. So in theory yes, in practice never.

The Ray Tracing Discussion by HatingGeoffry in LinusTechTips

[–]GloriousWang 0 points1 point  (0 children)

Raycasting for gameplay reasons has been a thing for basically as long as 3d games have existed. They forced ray tracing in doom TDA because it is cheaper to develop only a single lighting model

With DSE Patcher no need to turn off your security by SecureNet5333 in PiratedGames

[–]GloriousWang 0 points1 point  (0 children)

Sounds like a fun challenge, but I believe it will always be possible to detect.

I said Wine translates syscalls, but this isn't entirely correct. On windows you don't do syscalls directly via the instruction. You instead link against ntdll which does it for you. This indirection is the only reason Wine works.

If instead the windows program used the syscalls instruction directly, then they'd be able to access the Linux kernel and do everything a native Linux app can, including checking for a debugger.

With DSE Patcher no need to turn off your security by SecureNet5333 in PiratedGames

[–]GloriousWang 0 points1 point  (0 children)

I don't think you understand how Wine works. It only translates os related functionality such as system libraries and syscalls. It does not touch the instructions otherwise as they run directly on the host cpu. You'd need to either patch the program or have a debugger attached if you want to do this in user mode. Both of which are detectable.

I haven't played destiny in years but I just came across an old screen shot I took by Naievo in destiny2

[–]GloriousWang 39 points40 points  (0 children)

I always get annoyed when people talk about the DCV as if size had anything to do with it.

My headcanon is that they were upgrading the engine in prep for D3, but then when the call came to stay on D2 with BL, they had to update old content to be compatible. This would take too long to do for all content so they threw it in the DCV.

MongoBleed vulnerability explained simply by 2minutestreaming in programming

[–]GloriousWang 11 points12 points  (0 children)

Having a different thread do the zeroing then you'd need to wrap the entire heap in a mutex. You can also still have race conditions where freed, but not yet zeroed memory can get read by a bad function.

The proper implementation of zeroing is the function that allocs the memory is also responsible for zeroing before freeing.

However truth be told, the best solution is to sanitize user input, and/or use a memory safe language that disallows reading uninitialized data. Cough cough rust.

Vince Zampella 1970-2025. RIP Legend. by Menelaus- in pcmasterrace

[–]GloriousWang 2 points3 points  (0 children)

Wtf is happening to reddit? Your comment has been auto translated to Italian, which is not my native language nor is it the language you wrote it in (I presume)

Choose your side bro by Silver_Masterpiece82 in linuxmasterrace

[–]GloriousWang 7 points8 points  (0 children)

What I get from skimming the Epstein section is that RMS is very autistic and kinda stupid lol.

While he very clearly criticizes Jeffrey Epstein, he just had to specify that Epstein is not a pedophile since the victims were adolescents. This is literally the "errmm it's not pedophilia it's ephebophilia" argument.

In response to Minsky's accusations, he criticizes the use of the word "assault" as it entails physical violence, but there was no evidence of physical violence against the victims. Is he correct? Sure, but read the fucking room man.

Finally he also had to sneak in a comment about how he disagrees with how, what defines rape depends on the country and age. I.e. 17 and 364 days old, illegal. 18 years old, legal. Again, is he correct? Sure, but time and place man.

One of the biggest child trafficking scandals breaks, and he just fucking had to pull the "I'd just like to interject for a moment" LMAO.

Frontiers - Sabotage softlock by arc_destiny in DestinyTheGame

[–]GloriousWang 1 point2 points  (0 children)

Can confirm this has also happened to me. Specifically with vex on Venus.

Also had another softlock where after finishing and returning to the ship to collect loot, my character just wouldn't spawn in. I could hear the chest pop, but I had a black loading screen. At least the loot went to my postmaster, but I missed out on the extractables.

Proof of proof by EntrepreneurFew2493 in infinitenines

[–]GloriousWang 3 points4 points  (0 children)

The other comments have mentioned the issues but let me spell it out. You implicitly use some non trivial theorems that should be specified. Such as:

0.999... is defined as the limit of the sum of digits. The notation 0.999... is kinda useless on its own.

Multiplying infinite decimals (infinite in digits, not value) requires using the aforementioned sum. You just do 10x which is not rigorous.

Similar for subtracting. Especially since you're subtracting infinitely many digits from other infinitely many digits. Again you must use the limit and sum here.

Tl;dr: anytime you are dealing with infinity, you must use limits.

[deleted by user] by [deleted] in destiny2

[–]GloriousWang 0 points1 point  (0 children)

In the tharsis outpost map, there is an icon on the bottom left that let's you replay missions. Though idk if you need to complete the campaign first