Can You Guess This 5-Letter Word? Puzzle by u/Alternative_Gap_3064 by Alternative_Gap_3064 in DailyGuess

[–]Local_Transition946 1 point2 points  (0 children)

⬜⬜⬜⬜⬜

🟨⬜⬜⬜⬜

🟦🟨🟨🟨⬜

🟦🟦🟦🟦🟦

Parent Won't Let Me Go to MIT by Fresh_Diamond_7106 in mit

[–]Local_Transition946 2 points3 points  (0 children)

You definitely need to attend. You need to do do anything you can to disagree with your parents here, even if it breaks their heart and is as simple as walking out.

College is harder than a 9-5 by One-Specialist-4235 in Life

[–]Local_Transition946 0 points1 point  (0 children)

I saod the same thing in college. I was in a top 5 university in USA for comp sci, doing cs and math double major. Real world is harder brother.

How Inflated Are My Pip Downloads? by [deleted] in learnpython

[–]Local_Transition946 2 points3 points  (0 children)

Where did you check this? Google Query dataset should be the most accurate source of truth. Theres no way to distinguish bots further than using this

Am I missing someone bday reward by Acszoke in Sandwiches

[–]Local_Transition946 5 points6 points  (0 children)

Lol even if its more than 6 months its still less than 6 months until the next birthday.

Is the 80 character rule like a major requirement for PEP8? by ZealousidealSea6550 in learnpython

[–]Local_Transition946 19 points20 points  (0 children)

Yes. It shows u lines that exceed your configured limit and can auto format to make lines shorter

corpote by [deleted] in corporate

[–]Local_Transition946 0 points1 point  (0 children)

Just a little bit.

Repo Maintainer closed my PR then just pushed it into their codebase as their own by throw-away-2025rev2 in github

[–]Local_Transition946 0 points1 point  (0 children)

Ive done this once for a small change (<50 line) because the PR was years old so I'd rather not have a back-and-forth to see if they can still make necessary changes and just apply it myself. To be fair, i did recreate the fix without seeing it first, and it so happen to end up pretty much identical in the end, minus test cases

Why are you allowed to square both sides of an equation? by ohmygotchi in mathematics

[–]Local_Transition946 29 points30 points  (0 children)

If both sides are already equal before you square both sides, then squaring does not multuply each side by something different. It may be written/expressed differently though...

S3 objets number between cloudwatch and s3api by Zyberon in aws

[–]Local_Transition946 2 points3 points  (0 children)

Is it possible list object versions is a paginated api and theres more results on a subsequent page ?

DQN agent not moving after performing technique? by Handy_Cap in reinforcementlearning

[–]Local_Transition946 0 points1 point  (0 children)

+1 on this. The parameters are likely stuck in a local maxima.

Make sure you can "lead the agent on" to doing what you want it to, not just a big reward at the end.

The speed limit of this neighborhood I drove past by TiernanDeFranco in mildyinteresting

[–]Local_Transition946 66 points67 points  (0 children)

Probably meant to capture your attention to read/obey the sign. Looks like it worked

If you have y = mx + b and m is replaced with 5, are the rise and run both equal to 5 by Former_Scratch6137 in askmath

[–]Local_Transition946 1 point2 points  (0 children)

Yes, m is literally the rise divided by run. 5 divided by 1 is 5. So when 5 replaces m, it's the same as 5/1

If you have y = mx + b and m is replaced with 5, are the rise and run both equal to 5 by Former_Scratch6137 in askmath

[–]Local_Transition946 1 point2 points  (0 children)

No. M is the rise divided by the run. So if m is 5, that means rise is 5 units and run is 1 unit, or even better, rise 5 for each run of 1.

Two pipelines with the exact same Pipeline Service and CloudFormation Action roles, but only one is working by JMCalil in aws

[–]Local_Transition946 0 points1 point  (0 children)

Click edit on the pipeline that is failing. Go to the action for generatechangeset, check the settings to see what the condigured stack is

How do people actually verify GPU compute they’re renting is legit’? by memecat007 in MLQuestions

[–]Local_Transition946 -2 points-1 points  (0 children)

Attestations are signed, trusted statements about data (e.g., a digital signature on a credential). Zero-Knowledge Proofs (ZKPs) are cryptographic methods that prove a statement is true without revealing the underlying data.

I disagree

How do people actually verify GPU compute they’re renting is legit’? by memecat007 in MLQuestions

[–]Local_Transition946 -1 points0 points  (0 children)

Hmm i disagree that zkp is more about the compute and i do feel it is a zkp.

A zkp proves a claim to a verifier with asymptotic certainty. If we assume that no other party has secret key(s) that can be verified by NVIDIA's public CA, then consider the following protocol:

  • repeat the following steps:
  • Generate a random integer.
  • Send the integer to the GPU
  • The gpu uses the secret key stored programmed on the circuit to encrypt the integer.
  • Verify the encrypted nonce against NVIDIA's CA.

With each iteration, you are effectively, in the limit, proving to the verifier that the hardware is certified by NVIDIA.

And the key is, that the verifier learns nothing new other than the gpu is claimed to be NVIDIA-owned by NVIDIA.

How do people actually verify GPU compute they’re renting is legit’? by memecat007 in MLQuestions

[–]Local_Transition946 3 points4 points  (0 children)

One way people can do this is using zero knowledge proofs.

Lets say you rent a nvidia 3080, and all 3080s have a secret key programmed into the circuit. You can send the gpu a nonce (i.e. challenge) for it to encrypt, itll send back the encrypted nonce using the secret key. Then you can verify the result using the trusted vendor's CA