This file contains hidden or 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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
#MaxThreadsPerHotkey 1 | |
; Critical strike + Circular strike + animation cancel | |
XButton1:: | |
send,{f1} | |
send,{f4} | |
sleep,450 | |
; prone |
This file contains hidden or 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 pwsh | |
# permission denied in AWX? do this: git add --chmod=+x path/to/file | |
# instance properties to add to _meta | |
$properties = @("*") | |
# regex to exclude instance tags | |
$tagExclusions = "bd_gitpath|workload_type" | |
# read cloud inventory json | |
$cloudInventory = Get-Content inventory.json | ConvertFrom-Json | |
# determine which subprojects are auditable |
OlderNewer