mastodon.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
The original server operated by the Mastodon gGmbH non-profit

Administered by:

Server stats:

356K
active users
Continued thread

Fucking Twitter shouldn't be the primary support channel for something like Azure. What are they even doing? It's the only place there's any kind of acknowledgement or guidance on last night's outage.

I can't begin to explain how frustrating it is when Azure _knows_ there's an outage but won't update the status page to let everyone know so you have to spelunk through random Twitter threads and other unofficial signals.

Sometimes I feel bad when I discover a new bug in my own apps, but then I try to file a claim with CareFirst or book a hotel with Marriott and figure if they can build horrible buggy software, why can't I

@swimburger If you wanted to get fancy, I’d do option 1 as the de facto and then offer an optional class-based option on top like option 3, something like:

```
public abstract class PartialTranscriptHandler
: IDisposable
{
public PartialTranscriptHandler(Transcriber transcriber)
{
transcriber.OnPartialTranscript.Subscribe(HandleAsync);
}

public abstract async Task HandleAsync(PartialTranscript transcript);

// Unsubscribe on dispose
}
```

Dave Glick boosted

After recent discussions about C# events and their drawbacks, prototyped a couple of alternative event APIs for a Speech-To-Text library that I'm working on.

Please let me know which one you prefer, or better alternatives. 🙇

#dotnet #csharp
gist.github.com/Swimburger/6f8

Gist3 options of event implementation for transcriber class3 options of event implementation for transcriber class - events.md

What the hell happened with Rebel Moon? I don’t really care about Snyder one way or another, and I’m generally a pretty easy to please movie watcher. I think I’ve given like three things a thumbs down. But this is atrocious. Like, it’s literally unbelievable. The acting is bad. The plot is bad. The cinematography and effects are bad (!?). The whole thing seems like a student film. What did Netflix spend all that money on lol? The whole thing is one long cutscene from a mediocre 90s video game.

Continued thread

It’s not just Summit either. I personally feel really disconnected from that community these days. A lot of that is just me, but a not insignificant portion is also the splintering. It was a nice moment in time and it sucks that one awful dude basically blew it all up.

Something that hasn’t hit me until this week is how much I miss the “universal water cooler” that was the Twitter .NET OSS community. Since Twitter became untenable to most (including me) folks have scattered to a bunch of different places, and some have left social networks altogether. We’ve lost something. At Summit it provided a virtual space alongside the physical one and helped coordinate and tie everyone together. Not sure I appreciated how much that contributed to the experience before.

I'm a big fan of unit testing, and I've done some classic UI testing with a JS-based test runner, etc. But I'm enjoying playing with a new kind of test where I spin up a front-end *and* back-end server inside the test (one API server per test!), injecting test services like a fake database and bypass auth, and then use Playwright for orchestrating unit-style UI tests. Not sure what to call this style of testing though. I've been leaning towards "UI unit tests" but that's clunky. Suggestions?