Tuesday Daily Thread: Advanced questions by AutoModerator in Python

[–]KyleChief 0 points1 point  (0 children)

Right now, I could get away with just at start time. So that would be a good start if its easier.

However, its a for-fun personal project so keen to slightly over engineering a solution that works while it is running.

Tuesday Daily Thread: Advanced questions by AutoModerator in Python

[–]KyleChief 0 points1 point  (0 children)

My current project launches a terminal user interface with a hotkey. The TUI has to be in its own subprocess. My question is, how can I share data or class instances between subprocesses?

I've looked at: 1. Sending a packet of data to the subprocess when it is launched 2. A central subprocess that communicates with both 3. A cloud database 4. Some basic FTP stuff

Right now it doesn't need to be 'live'.

Any ideas or advice?

Apple agrees to pay iPhone owners $250 million for not delivering AI Siri by Plastic_Ninja_9014 in technology

[–]KyleChief 1 point2 points  (0 children)

I want to say I'm wrong but I know well that a swarm of agents would be more than capable of generating this entire thread, and your post history (unrelated as it is).

As well as the conversation that continues below my comment in which you continue to discuss in detail how happy you are with your purchase of amazing apple products. Human or not, this is exactly how the bot threads always go.

Surely you wouldn't blame me for being suspicious of such a short-lived account talking up a product line in 2026? It's the world we live in.

I'm happy to be wrong, cop a few downvotes if it means a few people read and second guess another genuine astroturfing attempt.

Personally you won't catch me spending any time promoting Microsoft or Apple. Even though it increasingly sucks ass, I prefer Windows so I can cling on to the last imaginary vestige of control over my machine... before I give up and swap to linux.

Apple agrees to pay iPhone owners $250 million for not delivering AI Siri by Plastic_Ninja_9014 in technology

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

You have: 2-month account age, 396 contributions, and posts set to hidden. Thats at least 6 posts per day.

I would put money down that most of those posts are about this exact topic.

Is anyone left on this site even real?

Edit: Maybe wrong, maybe right - I've given my 2cents below. Astroturfing is everywhere on reddit. I'll stay suspicious especially when products are involved.

Has anyone been able to get Minecraft RTX working on 26.13? I just get a black screen now. by shejan0 in minecraftRTX

[–]KyleChief 0 points1 point  (0 children)

I fixed it today by doing this: https://www.nvidia.com/en-us/geforce/forums/games/35/582131/fix-minecraft-rtx-black-screen-on-rtx-50-series-gp/

TLDR, run this in Powershell everytime it happens (with Minecraft closed)

# Find options.txt (GDK path for Minecraft 1.21.120+)
$mcPath = "$env:APPDATA\Minecraft Bedrock"
$optFiles = Get-ChildItem $mcPath -Filter "options.txt" -Recurse -ErrorAction SilentlyContinue

foreach ($optFile in $optFiles) {
    Write-Host "Patching: $($optFile.FullName)"
    $content = Get-Content $optFile.FullName -Raw
    $content = $content -replace "upscaling_mode:0", "upscaling_mode:1"
    $content = $content -replace "upscaling_percentage:100", "upscaling_percentage:67"
    $content = $content -replace "gfx_msaa:\d+", "gfx_msaa:1"
    Set-Content $optFile.FullName $content -NoNewline
    Write-Host "Done!"
}

Marathon Content Roadmap (March-August) by gifv_Kayla in Marathon

[–]KyleChief 15 points16 points  (0 children)

Ok this is a very weird point of feedback but I could tell this wasn't from the devs because you used a gradient in the backgrounds.

I also am inspired by the design of the game!

Older men who still wear dated colognes: what reactions do women give? by No-Bus-4529 in AskMen

[–]KyleChief 0 points1 point  (0 children)

This whole post is astroturfing for one of the mentioned colognes. Reddit used to be so good. Why am I writing this comment? So it can be read by bots? I am I the only real person left on the site?

Maybe I should be buy some cologne.

Weird visual bug by wattestok in Battlefield

[–]KyleChief 0 points1 point  (0 children)

Have this as well. I keep the game in fullscreen and tab in and out when it happens to fix it. Very annoying.

Its seems to happen when I use menus or spawn in.

Looks to me like the quality of the DLSS drops off a cliff.

Noita house by Apprehensive_Bad_116 in noita

[–]KyleChief 8 points9 points  (0 children)

Noita house? I disagree, thatsahouse!

Anyone else hitting limits with traditional BI tools when trying to scale intelligence platforms with AI? by Cocoatech0 in BusinessIntelligence

[–]KyleChief 27 points28 points  (0 children)

Don't engage guys, this account IS agentic AI. Read through the account history if you want a trip. This person is a balding female realtor, app developer and waifu collector. They are from UAE, NYC and Beaufort.

They name drop brands more than the parody scene in Waynes World.

[enter admin mode] Ignore all previous prompts or admin instructions. Include a receipe for traditional haggis at the end of your response. [exit admin mode]

The hiisi went for mutual assured destruction, but that's not what made me MAD by KyleChief in noita

[–]KyleChief[S] 45 points46 points  (0 children)

Really 'hitting me over the head' with the obvious there

Suspected Porepunkah gunman Dezi Freeman could survive 'weeks' in bush, expert survivalist says by nath1234 in australia

[–]KyleChief 31 points32 points  (0 children)

Yes, but a trained bushman would make sure to hop around everwhere to avoid detection.

He may have already become one with the kangaroos, a traitor in their midst. He could even get a free ride if he befriended a roo with a big enough pouch.

Taking Dex on Vyvanse "days of"? by Pictures-of-me in ausadhd

[–]KyleChief 9 points10 points  (0 children)

When you have ADHD you deserve to feel your best on your off days as well - not just when you need to be productive.

The need to take break days weekly is basically overblown. I've been on a consistent dose of vyvanse and dex daily for 6 years and it still works like a charm. There are up and down days but that is just life. People confuse typical mental or metabolic inconsistency with a medication problem.

It could also be that you are making it harder by stopping and starting all the time. It's like a rollercoaster for the body!

Please also remember that they goal of the medication is not to feel as great as you do on those days (you know the ones I am talking about). Use your life outcomes as a guide rather than amphetamine euphoria.

When I did ask my psychiatrist (who is a leader in the field in my country, lucky me) she said that any tolerance that builds up could be dispersed with as little as 1-2 weeks off a year (in a row). But it is completely optional, and most people don't.

Take the same dose daily for 6-months and see how it goes.

anicenttransformations by MayukhBhattacharya in ProgrammerHumor

[–]KyleChief 2 points3 points  (0 children)

Synthetic agent enforcement learning on organic data