I hereby claim:
- I am corbob on github.
- I am corbob (https://keybase.io/corbob) on keybase.
- I have a public key ASCQVZrOBgetkLnKtKfxiikJWM8JR0hRwdFDJDlc-cCjnAo
To claim this, I am signing this object:
2022-08-30 15:27:45.542 -07:00 [Information] chocolatey - https://community.chocolatey.org/api/v2/ | Priority 0|Bypass Proxy - False|Self-Service - False|Admin Only - False. | |
2022-08-30 15:27:45.555 -07:00 [Information] test - c:\temp | Priority 0|Bypass Proxy - False|Self-Service - False|Admin Only - False. | |
2022-08-30 15:28:34.635 -07:00 [Information] Installing the following packages: | |
2022-08-30 15:28:34.636 -07:00 [Information] delayed | |
2022-08-30 15:28:34.636 -07:00 [Information] By installing, you accept licenses for the packages. | |
2022-08-30 15:28:34.906 -07:00 [Information] [NuGet] Installing '"delayed 3.3.3"'. | |
2022-08-30 15:28:35.171 -07:00 [Information] [NuGet] Successfully installed '"delayed 3.3.3"'. | |
2022-08-30 15:28:35.173 -07:00 [Information] | |
delayed v3.3.3 | |
2022-08-30 15:28:35.184 -07:00 [Information] delayed package files install completed. Performing other installation steps. |
write-host Hello World | |
Start-Sleep -Seconds 30 | |
Write-Warning Warning | |
Start-Sleep -Seconds 30 | |
Write-Error 'Bad Things' | |
Start-Sleep -Seconds 30 |
# Set execution Policy for the system | |
Set-ExecutionPolicy Bypass -Force | |
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072 | |
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
Invoke-WebRequest -Uri https://gist.githubusercontent.com/corbob/cc3fb9f4558eacfe002b320223624484/raw/d54a50248980faf078bc19bbde401da436082dd6/packages.config -OutFile C:\Packages.config -UseBasicParsing | |
choco feature enable -n allowGlobalConfirmation | |
choco install c:\packages.config |
I hereby claim:
To claim this, I am signing this object:
function Update-Nvim { | |
Invoke-WebRequest https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.zip -OutFile $env:TEMP\nvim.zip | |
Expand-Archive $env:TEMP\nvim.zip C:\tools\neovim -Force | |
} |
// Put the contents of this gist into any js file within "C:\Users\<user>\AppData\Roaming\discord\0.0.306\modules\" | |
// I put it in "C:\Users\<username>\AppData\Roaming\discord\0.0.306\modules\discord_dispatch\index.js" | |
const sb = document.querySelector('[class^="sidebar-"]'); | |
const sbWidth = sb.style.width; | |
function toggleHide() { | |
if (sb.style.width === sbWidth) { | |
sb.style.width = "0" | |
} else { |
{ | |
"meta": { | |
"theme": "stackoverflow" | |
}, | |
"basics": { | |
"name": "Cory Knox", | |
"email": "me@coryknox.dev", | |
"website": "https://www.coryknox.dev", | |
"summary": "Experienced PowerShell developer with a penchant for automation. Continually looking for efficiency improvements through code.", | |
"location": { |
h2 { | |
content: "<div>corbob</div>" | |
} |
MIT License | |
Copyright (c) 2019 | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
# Works | |
Param( | |
[Parameter(mandatory)] | |
$a, | |
[ValidateSet(1,2,3,4,5,6,7,8,9)] | |
$b | |
) | |
# doesn't work... | |
param ( | |
[string]$Str, |