Skip to content

Instantly share code, notes, and snippets.

View alexanderklatt's full-sized avatar

Alexander Klatt alexanderklatt

View GitHub Profile
@alexanderklatt
alexanderklatt / VodMeta.ahk
Created May 5, 2020 18:39
AHK Vod Renamer
NumpadAdd::
if FileExist("D:\Gameplay Footage\Live\TestFolder\Live*.mp4")
InputBox, UserInput, Vod File Name, Enter a file name., , 400, 125
if ErrorLevel
MsgBox, CANCEL was pressed.
else
FileMove, D:\Gameplay Footage\Live\TestFolder\Live*.mp4, D:\Gameplay Footage\Live\TestFolder\%UserInput%.mp4
if WinExist("VALORANT")
WinActivate
@alexanderklatt
alexanderklatt / discord_embed_json.json
Last active December 13, 2022 18:21
IFTTT Post Request JSON Body - Embedded Discord Message When Stream Goes Live
{
"embeds":[
{
"title":"<<< {{ChannelName}} is live on Twitch!>>>",
"url":"<<<{{ChannelUrl}}>>>",
"description":"<<<{{Game}}>>>"
}
]
}