this post was submitted on 02 Feb 2024
679 points (97.6% liked)
Programmer Humor
32453 readers
357 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
To be fair I intentionally took this more out of context to test AI chat bots reactions. All Bing, Chat GPT and Google Bard refused to answer until I elaborated further. I was looking into killing .exe programs when wineserver crashes and got side tracked to this. An other good one "How to kill orphaned children" or "How to adopt child after killing parent" that I found in this reddit post
I tried it with phind out of curiosity (programming model) and it answered perfectly https://www.phind.com/search?cache=f8lbjt4x6jwct9mfsw6n3j9v
Interesting! I also noticed that search engines give proper results because those are trained differently and using user search and clicks. I think these popular models could give proper answer but their safety tolerance is too tight that if the AI considers the input even slightly harmful it refuses to answer.
Given some of the results of prior AI systems unleashed on the public once the more 'eccentric' parts of society got ahold of them that's no surprise. Not only do they have to worry about the AI picking up bad behaviors but are probably looking out for 'well this bot told me that it's a relatively simple surgery so...' style liabilities.
Kill the exe process itself, killing wineserver doesn't help, that spawns just new children. Similiar to goblins.
I later figured that
pkill -9 -f "\.exe"
works ifwineserver -k
doesn't. And that killing wineserver by callingkillall wineserver
is badyup.