Skip to content

Instantly share code, notes, and snippets.

View paulyuk's full-sized avatar

Paul Yuknewicz paulyuk

View GitHub Profile
@paulyuk
paulyuk / servicebus-queue.bicep
Last active July 7, 2022 00:17
Service Bus Queue and Deadletter Bicep
param resourceToken string
param location string
param skuName string = 'Basic'
param queueNames array = [
'orders'
]
var deadLetterFirehoseQueueName = 'deadletterfirehose'
@paulyuk
paulyuk / Install Linux WSL Bash Stuff
Last active November 23, 2021 21:53
Install all the dev box goodies for WSL Ubuntu distro (x64)
# .NET 6 SDK
sudo apt-get update; \
sudo apt-get install -y apt-transport-https && \
sudo apt-get update && \
sudo apt-get install -y dotnet-sdk-6.0
# .NET 3.1 Runtime, needed for Tye
sudo apt-get update; \
sudo apt-get install -y apt-transport-https && \
sudo apt-get update && \
sudo apt-get install -y aspnetcore-runtime-3.1
@paulyuk
paulyuk / Install WinGet Stuff
Last active May 19, 2024 02:02 — forked from itoleck/Install WinGet Software
Install WinGet Stuff
winget install Microsoft.Powershell
Winget install "Company Portal"
Winget install "Microsoft .NET SDK" #assume .NET SDK 6.0+
Winget install "Python.Python.3"
Winget install "Node.js"
Winget install "Git.Git"
Winget install "Microsoft Azure Storage Explorer"
Winget install "Microsoft Azure CLI"
Winget install "Discord"
wsl --install