This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Magic Missile": | |
3C3F786D6C2076657273696F6E3D22312E302220656E636F64696E673D227574662D3136223F3E0D0A3C5370656C6C54656D706C61746520786D6C6E733A7873643D22687474703A2F2F7777772E77332E6F72672F323030312F584D4C536368656D612220786D6C6E733A7873693D22687474703A2F2F7777772E77332E6F72672F323030312F584D4C536368656D612D696E7374616E6365223E0D0A20203C546F6B656E733E0D0A202020203C546F6B656E3E0D0A2020202020203C547970653E496E737472756374696F6E3C2F547970653E0D0A2020202020203C4576616C7561746564547970653E4E756D6265723C2F4576616C7561746564547970653E0D0A2020202020203C4B65793E5265706561743C2F4B65793E0D0A2020202020203C44617461202F3E0D0A2020202020203C4368696C6472656E3E0D0A20202020202020203C546F6B656E3E0D0A202020202020202020203C547970653E436F6E7374616E743C2F547970653E0D0A202020202020202020203C4576616C7561746564547970653E4E756D6265723C2F4576616C7561746564547970653E0D0A202020202020202020203C4B6579202F3E0D0A202020202020202020203C446174613E333C2F446174613E0D0A202020202020202020203C4368696C6472656E202F3E0D0A20202020202020203C2F546F6B656E3E0D0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
// License: Do what ever you want with this. | |
// Example use case | |
// audioengineConfig = miniaudio.engine_config_init() | |
// result: miniaudio.result = miniaudio.engine_init(&audioengineConfig, &audioEngine) | |
// assert(checkAudioResult(result), "Failed to initialize audio engine") | |
import "vendor:miniaudio" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "vendor:miniaudio" | |
import "vendor:raylib" | |
// Example use case: | |
// result: miniaudio.result = miniaudio.engine_init(&audioengineConfig, &audioEngine) | |
// assert(checkAudioResult(result), "Failed to initialize audio engine") | |
checkAudioResult :: proc(result: miniaudio.result) -> bool { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Licence: MIT or use how you like | |
# Description: | |
# This script is used to get a list of system packages that can be updated and save them to a Custom Field. | |
# It also gets a list of snaps and flatpaks that can be updated and saves them to a Custom Field. | |
# Create the following Script Variables: | |
# | |
# packagesCustomField as a text field |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-ProgramBit { | |
[CmdletBinding()] | |
param ([string]$Path) | |
process { | |
if (-not $(Test-Path -Path $Path -ErrorAction SilentlyContinue)) { | |
Write-Error "Invalid Path" | |
return | |
} | |
$re32 = [regex]::new('PE\W\WL') | |
Get-Content -Path $Path -ReadCount 1 | ForEach-Object { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%# | |
kind: provision | |
name: Preseed default | |
model: ProvisioningTemplate | |
oses: | |
- Debian | |
- Ubuntu | |
test_on: | |
- debian4dhcp | |
- ubuntu4dhcp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# No GetNewClosure - print $a as what ever it is before printing | |
& { | |
$a = 10 | |
$myScript = { | |
$a | |
} | |
& $myScript | |
$a = 20 | |
& $myScript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-Parameters { | |
param( | |
# Path to a .ps1 script | |
[string]$Path | |
) | |
begin {} | |
process { | |
$ScriptPath = Get-Item -Path $Path | |
$ScriptCommand = Get-Command $ScriptPath | |
$ScriptBlock = $ScriptCommand.ScriptBlock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# MacOS Condition on Low Disk Space. Pass a number such as 90 as an argument, and if the exit code is 1, then a drive is over 90%. | |
# This exludes any mounted dmg's, USB drives, or cdrom/dvd. | |
Percentage=$1 | |
IsOver=$(df -H | grep -vE '^Filesystem|tmpfs|cdrom|loop|devfs|map| \/Volumes' | awk '{ print substr($5,1,length($5)-1) }' | awk -v p=$Percentage -F: '{if($1>p){print 1}else{print 0}}' | grep 1 | tail -n1) | |
exit "$IsOver" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Start-SleepProgressBar { | |
<# | |
.SYNOPSIS | |
A Start-Sleep alternative that prints a progress bar with a spinning wheel at the end. | |
.DESCRIPTION | |
A Start-Sleep alternative that prints a progress bar with a spinning wheel at the end. | |
See: https://github.com/tonsky/FiraCode | |
.PARAMETER Seconds | |
Duration in seconds to wait. | |
.PARAMETER NoBar |