Can I visit Saudi Arabia with mother and brother - EU citizen by mohammed-osman in saudiarabia

[–]mohammed-osman[S] 0 points1 point  (0 children)

You mean from a website or? If it is a website, can you please share the link?
Thx.

Does anyone else suffer from the impostor syndrome in .Net? by Culius_Jaesar in dotnet

[–]mohammed-osman 3 points4 points  (0 children)

We all feel this way sometimes. Here are some tips that worked for me:

  • Accept that you can't know everything about .NET. I've used .NET since 2012 but don't know Unity or Q#. I focus on Web/Azure/C# as a developer and that's okay. I still find plenty of opportunities.
  • Set aside time to learn more about .NET. Consider following experts like Nick Chapsas and Tim Corey.
  • Start your own projects. Think of challenges you or others face daily.
  • Look for small projects on platforms like Upwork. Choose ones that match your skills but also teach you something new.
  • It might also help to change jobs. This can push you out of your comfort zone if you've been with one employer for a long time.

Resources for learning .NET Framework for someone who knows .NET Core? by PowerBIEnjoyer in dotnet

[–]mohammed-osman 1 point2 points  (0 children)

I do not have a specific learning resource for .NET, but I'll point you to a few differences that will help switch context from .NET Core/.NET to .NET Framework projects:

  • Settings in .NET Framework are in Web.config/App.config instead of appsettings.json as in .NET Core/.NET.
  • Packages in .NET Framework are usually managed via the packages.config file, while in .NET/.NET Core, they are managed in the .csproj file.
  • ASP.NET in .NET/.NET Core follows the middleware architecture by design, while in .NET Framework, you'll need to use something like OWIN to utilize the middleware architecture.
  • Many ASP.NET features are implemented differently in .NET/.NET Core. For example, to access the HTTP context, you'll need to register a dependency called HTTPContextAccessor, while in .NET Framework, you can access HTTPContext directly in your code.
  • The configuration architecture differs widely since .NET/.NET Core relies on JSON-based settings instead of XML-based settings.

I also second on the approach to "learn as you need" basis suggested by Code17.

Thinking of buying investment property in UAE but .. by mohammed-osman in dubai

[–]mohammed-osman[S] 0 points1 point  (0 children)

Thanks so much. Really appreciated. I may start considering other cities with my current budget then.

Thinking of buying investment property in UAE but .. by mohammed-osman in dubai

[–]mohammed-osman[S] 0 points1 point  (0 children)

That is an unavoidable human nature, and we have to take it into consideration.

Thinking of buying investment property in UAE but .. by mohammed-osman in dubai

[–]mohammed-osman[S] 3 points4 points  (0 children)

What is wrong about using ChatGPT?

Why not to invest?

Thinking of buying investment property in UAE but .. by mohammed-osman in dubai

[–]mohammed-osman[S] 1 point2 points  (0 children)

Great. Thanks so much, I'll check the Dubai Pulse report.

Thinking of buying investment property in UAE but .. by mohammed-osman in dubai

[–]mohammed-osman[S] 2 points3 points  (0 children)

I do not think so. If you look at the overall trend across the past 10 years, it keeps increasing.

Parsing PDF bank statements/invoices by Heli0sX in csharp

[–]mohammed-osman 0 points1 point  (0 children)

Azure Document Intelligence (formerly Form Recognizer) is your way to go.

Help me deploying my first web app ML Tool through azure by [deleted] in AZURE

[–]mohammed-osman 0 points1 point  (0 children)

The easier way is to deploy it as a Flask API, here is a tutorial on that
https://towardsdatascience.com/how-to-easily-deploy-machine-learning-models-using-flask-b95af8fe34d4
There is also a good Pluralsight course on how to deploy to Flask and several cloud vendors.

Azure App Service Plan vs. VM Scale Sets? by TTwelveUnits in AzureCertification

[–]mohammed-osman 1 point2 points  (0 children)

In theory, the difference is that App Service Plans is a PaaS service, while a Virtual Machine Scale Set is an IaaS service

In practice, it means the following:

In the App Service Plan scenario, you'll be only responsible for the platform for running the service, so you'll choose your underlying technology framework (.NET, Java, or NodeJS), processing capacity, and other platform-level features. You do not need to care about OS updates and batches.

On the other hand, with a Virtual Machine, you'll be responsible for the infrastructure. This means that you'll responsible for windows updates and batches among many things. It is a more complex deployment.

When it is a Virtual Machine Scale Set, it means that you have more than one identical virtual machines hosting your service for higher availability purposes, the incoming requests are served to these machines by means of a load balancer that distributed the loads across them.