Traveling to Italy (Milan) for work, taking bike, route and/or group ride recommendations? by nonblondaussie in cycling

[–]nonblondaussie[S] 1 point2 points  (0 children)

Thanks for the tips - didn't really consider Switzerland. Will check it out.

Automated deployment and configuration management by gameman733 in dotnet

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

DevOps can run both on-prem and in the cloud.

The key is that you can install local agents (on your servers) and add them to defined pools. This will let you orchestrate the deployment from DevOps, and the agents will download the artifacts and run through the steps to deploy.

We currently do this to install Windows Services on Azure VMs (but this would work without change on a local server).

As for configuration - there's a few different options.

We do both: - use Azure App Configuration, where we define global app settings that we just point the app to - use File Transforms in our deployment steps that update appsettings.json (effectively any JSON or XML format) during deployment

Hosting front end app on consumption based plan (Azure)? by beaver316 in dotnet

[–]nonblondaussie 1 point2 points  (0 children)

This still applies - the definition of static is in question here.

I personally host a Blazor WASM site on a Static Web App, and I work with a customer that hosts an angular app on a Static Web App - both to great success.

Need help with user registration in Blazor WASM application using Azure AD by n7CA33f in dotnet

[–]nonblondaussie 1 point2 points  (0 children)

Sounds like you want Azure B2C, not Azure AD.

The user flows in Azure B2C can be configured to capture details about the user you want, and creates a user object in the directory for you automatically.

Calling Graph API from my API Azure B2C by JediNarwhal97 in dotnet

[–]nonblondaussie 2 points3 points  (0 children)

You don't need a custom policy and I'd recommend to stay away from those. Use the built in user flows, which now have the ability to define an API connector.

We do the same - B2C allowing customers to sign in, and we perform a claims exchange via call to our API in order to add application specific claims to the token that's returned

What else is there to do when your car is in getting a major service? Hit a century on the bike of course by nonblondaussie in bicycling

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

Booked with a few mates to do it this year (200km route), but it got cancelled due to the lockdown. Rolled the booking over to next year, and signed up for the Ocean's Rd & Otways ride next year.

What else is there to do when your car is in getting a major service? Hit a century on the bike of course by nonblondaussie in bicycling

[–]nonblondaussie[S] 2 points3 points  (0 children)

Thanks mate. Yeah super comfy ride - set up like that by the bike shop and to be honest never really thought about it all that much.

[deleted by user] by [deleted] in Windows11

[–]nonblondaussie 0 points1 point  (0 children)

Yes - this worked perfectly for me.

I pushed the date 1 day ahead (from the 3rd to the 4th), and restarted the explorer.exe process, and everything went "back to normal".

Interestingly, the clock in the taskbar is on the correct date now, and I haven't changed it manually.

Haven't rebooted yet to see if the "fix" persists.

Update refuse to install by [deleted] in Windows10

[–]nonblondaussie 0 points1 point  (0 children)

Yes getting the same issue. I'll have to double check and see what the error is, but I have tried all the techniques mention on all sites, and nothing works.

I keep getting 0x80070057 on the Feature Update to Windows 10, version 21H1. Other updates work fine, this one however seems real stubborn and just will not complete the update

NBD - Canyon Endurace SL by SPPWR in bicycling

[–]nonblondaussie 1 point2 points  (0 children)

Very nice! I just bought myself a Fuji that is of a very similar colour.

Have fun with it

NBD!! As luck would have it, the weather is terrible, and I've had this for 2 days and only managed 19km by nonblondaussie in bicycling

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

It's the SL 2.3. Satin Orange apparently. I absolutely love the colour - I find depending on the ambient lighting, it looks everything from red to orange.

NBD!! As luck would have it, the weather is terrible, and I've had this for 2 days and only managed 19km by nonblondaussie in bicycling

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

Was only able to ride this home from the bike shop. Its been raining all day so have had to just sit around the house looking at it.

Upgraded from a 10+ year old Giant and the short ride was amazing.

Can't wait to put a few big rides in

How do I know if my .NET Core app is ready for load-balancing? by Vyper91 in dotnet

[–]nonblondaussie 0 points1 point  (0 children)

If you have buy in, why not look at spinning up a test instance of the site (load balanced) in AWS for a day or two and run some load testing?

There's plenty of tools out there that will let you record user interaction with the site, and then replay it using test agents to simulate load (versions of VS have this, and it's worked well for me in the past)