- Walked through slides 26 and 27 of the presentation
AZ-900T00A-ENU-PowerPoint-03.pptx
.
- Links for .NET memory management
- Advanced .NET debugging - Tess Ferrandez-Norlander - NDC London 2022
- Enable diagnostics logging for apps in Azure App Service
- Application performance FAQs for Web Apps in Azure
- Collect memory dump for App Service (Windows only)
- How to debug a managed memory dump with .NET Diagnostic Analyzers
- Dump files in the Visual Studio debugger
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@description('The secret') | |
@secure() | |
param secretValue string | |
var names = { | |
identity: { | |
setup: 'uami-setup' | |
runtime: 'uami-runtime' | |
} | |
runtimeKeyVault: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
access_token="$( az account get-access-token --resource-type arm | jq -r '.accessToken' )" | |
# echo "${access_token}" | jq -R 'split(".")|.[1]|@base64d|fromjson' | |
subscriptionId="706df49f-998b-40ec-aed3-7f0ce9c67759" | |
# IFS='' read -r -d '' azureResourceGraphQuery <<'EOF' | |
# SpotResources |
- Eleanore
- Summary and decision matrix?
- Julie NG
- Code Reuse bzw. Modules (Knowledge Sharing im Org) fehlen.
- Anderer Use Case is das manche "Best Practices" v.a. globally unique names finde ich 1000x leichter mit TF oder Pulumi. Deshalb braucht man crazy Bash Scripten mit ARM/Bicep
- Discuss "mix" scenario. Multiple times damaged an AKS cluster, when Terraform aggresively prefered to delete and re-create infrastructure
- Clean Up is simpler with Terraform statefiles. Check out https://julie.io/writing/arm-terraform-pulumi-infra-as-code/
- Laura Nicolas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://hashcat.net/hashcat/ | |
```cmd | |
hashcat-6.2.5\hashcat.exe --hash-type 100 --attack-mode 3 --backend-devices 1,2 "sha1.txt" ?a?a?a?a?a?a | |
``` | |
0f4ef7cba35ade6bd6f34ed974f22de895f0e2cd | |
0099069d526352ab79023de2daeda7a786414d65 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// F# version of https://twitter.com/gsferreira/status/1516827091127394309/ | |
open System | |
open System.IO | |
type PotentialProcessingError = | StringMissing | StringTooShort | |
let application store = function | |
| None -> Error StringMissing | |
| Some (str: string) when str.Length < 5 -> Error StringTooShort |