Week 6, 2023
Monday, 6 February 2023 - Sunday, 12 February 2023
How to create PowerShell script to automate tasks in Intune
Deployed two #Blazor websites to @AzureStaticApps in the last week with custom domains & full CI/CD pipeline with GitHub and had them up in running in under 10 minutes. Super impressive stuff! #Azure #dotnet
PowerShell Quick References - Practical PowerShell
Silk.NET Coffee & Code Catchups
F# Weekly #6, 2023 โ Exercismโs Functional February
We've got the perfect ๐ resource for anyone wanting to get started building solutions with C# on #AWS. ๐๐ปโ๏ธ โ Explore AWS tools and services โ Learn DevOps best practices โ Build, migrate, and containerize #dotnet applications Download here: go.aws/3IawrrY
To see what has been installed, updated, removed by MSI (Windows Installer) run this #PowerShell get-winevent -FilterHashtable @{ ProviderName = 'MSIInstaller' ; id = 1033 , 1034 , 1035 , 1036 , 1037 } | ogv
Knowing ๐ต๐ผ๐ ๐๐ผ ๐๐ฒ๐ฏ๐๐ด ๐ชฒ your ๐จ๐ป๐ถ๐๐ ๐๐ฐ๐ฟ๐ถ๐ฝ๐๐ ๐ฎ can ๐๐ฎ๐๐ฒ ๐๐ผ๐ a lot of ๐๐ถ๐บ๐ฒ โ๏ธ๐ You can learn how to use ๐ฉ๐ถ๐๐๐ฎ๐น ๐ฆ๐๐๐ฑ๐ถ๐ผ debugging tools in Unity here: ๐ youtu.be/zP9GjLnRF8I #unity2d #gamedev #coding #csharp
.NET Core Dependency Injection With Constructor Parameters
ReSharper Ending Development for Visual Studio 2010 and 2012
Discover the power of #PowerShell: The scripting language for IT Professional,System Admin, Hackers, and Developers. Free Learning resources ๐งต #powershell #Microsoft #sysadmin #ChatGPT #infosec #cybersecurity #Hacking #hackingtools
#dotnet devs be like
Asynchronous Programming Patterns in .NET
How to find and replace commands from AzureAD and MSOnline deprecated modules in your scripts for the Graph ones
Implementing API Key Authentication in ASP.NET Core
Less than one week before we reveal what we've been working on! We've already shared the news with a few #dotnet developers, and the excitement is palpable! To quote one dev: "I'm speechless. This is so amazing". ๐๐๐
C# Tip ๐ก You need to know how you ORM works to use it effectively. If you really want just one record, the better solution would be to use the First/FirstAsync method. But I see people often using Single/SingleAsync to query for just one record. #dotnet
Powershell for Hackers, Part 1: Getting Started with Powershell #powershell #infosec #cybersecurity #cyberwarrior hackers-arise.com/post/2017/04/2โฆ
Functional C# with Simon Painter
How to Clone a List in C#?
.NET 7.0 Auth - Sign & Validate JWT Without Core Identity by @jason_watmore jasonwatmore.com/post/2023/01/1โฆ #aspnetcore
.NET Annotated Monthly | February 2023
๐Delete #StaleDevices in #AzureAD with #MicrosoftGraph #PowerShell. All the Details in my Blog ๐ฃ bit.ly/3ll5oBh
The Community Toolkit team released a new MediaElement control; a highly anticipated control that enables powerful support for playing multimedia inside your .NET MAUI app. Weโre looking forward to seeing your amazing multimedia powered #dotNETMAUI app projects!
How to Insert a Key Value Pair Into an Existing JSON in C#
Refactoring Bloated Code in C#
I worked with Serilog and structured logging extensively. Here's how you can benefit from learning about it: โข Improve search and analysis โข Better debugging โข Increased performance #dotnet
How to use Entity Framework Core in ASP.NET Core
Update to the .NET language strategy
6 New Features Coming Soon in Visual Studio 2022 (v17.5)
Clean Message Bus Consumers with MediatR in .NET
C# Tip ๐ก How do you control concurrency in your application? The lock statement in C# allows you to synchronize access to a block of code, ensuring that only one thread can execute it at a time. #dotnet