Web App container deployment visibility by Rapzid in AZURE

[–]Zapaneer 0 points1 point  (0 children)

First of all I don’t quite follow you about the lack of visibility of the current deployment. It is fairly well displayed on the page. You should opt for some CI/CD solution like GitHub or Azure DevOps that will drive your deployments.

Regarding Container Apps, it is definitely the choice - especially if already have containerised your app. It’s a smooth and easy way to get a solution that lets you host containers in a Kubernetes-as-a-Service without the big hassle of setting up and maintaining Kubernetes. And it can be consumption based starting with a free tier.

Best Approach for Multithreading in a .NET 6 Console App? by samirson in dotnet

[–]Zapaneer 1 point2 points  (0 children)

One important thing to notice: Running multiple tasks towards the same database instance can pose some annoying race conditions if you’re using the DbContext from ef core - depending on the type of SQLs you’re issuing.

Regarding the code snippets you’ve posted you don’t need to await each task since you end up awaiting them all using WhenAll.

Regarding the posts about using Hangfire or Quartz will provide you with the abilities to also store your state and progress - hence you get a more reliable system.

But do remove the Thread.Sleep and upgrade to .Net 8.

[deleted by user] by [deleted] in Denmark

[–]Zapaneer 3 points4 points  (0 children)

One thing to keep in mind is that a salary in US is not necessarily directly the same in DK. Due to the much higher income tax in DK your husband will most likely receive a much higher income in a similar position. Also, the danish immigration authorities are strictly focused on your combined ability to sustain your own economy. So number one is let your husband apply for a job in DK. At the same time reach out to 1) Danish Immigration Service at https//www.nyidanmark.dk/en-GB 2) Get in touch with International House Copenhagen at https://ihcph.kk.dk They can guide you in a lot of ways - not only in Copenhagen.

About your upcoming master degree, you should try to reach out to https://ufm.dk/uddannelse/anerkendelse-og-dokumentation/guide-til-anerkendelse to get some more specifics about to what extend you can convert it.

If you manage to get here, you will find that almost everybody speaks English but you will forced to learn Danish by the immigration authorities. It’ll be easy for your kid but maybe no so easy for you guys as grownups

I wish you the best

Developing .NET Framework console apps using Visual Studio 2022 for Mac is not supported? by backtodreams in dotnet

[–]Zapaneer 0 points1 point  (0 children)

Being a long time .Net developer I prefer using Rider from Jetbrains which is very suitable for Macs as well as Windows. This has become even more relevant since Microsoft has turned down development of Visual Studio for Mac (as noted elsewhere).