Skip to content

Instantly share code, notes, and snippets.

View cyntheticfox's full-sized avatar
💭
Not a fan of the ~~mass scraping~~ AI revolution

Cynthia cyntheticfox

💭
Not a fan of the ~~mass scraping~~ AI revolution
View GitHub Profile
@cyntheticfox
cyntheticfox / toast.ps1
Created February 3, 2023 16:06 — forked from dend/toast.ps1
Toast Notification in PowerShell
function Show-Notification {
[cmdletbinding()]
Param (
[string]
$ToastTitle,
[string]
[parameter(ValueFromPipeline)]
$ToastText
)