Skip to content

Instantly share code, notes, and snippets.

View Gewerd-Strauss's full-sized avatar

Gewerd-Strauss

  • Germany
View GitHub Profile
@Gewerd-Strauss
Gewerd-Strauss / DSC00115.JPG
Last active December 8, 2023 01:21
GFA-Utilities - Image Renamer Partial dataset
DSC00115.JPG
@Gewerd-Strauss
Gewerd-Strauss / DSC00115.JPG
Last active December 8, 2023 01:13
GFA-Utilities - Image Renamer Full dataset
DSC00115.JPG
@Gewerd-Strauss
Gewerd-Strauss / script.ahk
Created July 25, 2023 20:09
script.ahk for ObsidianKnitr
/*
script() - class for common script management.
This is based on the example script-class written by RaptorX (https://github.com/RaptorX/ScriptObj),
since that project does not have a license attached to it.
*/
class script {
static DBG_NONE := 0
,DBG_ERRORS := 1
,DBG_WARNINGS := 2
,DBG_VERBOSE := 3
@Gewerd-Strauss
Gewerd-Strauss / About this gist.md
Last active April 16, 2023 09:09
.GFA_Renamer-TestAssets

This gist contains 40 test images for use with the GFA-Renamer utility. Therefore, this gist will likely never be updated agaim, unless explicitly asked for.


16.04.2023 11:09
~Gw

@Gewerd-Strauss
Gewerd-Strauss / ttip.ahk
Created April 10, 2023 18:41
small tooltip handler, mostly intended to print objects with automatic timeout.
; --uID:2340782430
; Metadata:
; Snippet: ttip ; (v.0.2.1)
; --------------------------------------------------------------
; Author: Gewerd Strauss
; License: MIT
; --------------------------------------------------------------
; Library: Personal Library
; Section: 21 - ToolTips
; Dependencies: /
@Gewerd-Strauss
Gewerd-Strauss / schedule.ics
Last active July 9, 2023 06:21
Automated schedule of all the streams I want to keep track off
BEGIN:VCALENDAR
PRODID:-//twitch.tv//StreamSchedule//1.0
VERSION:2.0
CALSCALE:GREGORIAN
REFRESH-INTERVAL;VALUE=DURATION:PT6H
X-PUBLISHED-TTL:PT6H
NAME:Streaming Scheduler
X-WR-CALNAME:Streaming Scheduler
BEGIN:VEVENT
@Gewerd-Strauss
Gewerd-Strauss / AudioSwitcher_18.10.2022
Last active October 18, 2022 09:11
Current Attempt. The issue I am having is that I cannot figure out how to query the currently set audio out/in at script startup, and how to do so in a format that allows me to target the respective button on the GUI.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance, Force
SysGet, vMoncnt, MonitorCount
Menu, Tray, Icon, C:\windows\system32\shell32.dll,138 ;Set custom Script icon
;#Include <scriptObj/scriptObj>
CreditsRaw=
(LTRIM
@Gewerd-Strauss
Gewerd-Strauss / .gitignore
Last active August 9, 2022 05:55
ScriptObj - Class for handling various script-related tasks - updating, printing error to debug/file with some filters, setting autostart etc
launch.json
.vscode/
.git/
@Gewerd-Strauss
Gewerd-Strauss / SysTrayPingGui.ahk
Last active September 3, 2022 09:43
PING-GUI - minimal OSD showing current ping in milliseconds.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#SingleInstance,Force
#Persistent
;#Warn All ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
SetBatchLines -1
SetTitleMatchMode, 2
;;_____________________________________________________________________________________
;{#[File Overview]
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#SingleInstance,Force
#Persistent
#NoTrayIcon
;#Warn All ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
SetBatchLines -1
SetTitleMatchMode, 2
;}______________________________________________________________________________________