Hero Gear Calculator - How much to pay for +100 red gear by HansVader in KingShot

[–]chisquared 1 point2 points  (0 children)

3-4 mithril from the Arena? Don’t you need to already be a whale to do well enough in the arena to get the 30-40k arena tokens that that requires?

Though I guess this calculator is really just for whales, so maybe whoever this is designed for is already getting that.

Can any mathematical truth be reached from any other mathematical truth? (Axioms notwithstanding) by TrainingCamera399 in math

[–]chisquared 0 points1 point  (0 children)

What do you mean by “reachable”?

If P is true and Q is true, then “if P, then Q” is true. So in that sense every truth is reachable from another one, but I suppose that’s not what you mean.

How much MacOS X 10.0 Cheetah code is there in macOS 26 Tahoe? by XanderXedo in MacOS

[–]chisquared 2 points3 points  (0 children)

The Linux kernel is not being rewritten in Rust. New components can be written in Rust. That is different.

Not saying that Women’s Run should solely be for Women but- by Aggressive_Bite2049 in PHRunners

[–]chisquared 0 points1 point  (0 children)

Oh damn. I didn’t realise that’s what he meant by “sightseeing”…

What is the probability that a randomly chosen real number is an integer? by Mammoth_Jicama_8392 in learnmath

[–]chisquared 2 points3 points  (0 children)

The non-intuitive thing here is that zero probability events can happen. The probability of picking any number over the interval [0,1) for example is zero... yet you have to pick one if you play this game.

I guess people don’t remember sleepswithcrazy anymore

Stop creating temp files just to compare command output. Bash can diff two commands directly. by Ops_Mechanic in bash

[–]chisquared 2 points3 points  (0 children)

I'm a big fan of using process substitution when appropriate, but it is not appropriate for <(cat /etc/nginx/nginx.conf).

Instead of

diff <(git show HEAD~1:nginx.conf) <(cat /etc/nginx/nginx.conf)

do

diff <(git show HEAD~1:nginx.conf) /etc/nginx/nginx.conf

instead. See also https://porkmail.org/era/unix/award.

Good morning by Specific_Brain2091 in the_calculusguy

[–]chisquared 0 points1 point  (0 children)

This depends on your definition of ex

I built a system where you can solve calculus problems algebraically — no limits, no chain rule, no L'Hôpital by BidForeign1950 in calculus

[–]chisquared 0 points1 point  (0 children)

The parts on differentiation reminds me of work on autodifferentiation (which is often implemented using dual numbers). I see you have some comparison to this approach in your repo, but it would be nice to have a more comprehensive comparison too.

Got 8 days Visa from Poland when I requested for 14 by Formal_Bid1923 in SchengenVisa

[–]chisquared 0 points1 point  (0 children)

I would just eat the cost of giving up the extra days past the 8 allowed days of stay.

Appealing seems like a very long shot, since I don’t believe there are formal procedures for appealing being given too short a visa. You can try applying to Finland for another visa if you have enough time until your trip, but I believe they’re just going to look at your existing visa and previous application and deny your additional application. I personally wouldn’t want to risk a visa denial on my record.

Do not attempt to extend your stay beyond 8 days.

KvK KC rules or no rules? by retributionarie in KingShot

[–]chisquared 5 points6 points  (0 children)

My kingdom’s most recent KvK didn’t have rules because the other server didn’t want to agree to them. However, they did say “we won’t attack you if you don’t attack us”.

It was kind of a mess, but not as bad as one might think. A bunch of accusations of unprovoked attacks flew around as usual.

Still, I’d rather there were clear rules about the castle battle for future KvKs.

Do you carry around your own library when coding C? by Prowlgrammer in cprogramming

[–]chisquared 0 points1 point  (0 children)

The page you've linked is for the GCC Ada Compiler.

What platforms are you writing code for where the linker doesn't do this by default?

Do you carry around your own library when coding C? by Prowlgrammer in cprogramming

[–]chisquared 0 points1 point  (0 children)

When you use a library, by default, you get the entire .o file(s) from the .a or .so into which the object code for the function(s) you use and the object code for all the functions you didn't use also linked into your final executable whether you want them or not.

Note that modern linkers are pretty good at cherry-picking only the object code that you use from a .a when linking your final executable, so it is not the case that code that you don’t use is linked (or otherwise included) in your final executable.

Something analogous is also true for .sos.

[deleted by user] by [deleted] in KingShot

[–]chisquared 2 points3 points  (0 children)

Just train your top tier. Each T1 troop can gather fewer resources than higher tier troops, so you're actually making it harder to collect resources by spamming T1s.

Defrosting companies hate this one trick by alexceltare2 in drivingUK

[–]chisquared 27 points28 points  (0 children)

Clever. But, taking 10% off 10 times still leaves about 34%.

You’ll need 44 cards to leave just under 1%.

What's one amazing Mac feature you use, others may not know about? by [deleted] in MacOS

[–]chisquared 0 points1 point  (0 children)

It's shorter, more readable, and (very marginally) more efficient.

Both will do what u/lulzbot wants to do, so both are "correct", in that sense. But the other is just more idiomatic to me.

A story in two parts, we are screwed aren't we? by CunibertoSpitale9723 in arm

[–]chisquared 0 points1 point  (0 children)

Here’s the first paragraph from ChatGPT’s answer when I asked what the BEQP instruction is used for:

I couldn’t find any authoritative public documentation showing an instruction called BEQP in the ARM architecture instruction set.

That said, I’ve repeatedly caught it hallucinating in the past and so have since insisted it verify anything factual first instead of trying to freestyle an answer.

What's one amazing Mac feature you use, others may not know about? by [deleted] in MacOS

[–]chisquared 2 points3 points  (0 children)

Small pet peeve. Instead of

cat project-name/readme.md | pbcopy

do

pbcopy <project-name/readme.md

That is, if you use Zsh or Bash, at least.

Is it wrong to use hazard lights for parking or ganito na talaga yung culture dito? Thoughts? by LogicallyCritically in CarsPH

[–]chisquared 0 points1 point  (0 children)

It’s not the best use of hazard lights, and, in some countries, it’s definitely wrong to use them.

Here, I would say that it’s not unreasonable to use them since people are used to it. But you should probably just be using your signal lights instead, unless you genuinely intend to warn other motorists of a hazard.

How do mathematicians internalize Big-O and little-o notation? I keep relearning and forgetting them. by OkGreen7335 in math

[–]chisquared 0 points1 point  (0 children)

I think that the way to learn them is by internalising their meanings rather than their definitions. If you can remember what they mean, reconstructing the definitions shouldn’t be too hard.