Skip to content

Instantly share code, notes, and snippets.

View MABAIStrategies's full-sized avatar
💭
Chaos to consistency. Consistency to currency.

mabaistrategies.com MABAIStrategies

💭
Chaos to consistency. Consistency to currency.
View GitHub Profile
@MABAIStrategies
MABAIStrategies / RTD_Install.ps1
Last active May 21, 2026 05:19
Run the Day Initial Installer v1
function Write-EmbeddedFile($Name, $B64) {
$bytes = [Convert]::FromBase64String($B64)
$path = Join-Path $InstallDir $Name
[IO.File]::WriteAllBytes($path, $bytes)
Write-Host " ✓ $Name" -ForegroundColor Green
}
Write-Host "`n🏁 Run The Day — Agent Installer" -ForegroundColor Cyan
Write-Host "Installing into: $InstallDir`n" -ForegroundColor DarkGray