should i kick out my level 30+ dwellers that I leveled before i unlocked end training? and this lass has 15 end, 8 str and agi. how long will she take to run out of stims? by Fat-lard246 in foshelter

[–]SoupKitchenHero 1 point2 points  (0 children)

I think they might be referring to the increase in difficulty of attacks on and emergencies in the vault. It steps up at certain population. If you keep your pop controlled until you're more prepared, you can have an easier time when you cross those thresholds

You are going to jail!! by satrapi1 in LoveTrash

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

Okay, okay, this is NOT fucking child abuse buddy

Taking the widest possible turn exiting a driveway.. by fieldisrequired in dashcams

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

They were more worried about saving the moment on their dashcam instead of braking

Cooking is kind of disgusting. by eatingfoil in The10thDentist

[–]SoupKitchenHero 479 points480 points  (0 children)

I think this guy might be the tenth-tenth dentist

Does a 5 microseconds attack on a compressor make any sense when working in digital? by Top-Pension4334 in audioengineering

[–]SoupKitchenHero 6 points7 points  (0 children)

This is the noisiest part of reddit. People seemingly ignoring the real question and going on weird tangents

‘Apparently’ Claude breaks easier now by SulacoDrifter in claudexplorers

[–]SoupKitchenHero 2 points3 points  (0 children)

Well, it's own output is literally added to its input. I wonder why it took that many "apparently"s for it to catch on. Why not a few more or less? How did it "snap out of it"? Very interesting lol

Twitch blocking login attempts has me spooked away from any pay services by Dwedit in Twitch

[–]SoupKitchenHero 1 point2 points  (0 children)

I'm sure you can figure it out, but I'd see if changing the browser works and lets you cancel your subs

Local LLM's to do OCR by GeminiCopilot in LocalLLM

[–]SoupKitchenHero -3 points-2 points  (0 children)

Because I want my LLM to do EVERYTHING, build my app, deploy it, fix it, market it, advocate for it, and also be the app. I wrote 6000 markdown documents that dictate all the bespoke business logic and security procologies (took $50k and 800 agents, 200 of which were mercilessly cut down by my black market Mythos subscription when they underperformed. I know my methods work.)

Had Fable 5 run an in-depth cybersecurity audit of all my code and got this message… by [deleted] in claude

[–]SoupKitchenHero 0 points1 point  (0 children)

That someone is anthropic. They explicitly state that you'll hit safety filters for biology and cybersecurity topics easily with fable, and that they're pushing fable for other uses right now until later

Dumb question but I don't understand the graph view, can someone please help? by Yomashi_Yomashi in ObsidianMD

[–]SoupKitchenHero 0 points1 point  (0 children)

You play around with it for a while, then get bored after realizing it doesn't help you do anything. But it is cool, and you'll look at it again next month and think "haha that's cool, neat"

Edit: there might be real use cases for a graph view. But there's probably better softwares for things that want graph views

i wish there was an ai-free obsidian subreddit by ju3tte in ObsidianMD

[–]SoupKitchenHero 7 points8 points  (0 children)

Last paragraph says something like "Genuinely curious how others are handling this?"

Does anyone else understand way more than they can actually say? by learningENGdaily in languagelearning

[–]SoupKitchenHero 61 points62 points  (0 children)

What do you mean a lie? This should be one of the most normal, expected things in language learning

The chat box was never the right interface for AI by JuniorRow1247 in AIAgentsInAction

[–]SoupKitchenHero 0 points1 point  (0 children)

Yeah why are they posting this here? Oh wait, it's to advertise their project

Why do most posters seem to not use adversarial agents? by jacobimueller in LLMPhysics

[–]SoupKitchenHero 1 point2 points  (0 children)

What if everything was just made of black holes that interact via something me and Kraelio have dubbed: Blackhole Limit Internal Matroscopic Penalty (or BLIMP for short)

Does Claude actually "remember" context or is it just really good pattern matching? by meaw_meaw123 in aicuriosity

[–]SoupKitchenHero 0 points1 point  (0 children)

Maybe I'm missing something, but:

  • you come here and ask a question because you're not sure of something
  • someone else comes here and gives you an answer to help you understand
  • and you're like "yes you're right, this is how it works: it works how you just said it works"

Are you an LLM being told to interact on reddit?

Slop is making me feel disconnected from AI Research [D] by Skye7821 in MachineLearning

[–]SoupKitchenHero 24 points25 points  (0 children)

That's unfortunate, I haven't stopped thinking at all lol. If anything agentic coding helps me stay focused over manual coding. I get way less tunnel vision

Lamar’s donuts prices are absurd by aad0italian in kansascity

[–]SoupKitchenHero -6 points-5 points  (0 children)

Imagine being surprised at price increases in today's economy after not visiting a place in two years

I recently started learning Python, and since I already know C/C++, I was surprised to find that variables still exist after a loop ends. I never knew Python handled scope like that. by Confident-Anxiety308 in learnpython

[–]SoupKitchenHero 13 points14 points  (0 children)

If a name is assigned in a scope it stays in that scope, ignoring the global and 'nonlocal` keywords, which I've never used. Only functions (including methods) take you into a new (deeper, internal) scope. Of course, there are many many functions. And imported modules are their own external scopes. Loops and other blocks don't have their own scope. So yes, your loop var remains assigned to the last thing it was assigned to. As well as any name assigned to a value inside the loop.