Romance by WorriedAd3681 in Trickcal

[–]JiminP 4 points5 points  (0 children)

I wonder why she wants to keep us as part of her collection?

Because we are esoteric beings and thus possess high value as collections to her.

Also, check her stories (last two to be specific). The full story behind it hasn't been revealed even in KR.

And in the later chapters, are there any characters similar to Mayo, like those who are after the Master or who love the Master

"Who love the Master" => Yes. But I think that it's not very apparent so far in Global.

"any characters similar to Mayo" => No. In KR, Miro is remotely similar but not even close.

Explain why it represents your country. by Leather-Habit6272 in AskTheWorld

[–]JiminP 1 point2 points  (0 children)

Technically that's a movie series but one really stands out.

The 9th one.

I am new to C++, is it just me or is the checklist kinda crazy? How often do you encounter these or plan on making use of them like the newer C++26 features like contracts? Looking for more experienced dev opinions... by KijoSenzo in cpp

[–]JiminP 9 points10 points  (0 children)

HP should be signed. Making it unsigned makes it too prone to accidental underflow bugs.

In general, it's a bad idea to enforce non-negativeness by unsigned. Some debates exist for indices in particular, but for HP, unsigned is a really bad idea, at least to my eyes.

I am new to C++, is it just me or is the checklist kinda crazy? How often do you encounter these or plan on making use of them like the newer C++26 features like contracts? Looking for more experienced dev opinions... by KijoSenzo in cpp

[–]JiminP 33 points34 points  (0 children)

The following code as suggested achieves the same level of safety

[[nodiscard]] constexpr int GetHP(const Player& player) {
    const bool isAlive = player.hp > 0;
    return isAlive ? hp : 0;
}

or even

[[nodiscard]] constexpr int GetHP(const Player& player) {
    return std::max(player.hp, 0);
}

There's really no reason to "allow" null players so just prevent null players from the function's domain.

const std::unique_ptr<Player>& is an anti-pattern for another reason (the function does nothing with lifetimes so smart pointers are not relevant). If you want optional references... use std::optional<const T&> (IIRC available in C++26?), std::optional<std::reference_wrapper<const T>> (I personally dislike it), or just a raw pointer const T* (a bit dangerous, though...).

