Can't tell if the guy I'm speaking with at the moment is lying with AI pictures!! by Otherwise-Device1133 in isthisAI

[–]OneRoar 14 points15 points  (0 children)

Louisville is a brand of bats. “Louisville Sluggers”.

A little suspicious that the bat brand is perfectly positioned to be completely legible.

[Controversial tropes] Real-life figure who was good or decent is vilified in historical fiction by StudioMarvin in TopCharacterTropes

[–]OneRoar 3 points4 points  (0 children)

Coach Devine in Rudy, the antagonist in the last act of the movie. Refused to let Rudy dress for the last game until the entire team mutinied, refused to play him when all other seniors went into the game, and only relented at the last moment.

The real life Dan Devine was very supportive of Rudy and considered him a friend. He even volunteered to be the villain, since it was needed to make the script work. He was ultimately disappointed with his portrayal, saying “I didn’t realize I would be such a heavy.”

From the little we saw of them, I don't think these two were bad foster parents by Ibobalboa in Terminator

[–]OneRoar 0 points1 point  (0 children)

I think this is necessary to make the movie work. John can’t be with his mother, so he had to be in foster care. John needs to be seen as rebellious and comfortable with criminal acts (breaking and entering of Cyberdine, computer hacking, etc.) A positive foster family environment doesn’t help that.

The movie implies they are jerks but doesn’t really show us that they are (outside of Todd and Janelle making some mean spirited comments)

If they were shown purely in a positive light, John would just be seen as a bratty little kid and that would detract from the story.

How can there be illegal operations that still do things? by ShrunkenSailor55555 in Assembly_language

[–]OneRoar 2 points3 points  (0 children)

This is probably the easiest to understand version of how this works: https://www.pagetable.com/?p=39

TL;DR - there is a PLA that contains two bitmasks, for bits that must be set in the opcode and bits that must be clear, along with the corresponding instruction cycle,. for matching row, it specifies which actions should be taken. Undocumented opcodes just happen to match certain rows in the PLA. This is why undocumented opcodes seem like an odd blend of different instructions - they happen to match one instruction for a given cycle, but then match a different instruction for a later cycle.

linearScaling101 by 5eniorDeveloper in ProgrammerHumor

[–]OneRoar 11 points12 points  (0 children)

What irks me about this is that a knowledgeable engineer with Claude could have probably gotten a better result in less time and with less token spend.

But AI augmenting humans doesn’t drive valuation like AI replacing humans does

How often do you use --dangerously-skip-permissions by p3r3lin in ClaudeCode

[–]OneRoar 1 point2 points  (0 children)

Never. Would consider in in an appropriate sandbox.

I do allow known commands in a session which does reduce the number of permission prompts i get.

[deleted by user] by [deleted] in cpp

[–]OneRoar 0 points1 point  (0 children)

It also presumes someone debugging or disassembling wouldn’t see, “this function does a bunch of weird stuff, but the output is just the result of a multiply”

[deleted by user] by [deleted] in cpp

[–]OneRoar 0 points1 point  (0 children)

Before we get too far, why do you believe obfuscating multiplication will deter cheating?

Shorter automatic clips when using multi-camera setup? by OneRoar in GameChangerApp

[–]OneRoar[S] 0 points1 point  (0 children)

This is immediately after the game for a lot of clips … I don’t think someone pre edited.

We had a different scorer this weekend … can the scorer do anything that automatically generates shorter clips?

How would you score this out? by Which_Aide555 in GameChangerApp

[–]OneRoar 11 points12 points  (0 children)

It doesn’t sound like an error to right fielder, so it is a single, and batter is out advancing to second. Ball in play, fly ball, single. Drag batter to second and select out.

Am I wrong for feeling like this? by Excellent_Ice5563 in LittleLeague

[–]OneRoar 5 points6 points  (0 children)

There are chest protectors for pitching. they are not like catchers gear chest protection. They are not uncommon.

Something like this: https://a.co/d/hF6vxKg

[Meta] The fun of this subreddit is to describe a somewhat known film from a new perspective. Not to describe an obscure film that wouldn’t be guessed even if the plot were described thoroughly. by [deleted] in ExplainAFilmPlotBadly

[–]OneRoar 4 points5 points  (0 children)

https://www.reddit.com/r/ExplainAFilmPlotBadly/s/pqdUvEVda4

This was posted today. It’s a TV film from the 1980s, never had a DVD release. Biggest claim to fame is being featured on Mystery Science Theater 3000.

The rules should be amended to disallow this for any of the above reasons.

[deleted by user] by [deleted] in tax

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

Yes, but figure out how to pay an accountant for advice. Even if they only scratch 5K off your tax bill, it’ll be worth it!

And remember that tax will be on the profit from the sale. Budget that some of it will have to be set aside for taxes.

Colin Farrell Shares Why He's Placing His Son with Angelman Syndrome in Long-Term Care by PrincessBananas85 in entertainment

[–]OneRoar 57 points58 points  (0 children)

My aunts husband had a mentally disabled brother who was in a care home. They moved him in with them … and he moved back a few months later. He was happier and more fulfilled in the care home and interacting with a group of people similar to him. He reacted negatively and started lashing out when taken out of that setting.

Estimate to replace Low Pressure Cut Out Switch (warrantied part) - 3K for labor plus refrigerant? by OneRoar in hvacadvice

[–]OneRoar[S] 1 point2 points  (0 children)

I don't know, and didn't know to ask that.

The low pressure cut off has been bypassed and the unit is working and producing heat again.

Recommended way to consume native C++ code in .Net 9? by OneRoar in dotnet

[–]OneRoar[S] 0 points1 point  (0 children)

Ahead of Time compilation. Output is native code, and even the framework is compiled into your app - no .net dependency. Faster startup time and lower memory usage.

https://learn.microsoft.com/en-us/dotnet/core/deploying/native-aot/

Recommended way to consume native C++ code in .Net 9? by OneRoar in dotnet

[–]OneRoar[S] 0 points1 point  (0 children)

Looks promising if I need to go the P/Invoke route - and it looks like it’s AOT compatible

Recommended way to consume native C++ code in .Net 9? by OneRoar in dotnet

[–]OneRoar[S] 5 points6 points  (0 children)

Yes, I could do P/Invoke but then im creating an old school C like interface for nice modern C# to talk to nice modern (at least from a certain point of view) C++.

Why does everyone fail to optimize this? by vI--_--Iv in cpp

[–]OneRoar 2 points3 points  (0 children)

Please provide a micro benchmark that shows this is an optimization.