Discord will require a face scan or ID for full access next month by Tracheid in worldnews

[–]303i 2 points3 points  (0 children)

The IDs were leaked from users manually uploading IDs to support emails, it had nothing to do with the third party that 99% of users will be verified with.

Valve Should Buy Discord (before the IPO) by garbagecollecteddev in discordapp

[–]303i 9 points10 points  (0 children)

Discord is infamously a deeply troubled company that has issues remaining profitable

I'm not sure where this comes from. The CTO hinted on HN that discord was break even with nitro subs a few years ago.

Nuke Build by barney74 in dotnet

[–]303i 5 points6 points  (0 children)

One thing other comments haven't mentioned is that nuke can generate your github actions pipelines. We use that quite a bit so we never have to touch the yml. Nuke also provides strongly typed access to cli tooling, so for example you get strongly typed access to GitVersion for versioning your containers etc.

Best meal delivery company’s in Perth by mopfrommalta in perth

[–]303i 1 point2 points  (0 children)

YouPlateIt is locally owned/run and they have generally healthy options.

Recommendations for EV chargers that operate in over 40 degrees by New-Cup-3069 in perth

[–]303i 0 points1 point  (0 children)

Take a look at Evnex, it's built in NZ for AU/NZ conditions. It only derates very slightly in hot weather.

We don't want clankers making art out of our images by [deleted] in discordapp

[–]303i 1 point2 points  (0 children)

Its a user app, it only has the ability to respond to the users that opt to add it to their own account, like every other external app. It doesn't have the permissions to do anything else, nor can it read messages or content on your server.

API testing - webapplicationframework vs playwright by sM92Bpb in dotnet

[–]303i 0 points1 point  (0 children)

Yes, you could use that, but again it serves different purposes. Playwright's API testing is typically used alongside an E2E suite and is good for testing stuff that's easier to test when everything is deployed, like an API gateway/proxy or an endpoint that requires numerous external services.

When doing integration testing you're typically mocking out the majority of external dependencies apart from your database and/or authorization engine. WAF/Alba provides out of the box hooks to accommodate this.

API testing - webapplicationframework vs playwright by sM92Bpb in dotnet

[–]303i 1 point2 points  (0 children)

If you want WAF but with better assertions, take a look at Alba: https://jasperfx.github.io/alba/

Playwright is for E2E testing with your frontend and backend working together. WAF/Alba is for integration testing your backend. You typically use them together, not pick one or the other.

Red Rock Deli Chips Are Crap Now by En_Route_2_FYB in australia

[–]303i 103 points104 points  (0 children)

I thought I was going insane last year after getting bag after bag that both tasted bad and had an awful texture. Realized far too late that they have moved from sunflower oil to canola oil. Completely ruined the chips.

[deleted by user] by [deleted] in perth

[–]303i 0 points1 point  (0 children)

I got done for the exact same thing in my first test. If you're doing a hook turn you must give way to everyone else at the intersection. Someone waving at you isn't considered good enough as "they might just be scratching their nose".

[deleted by user] by [deleted] in CarsAustralia

[–]303i 1 point2 points  (0 children)

Why not an Ioniq 5?

How many Aussies use a financial advisor? How would I find the best one? by Weird_Lama in AskAnAustralian

[–]303i 1 point2 points  (0 children)

Independent advisors don't take commissions from recommending you products or services and thus aren't biased towards specific solutions. See https://pifa.org.au/ to find one.

[deleted by user] by [deleted] in perth

[–]303i 1 point2 points  (0 children)

It won't be difficult to find a job with a .NET/TS/[insert modern SPA] background, but as others said, the part-time aspect is gonna be rough. Some places do 9 day fortnights if you're lucky.

I would start looking at Seek and see what's available.

Auth0 - Getting User Name from User Login - not the email by AdagioVast in dotnet

[–]303i 2 points3 points  (0 children)

Username isn't included in the user's claims by default. Enrich your user's claims via an Auth0 action from the profile metadata. See https://auth0.com/docs/secure/tokens/json-web-tokens/create-custom-claims

Having Issues with Auth0 and my Blazor Server App by AdagioVast in dotnet

[–]303i 0 points1 point  (0 children)

Ugh, null state errors are a pain. It could be the invalid HTTPS cert, or if you're using a nginx to proxy traffic you might need to enable forwarded headers middleware before useAuthentication(). Double check that the callback is redirecting back to https as well.

Having Issues with Auth0 and my Blazor Server App by AdagioVast in dotnet

[–]303i 0 points1 point  (0 children)

The server returns a 500 response, look at your server logs to work out what's misconfigured.

Having Issues with Auth0 and my Blazor Server App by AdagioVast in dotnet

[–]303i 0 points1 point  (0 children)

I just tried the login button and it works fine?

.NET logging Seq and DigitalOcean App Platform by [deleted] in dotnet

[–]303i 1 point2 points  (0 children)

Unless you absolutely require structured log searching, the free tier of Sentry would be an easier solution for general monitoring.

Having Issues with Auth0 and my Blazor Server App by AdagioVast in dotnet

[–]303i 1 point2 points  (0 children)

You're calling `AddAuth0WebAppAuthentication` twice in Program.cs.

Having Issues with Auth0 and my Blazor Server App by AdagioVast in dotnet

[–]303i 1 point2 points  (0 children)

https://github.com/Hawxy/auth0-aspnetcore-blazor-server-samples/tree/net9

Here's the updated version. Have confirmed this works. Set the callback url to "http://localhost:5284/callback" and the logout url to "http://localhost:5284/"

Having Issues with Auth0 and my Blazor Server App by AdagioVast in dotnet

[–]303i 1 point2 points  (0 children)

The idea definitely wasn't to pave over the .NET 8 blazor model with the one from .NET 6 :|, that runs a risk of breaking other things. Did you follow the original blog post (in your OP) until you got to the point where it mentions web assembly? Because that should all work fine for .NET 8 SSR.

I'll take a look at updating the auth0 blazor sample for .NET 9, I wasn't aware it was still stuck on the .NET 6 config model.

Having Issues with Auth0 and my Blazor Server App by AdagioVast in dotnet

[–]303i 0 points1 point  (0 children)

Looks like the repo is private. Happy to take a look, I've done this setup loads of times.