I hereby claim:
- I am jpbruckler on github.
- I am jpbruckler (https://keybase.io/jpbruckler) on keybase.
- I have a public key ASBcpZU7vHeomBfcY2QhF5jMkYdFsNh9M3L0ckL1m4d0UAo
To claim this, I am signing this object:
| <# | |
| File below is used to deploy a Hyper-V based lab environment using AutomatedLab | |
| (https://github.com/AutomatedLab/AutomatedLab) | |
| Operating systems needed: Windows Server 2022 Datacenter Edition. | |
| Download from wherever you get your server ISOs. | |
| For the software installation section, you will need to download 7-zip and PowerShell | |
| from official sources and place in the $labSources\SoftwarePackages folder. | |
I hereby claim:
To claim this, I am signing this object:
flowchart TD %% Card Types ABI((Issue Card)) ABT{{Task Cards}} ABP{{Problem Card}} subgraph B1[Epic and Sprint] ABE{{Epic}} ABS{{Sprint}} ABE --> ABS end
| <%* | |
| // From: https://forum.obsidian.md/t/quickadd-plugin/20032/70 | |
| const responses = []; | |
| let chc = ["Choice 1", "Choice 2", "Choice 3"] | |
| if (!chc.includes("Done")) { | |
| chc.push("Done"); | |
| } | |
| // Multiple selection suggester pattern | |
| let r; |
| # Set environment variables | |
| Set-Item -Path "env:PSProfileGistID" -Value '1ba47a193046115d3d14d28ee2c58f2f' | |
| # Profile variables | |
| $script:documents = (Join-Path $env:USERPROFILE 'Documents') | |
| $script:gitdir = (Join-Path $script:documents 'git') | |
| # Extend Path | |
| $PathExt = @( | |
| (Join-Path $env:APPDATA 'espanso') |
I hereby claim:
To claim this, I am signing this object:
| function New-RandomPassword { | |
| <# | |
| .SYNOPSIS | |
| Generates a random password. | |
| .DESCRIPTION | |
| Generates a random password that is $Length characters long and | |
| contains a minimum of $MinSpecial special characters. | |
| function Get-Shrug | |
| { | |
| <# | |
| .SYNOPSIS | |
| Copies a shrug emoji to your clipboard. | |
| .DESCRIPTION | |
| Copies the shrug emoji to the clipboard. If this function is saved in a | |
| file (like your $profile), the text encoding of that file needs to be | |
| set to UTF-8 with BOM in order for all the characters to be displayed | |
| propertly. |
| <# | |
| .SYNOPSIS | |
| Creates an HTTP header using BASIC authentication for use with Invoke-WebRequest or Invoke-RestMethod. | |
| .DESCRIPTION | |
| PowerShell 5 and below does not support BASIC authentication with Invoke-WebRequest and Invoke-RestMethod. | |
| This function will create a header in the format necessary to send BASIC authorization strings for HTTP | |
| requests. The returned header defaults to a hashtable, but with the -AsJson switch, it will return | |
| properly formatted JSON. |