Skip to content

Instantly share code, notes, and snippets.

@da9l
da9l / PlantUML.md
Last active February 16, 2018 09:48
PlantUML

I like PlantUML

I like PlantUML

@da9l
da9l / Create-InstallMyTools.ps1
Last active June 14, 2024 15:03
Create powershell script containing all chocolatey packages on your local machine.
Function Create-InstallMyTools.ps1 {
choco list | % {if($_ -match "(.+) (.+)") {"choco install $($matches[1])"}} > Install-MyTools.ps1
}
@da9l
da9l / Download-Paket.ps1
Last active November 8, 2018 20:18
Install paket bootstrapper from https
function Download-Paket {
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
md -force .paket
Invoke-Webrequest -uri "https://github.com/fsprojects/Paket/releases/download/5.180.1/paket.bootstrapper.exe" -outfile ".\.paket\paket.exe"
}