π G'Day, Iβm Anto Porter
# Introduction Script for GitHub Profile
# Function to display a humorous introduction
function Show-Introduction {
$intro = @"
G'Day! π
I'm Anto Porter, your friendly neighborhood Cloud Security Architect.
When I'm not busy wrestling with cyber threats, you can find me:
- Crafting secure solutions with Microsoft Intune and Defender XDR π‘οΈ
- Navigating the clouds of Azure βοΈ
- Building fortresses that even the most cunning hackers can't breach π°
Fun Fact: My PowerShell scripts have been known to cause confusion and improve productivity. Use with caution! π
Powered by copious amounts of coffee β
Feel free to explore my repositories, contribute, or just say hi!
"@
Write-Host $intro
}
# Execute the introduction function
Show-Introduction