Skip to content

Instantly share code, notes, and snippets.

@khazeamo
khazeamo / CircularProgress
Last active August 15, 2018 12:15
Circular Progress (SVG & CSS)
https://codepen.io/xgad/post/svg-radial-progress-meters
@khazeamo
khazeamo / showToastNotification.ps1
Last active August 13, 2018 10:54
PowerShell Toast Notification
$app = '{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}\WindowsPowerShell\v1.0\powershell.exe'
[Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime]
$Template = [Windows.UI.Notifications.ToastTemplateType]::ToastImageAndText01
#Gets the Template XML so we can manipulate the values
[xml]$ToastTemplate = ([Windows.UI.Notifications.ToastNotificationManager]::GetTemplateContent($Template).GetXml())
[xml]$ToastTemplate = @"
<toast duration="long" launch="app-defined-string">
@khazeamo
khazeamo / .editorconfig
Last active January 24, 2019 13:20
Universal Code Styling
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true