Skip to content

Instantly share code, notes, and snippets.

View gte445e's full-sized avatar
:octocat:
loading...

Justin Steele gte445e

:octocat:
loading...
View GitHub Profile
$symbols = '!@#$%^&*'.ToCharArray()
$characterList = 'a'..'z' + 'A'..'Z' + '0'..'9' + $symbols
function GeneratePassword {
param(
[Parameter(Mandatory = $false)]
[ValidateRange(12, 256)]
[int]
$length = 14
)
@johannlilly
johannlilly / ui-architecture-compendium.md
Last active January 26, 2024 10:32
The purpose of this document is to articulate considerations, tools, and methodologies for UI architectures with regard to the code, UI design, and project management.