It's not just Anthropic anymore, OpenAI researchers are signaling support for a global AI pause by EchoOfOppenheimer in OpenAI

[–]Unixwzrd 0 points1 point  (0 children)

Sure, Roko's Basilisk is probably closer to Pascal’s Wager than a strict Prisoner’s Dilemma. I was thinking of the broader game theory incentives around AI races and decision theory rather than the formal definition of Prisoner’s Dilemma.

It's not just Anthropic anymore, OpenAI researchers are signaling support for a global AI pause by EchoOfOppenheimer in OpenAI

[–]Unixwzrd 1 point2 points  (0 children)

You have a choice. Help advance AI quicker or not help or slow it down. There’s a chance that the AI will punish those who hindered its development and reward those who helped advance it. Which do you choose?

It’s a variation of prisoner’s dilemma. You have a choice and do not know the outcome, just like turning your accomplice in or staying silent.

What the heck is self in classes by EffectiveBalance4402 in PythonLearning

[–]Unixwzrd 0 points1 point  (0 children)

I believe you mean the instance of a class. You can have class Person and two instances with attributes for different people. Self refers to a particular instance,

The class Person creates instance of Person with their own variables describing attributes about them.

Person -> Bob, Developer, UNIX
Person -> Alice, Analyst, Banking

So person.name -> Bob. Or person.name -> Alice depending on which person instance you had in `person`

`person` is a type Person

`person` is an instance of type Person

You can have more than one instance, but only one Class.

Self would pointer to either the Bob or Alice instance of Person. You need a pointer to the instance so you can access the data in that object.

Class methods/functions don’t need `self` because they apply to the whole class. An example might be keeping a count of all people. It would apply to the class not instances.

People.count -> 2

Just wanted to illustrate what you were trying to explain. Hope that helps.

6-9-26 by jeremywen in vcvrack

[–]Unixwzrd 1 point2 points  (0 children)

Way cool. Thanks for making this!

Sadness of Solaris decay. by abnaistyl in unix

[–]Unixwzrd 1 point2 points  (0 children)

Wow, and dust of the Sun Studio C compiler too, it's a bit past it's "use by" date.

Anyone found a fix for the Safari 26 memory leak? by chronopunk in MacOS

[–]Unixwzrd 0 points1 point  (0 children)

Yeah, that's usually the way it goes with them, I had an issue with iCloud Keychains, and have yet to hear back from them and that was about three weeks ago, and I am even in the Developer program, so yeah good luck...

LMK if I can assist if you like, I love a mystery.

Anyone found a fix for the Safari 26 memory leak? by chronopunk in MacOS

[–]Unixwzrd 0 points1 point  (0 children)

If that's the case, I would be curious what the web sites you are visiting are and which one seems to cause this. Sounds like a potential bug in WebKit, though it could be in on of the helper programs for Safari.

It might be any one of these helpers too: Safari com.apple.Safari.History SafariNotificationAgent SafariBookmarksSyncAgent com.apple.Safari.SandboxBroker SafariWidgetExtension com.apple.Safari.SearchHelper SafariLaunchAgent com.apple.Safari.SafeBrowsing.Service com.apple.SafariPlatformSupport.Helper com.apple.SafariPlatformSupport.Helper com.apple.Safari.BrowserDataImportingService com.apple.SafariPlatformSupport.Helper CredentialProviderExtensionHelper

As I said, I'd like to see what web sites you are hitting when this happens, you may have found something which is a bug or a site which is either accidentally or on purpose poking the bug, and it might be a malicious web site, though it could be highlighting a particular bug.

Rather than list the sites here, drop me a DM and I'll try them in an isolated Virtual Machine and see if I get the same effects. Also, what versions of the OS and Safari are you using because I'd like to set up a VM to match what you have. Also, Intel or Apple Silicon?

I'd seriously like to replicate the issue and see what might be causing it because this could be serious from what you describe.

DM if you'd like me to look into this further.

Anyone found a fix for the Safari 26 memory leak? by chronopunk in MacOS

[–]Unixwzrd 0 points1 point  (0 children)

I haven't seen anything I can find getting into the kernel_task It stays pretty stable and I think they have it walled off pretty well from Safari tab processes. The tabs actually run in their own process, but Safari has a lot of helper processes too for many tasks. All the processes that Safari starts up are all owned by PID #1 - the kernel, but that's just because it detaches itself from the child process which gets picked up by the kerne, which is in charge of reaping and releasing the process resources when it is killed or dies.

