Requires a path to the variable e.g. a global variable
/dump [variable]
$Bucket = "ragedunicorn-ai" | |
$Prefix = "work/gressil_reimagined/" | |
$Objects = aws s3api list-object-versions --bucket $Bucket --prefix $Prefix | ConvertFrom-Json | |
ForEach ($Object in $Objects.Versions) { | |
Write-Output "Deleting object: $($Object.Key), version: $($Object.VersionId)" | |
aws s3api delete-object --bucket $Bucket --key $Object.Key --version-id $Object.VersionId | |
} |
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit" |
--[[ | |
Remove borders from a spell/item icon | |
]]-- | |
local texture = frame:CreateTexture("Texture_Name", "ARTWORK") | |
texture:SetTexCoord(0.07, 0.93, 0.07, 0.93) | |
texture:SetPoint("LEFT", frame, -40, 0) | |
texture:SetSize(40, 40) | |
--[[ | |
Reduce icons to small bar (similar to retail frameplates debuffs) |
SET portal "18.197.225.27" | |
SET textLocale "enUS" | |
SET audioLocale "enUS" | |
SET agentUID "wow_enus" | |
SET hwDetect "0" | |
SET videoOptionsVersion "15" | |
SET gxWindow "1" | |
SET gxApi "D3D11" | |
SET gxMaximize "0" | |
SET playIntroMovie "7" |
SET hwDetect "0" | |
SET gxColorBits "24" | |
SET gxDepthBits "24" | |
SET gxResolution "1920x1080" | |
SET gxMultisampleQuality "0.000000" | |
SET fullAlpha "1" | |
SET lodDist "100.000000" | |
SET SmallCull "0.010000" | |
SET DistCull "500.000000" | |
SET trilinear "1" |