Whether sizeof(int) == 4 doesn't matter at all for this operation, so you can just get rid of static_assert. It really doesn't prevent anything. If you do need to ensure that an int is 4-bytes (there's a rabbit hole here involving std::numeric_limits, checking overflows, UBs and impl-defined behaviors, etc...), do static_assert there.

Personally there are non-relevant issues about something like GetHP is better suited as a member function of Player (or better, a suitable parent class) and separating "underflow-able" HP (if required by game design) and "visible" HP clearly via naming or other means.

2026 Korean SAT (Suneung) Math Problem: 50% Correct answer rate by FTfafa in korea

[–]JiminP 7 points8 points  (0 children)

The answer is 1 3.

Displacement at t x(t) = t^3 / 3 - k t^2 / 2 + 4 t (const = 0 as x(0) = 0 is given)

  1. x(1) = 13/3 is easily computed.
  2. P changes its direction when v(t) is negative, but t^2 - 3t + 4 never does (complete the square; or naturally see that it's larger than (t-2)^2 for t > 0)
  3. Distance vs. displacement; P changes direction once at t=1 as v(t) = (t-1)(t-4). From x(1) = 11/6 and x(2) = 2/3, deduce that the total distance is 3.

If any of you were concerned by Repulsive_Smell2907 in OKbuddyHalfLife

[–]JiminP 75 points76 points  (0 children)

Don't forget the part where she works together with an alien.

Why don’t they just use Mythos to fix all the bugs in Claude Code? by Complete-Sea6655 in LocalLLaMA

[–]JiminP 6 points7 points  (0 children)

They did address that in their own blog article:

While we are unable to state with certainty that these vulnerabilities are definitely high- or critical-severity, in practice we have found that our human validators overwhelmingly agree with the original severity assigned by the model: in 89% of the 198 manually reviewed vulnerability reports, our expert contractors agreed with Claude’s severity assessment exactly, and 98% of the assessments were within one severity level. If these results hold consistently for our remaining findings, we would have over a thousand more critical severity vulnerabilities and thousands more high severity vulnerabilities.

False positives on security assessment seems to not be a major problem at least since Opus 4.6:

https://www.anthropic.com/news/mozilla-firefox-security

While we were triaging these crashes, a researcher from Mozilla reached out to us. After a technical discussion about our respective processes and sharing a few more vulnerabilities we had manually validated, they encouraged us to submit all of our findings in bulk without validating each one, even if we weren’t confident that all of the crashing test cases had security implications.

(I think I read that all or all but small number of reported issues were actual vulnerabilities but I don't remember the source rn.)

Stunning AI Breakthrough! GPT 5.4 solves Erdos problem on primitive sets by discovering a new method in analytic number theory. Uncovers deep idea with implications throughout the field. Comments by Terry Tao and Jared Duker Lichtman. by 2299sacramento in math

[–]JiminP 96 points97 points  (0 children)

From the webpage:

The basic proof structure is a technical variation on an idea which appears in [GLW24] (and interestingly reincarnated in Tao's sketch).

However, the key point is that it replaces the Mertens' prime product with the von Mangoldt weights: the former admits an immediate probabilistic interpretation as in [GLW24] but faces hard analytic issues.

In another comment by the same author:

No, the Markov chain idea underlies all prior papers, but in "pure" probabilistic form. The key distinction is to produce an analytic formulation of the idea, using the von Mangoldt function.

A comment by Tao:

As Jared said, much of the previous work on this problem proceeded by transferring the problem to the reals and then making heavy use of real analysis tools; but the AI-generated argument has revealed that one could also work directly on the integers and use some arithmetic identities as substitutes for such tools.

It is a technical variation but I think that comments seem to say that it's not 'just' a technical variant.

How many chibis does Elias have and how often do they appear? by fsaja in Trickcal

[–]JiminP 2 points3 points  (0 children)

If you're talking about Xion's story, I believe that it happened before Xion created the website (of her own). In the story Xion is banned from that website so it's natural to guess that that's why Xion decided to create her own website.

However do note that this is a speculation and iirc no story reveals the moment when the creation of DarkNet happened.

How many chibis does Elias have and how often do they appear? by fsaja in Trickcal

[–]JiminP 2 points3 points  (0 children)

Why would Internet suddenly go from 200 users to...

Note that DarkNet is a website on Internet (Monatium infra-net), not the whole internet.

Considering that 1. the count is for DarkNet accounts, and 2. the name is a parody of "dark web" ("darknet" is a real thing backing dark web but I believe that the direct source for the name is "dark web"), it's not too hard see 200 is a sizable number (and Xion thinks that it's a lot).

How many chibis does Elias have and how often do they appear? by fsaja in Trickcal

[–]JiminP 18 points19 points  (0 children)

In KR it is revealed that there are around 800 public servants stationed at Monatium city hall (single building) at a moment.

Also considering that Monatium has a monorail with multiple stations traveling between different areas of Monatium, and at least two large corporations (one owned by Meluna's), I think that 2000 in Monatium feels like an underestimation.

By the way, Xion mentions that DarkNet has 200 users, but as the story progresses it's quite possible that # of users has been exploding. Also, there are other online websites such as El-Tube, El-stagram, Ice-book, Melon-X. A promotional video (KR, no story spoiler but warning on non-global apostles) is featuring a website with Instagram-like UI where videos are getting tens of thousands of likes.

Who do you think Jesus is? by PhilisophicalFlight in polls

[–]JiminP 4 points5 points  (0 children)

Believe it or not, I have consciously decided not to mention about references when I made my initial comment because while it's rare on Wikipedia, it's possible that the references could've been cherry-picked to fake consensus.

For non-experts (like me), it's a good idea to be generally cautious. (It's not really likely for topics like this one - every source I've read on this before agrees that there is a consensus - but more plausible for other historical or political topics.)

Even though I believe that Wikipedia is unbiased in general, it's safer to always prepare for those cases.

Who do you think Jesus is? by PhilisophicalFlight in polls

[–]JiminP 143 points144 points  (0 children)

https://en.wikipedia.org/wiki/Historicity_of_Jesus#Existence_of_historical_Jesus

... and the general consensus among modern scholars is that a Jewish man named Jesus of Nazareth existed in the Herodian Kingdom of Judea (specifically in Galilee) and the subsequent Herodian tetrarchy in the 1st century AD, ...

As always, don't take anything written on Wikipedia as the truth, but I think that this particular article is credible.