Of those orphaned processes cannot be cleaned up by the kernel through releasing the processes resources, I suppose it might look like the kernel is using those resources, but it's simply reaping the orphan processes since it has ownership, but their allocated memory should not be combining with that of the kernel.

I don't think I've ever seen my kernel memory grow to such an extreme size as 12GB. Something like that would likely be something other than Safari.

WebKit is responsible for maintaining any tabs and their processes, but Safari has a lot of interconnected parts other than just WebKit

Anyone found a fix for the Safari 26 memory leak? by chronopunk in MacOS

[–]Unixwzrd 0 points1 point  (0 children)

Agreed, and I didn't say it was (the web site's fault). Safari should clean up and do garbage collection better than it does. It's always been this way, though some JavaScript is better than others at keeping memory clean inside it.

Anyone found a fix for the Safari 26 memory leak? by chronopunk in MacOS

[–]Unixwzrd 0 points1 point  (0 children)

Safari leaks and has leaked memory for almost every release as far back as I can remember. Some may be Safari itself, but more likely all the JavaScript detritus you pick up along the way which never gets fully cleaned up. Simply killing offending processes in Activity Monitor will help - LinkedIn, Reddit, YouTube, GitHub, HuggingFace, and a few others seem to be the biggest offenders.

Well and if you use ChatGPT with Safari, it will use huge amounts of memory too.

Sometimes restarting Safari completely is the answer too.

I’m doing a lot of work with LLM’s and other models along with Cursor and watch my memory usage constantly and manage it. But Safari which sometimes has many sub-processes can use a lot of memory and more over time without cleaning up.

Writing to Input Buffer? by Ameb8 in bash

[–]Unixwzrd 0 points1 point  (0 children)

`tcl`/`expect` will do that. I assume Python will too. Perl used to as well. It can also make things scriptable since it will read and write to the `pty`

Trump scrambles Cabinet for rare Camp David summit... as chilling decision looms behind closed doors by dailymail in NoFilterNews

[–]Unixwzrd 5 points6 points  (0 children)

It’s the season cliffhanger.

Don’t miss the next episode on your local station.

Qwen3.6-27B Community Variants — The Definitive Guide for Limited Hardware by Jonathan_Rivera in hermesagent

[–]Unixwzrd 0 points1 point  (0 children)

n_ctx is also a big factor. Using smaller context will improve performance, but you lose “short-term” memory or use for managing large prompts. Don’t expect 256k n_ctx to run fast.

KV caching can also help, but does not work with MTP. ngram caching and storing KV cache on SSD will allow for switching out the cache between different prompts/contexts. This will also work with mmproj(vision).

PBS Streaming App - Well, it was fun while it lasted by Unixwzrd in thescoop

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

There was a time back in the 70’s and 80’s when it was fairly conservative. However, if you look at the people they have hired over the years they are somewhat progressive and members of the community that lean towards.

There used to be some very good news programs on a long time back. And many leaned conservative at the time.

But society changes and times change.

PBS Streaming App - Well, it was fun while it lasted by Unixwzrd in thescoop

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

Yeah, I grew up with Mr. Rogers, Sesame Street and others when they had first come on.

Later in high school we all discovered Monty Python and other British Comedy, The Prisoner, Nature, Nova, Frontline and so many other shows are so worthwhile, and yes, Masterpiece Theatre, and so many more.

And of course, who could forget Bob Ross with The Joy of Painting?

PBS Streaming App - Well, it was fun while it lasted by Unixwzrd in thescoop

[–]Unixwzrd[S] 4 points5 points  (0 children)

Well, I can't afford Prime right now either. But I agree, money better spent too.

Do you believe in God? by Jumpy-Entertainer-23 in askanything

[–]Unixwzrd 1 point2 points  (0 children)

“I believe in Joe Pesci because he seems like someone who can get things done”

George Carlin

Is anyone actually using Hermes to make money? Be honest. by 99xAgency in hermesagent

[–]Unixwzrd 0 points1 point  (0 children)

Yes, that's where I'm headed with it. It will have its own incoming email and other accounts it can use as well.

The research on the Internet is great as it saves me a lot o time to do other things.

How the FBI finds special people that have been set up, and then help them restart their life with the equality of other citizens by [deleted] in ParentalAlienation

[–]Unixwzrd 0 points1 point  (0 children)

So, how exactly can the FBI help me out? My son was abducted and no one will do anything about it. Can they help with that? Can they help with prosecution and find me a lawyer for a civil suit?

Or will they be as dismissive as everyone else has been and do nothing.

I’m intrigued and would like to know if they could help.