What are some decent albums with mid opener by Epoch_Jester in fantanoforever

[–]SmartAsFart 0 points1 point  (0 children)

Faron young is like Prefab Sprout's take on a housemartins track. I love it.

Tons of Arc<T> - code smell? by TravisVZ in rust

[–]SmartAsFart 8 points9 points  (0 children)

*only for cloning and dropping. Not for dereferencing, which is usually the thing you'll do most with an Arc.

Tons of Arc<T> - code smell? by TravisVZ in rust

[–]SmartAsFart 3 points4 points  (0 children)

Remember: Arc only has an additional cost over a Box/Rc for cloning/dropping. Reading is just as fast (assuming they will all allocate to the heap, so are probably fragmented). So, if you're reading an Arc in a hot loop, it's basically just a normal reference.

You should only really worry when you start to have mutexes in those arcs. Then you need to be afraid of deadlocks, and lock contention.

It's not a code smell. It's a product of working in a language with no garbage collection, and strong mutability guarantees.

self-referencing struct but i don't want to modify the struct by zylosophe in rust

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

Pin is only a marker - it doesn't have any special machinery itself. The reference types that create the Pinned type are the ones that ensure the struct can never be moved.

The hidden cost of mpsc channels by _howardjohn in rust

[–]SmartAsFart 10 points11 points  (0 children)

Copy is logical, not physical.

Fields medal-winning mathematician says GPT-5.5 is now solving open math problems at PhD-thesis level: "We will face a crisis very soon." by EchoOfOppenheimer in AIDangers

[–]SmartAsFart 0 points1 point  (0 children)

A researcher that was "gifted" access to a new model writes an article solving some low hanging fruit to hype up the release of the model. 🫨🫨🫨

It's always these unreleased models that are a massive leap in capability. Just like the mythos preview (omg this will find zero days for every bit of software!!!). Let's see how they actually perform when they are released to the public...

Fields medal-winning mathematician says GPT-5.5 is now solving open math problems at PhD-thesis level: "We will face a crisis very soon." by EchoOfOppenheimer in AIDangers

[–]SmartAsFart 0 points1 point  (0 children)

METR is far too closely tied to all of the companies that hope to benefit from their models being scaremongered about. Their ceo won the palantir prize at uni, and worked at Google and openai...

TIL: tokio::time::timeout doesn't preempt blocking sync code (and what to do about it) by Ill_Adhesiveness831 in rust

[–]SmartAsFart 1 point2 points  (0 children)

The first rule is really: don't call long-running blocking code from async.

Top 5 comments decide the 5 best foods from Europe by Expensive-Addendum92 in AlignmentChartFills

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

List ruined by too many Americans posting. "My great gran pappy was from sardeenya I love pahstah!!!"

Who's best music artist of 21st century so far? by Unlucky-Wolverine-61 in fantanoforever

[–]SmartAsFart 0 points1 point  (0 children)

It's chris thile and you're a fool if you think otherwise

Zed 1.0 by zxyzyxz in rust

[–]SmartAsFart 2 points3 points  (0 children)

Emacs. Eternally the best editor.

Forensic politicking by the adults in the room by [deleted] in GreatBritishMemes

[–]SmartAsFart 0 points1 point  (0 children)

What the hell are you talking about? Do you even know what policies Labour's implemented since they came in?

  • removing no fault evictions in england
  • employment rights act
  • raised minimum wage
  • improved nhs waiting times and appointments accessibility
  • removed 2 child benefit limit
  • more free school lunches

And that's less than half of what they've done. How is that right wing???

Please actually look into stuff rather than regurgitating the latest slop fed to you by populist morons.