If you believe conservatives, Germans are allegedly confused about "soy milk" and if it is cow-based or not, but at the same time it's virtually impossible to know if a certain type of cheese is vegetarian or not (not talking about vegan!) without reading the fine print. 🤷
Posts by Marco Neumann
So you need another AI agent to coordinate all your tasks/agents 😉
"We" might not have learned anything, but the far right did: they now know that they can get away with it. And that's a problem.
We condemn grotesque sexual assaults by Israeli forces. We demand accountability amid systemic culture of impunity.
freedomflotilla.org/2026/01/02/f...
Screenshot of the Bluesky mobile app showing the following error: "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue. Message from server: Internal Server Error"
@spacecowboy17.bsky.social the "pictures for you" is returning an internal server error for me.
Anything I can do to help?
Thanks BTW for the great service! ❤️
LocalSet is quite frankly a hack, because tokio's multi thread runtime by design needs Send for efficiency.
Also if the futures exposed by a library (public or internal in a larger project) nearly every user will run into issues if they are not Send.
github.com/influxdata/d...
There are companies where I'm excited when they are using my open source code.... and then there are companies for which I would rather burn everything down and become a farmer.
@tangled.org not sure if that's intended, but both tangled.org/terms and tangled.org/privacy lead to empty pages
Also eine Art "Fidget Toy" für den Mund? 🤔
In Hamburg hat die Werbewirtschaft erfolgreich ne riesige Aktion gegen die Initiative gefahren, teilweise mit moralisch fragwürdigen Methoden ("hi, ich bin X von der Tafel. Danke , dass es Außenwerbung gibt, sonst könnte ich meine Arbeit nicht machen").
That said, I think your video was good. It shows what you've tried and how you did NOT find a conclusion, something that is super underrepresented. So I think it was good 👍
Color spaces and Co are super confusing and the internet also seems to contain a lot of misconceptions. It's specific to HDR, but I found this video here a good intro:
yedlin.net/DebunkingHDR...
Thinking about this more, I think there might be other reasons for these vtables:
1. Trait upcasting isn't stable yet (scheduled for 1.86).
2. Some interfaces like `Clone` aren't dyn safe, so you cannot dyn dispatch through a `Box`/reference.
Well, I'm not actually sure it IS faster. At least I haven't seen a good explanation of why that would be the case.
I've been thinking about vtables recently. Why is a manual implementation that captures function pointers faster than `Box<dyn Trait>`?