Skip to content

Instantly share code, notes, and snippets.

@DavidJCobb
DavidJCobb / TES5Edit-count-persistent-refs.psc
Created April 20, 2019 05:27
Skyrim - xEdit - Count the number of persistent references in all worldspaces in a file
Unit CobbCountPersistents;
Var
giCount: Integer;
Function Initialize: Integer;
Var
eFile: IInterface;
eWorlds: IInterface;
eWorld: IInterface;
@DavidJCobb
DavidJCobb / AHK - Make Windows notifications click-through-able.ahk
Last active August 29, 2020 07:11
Tired of Windows 10 notifications blocking access to toolbars, buttons, and Twitch chat textboxes in the lower-right corner of the screen? Sick of how the darn things block an invisible strip of space above them, too? This should fix that.
;
; Make Windows notifications semitransparent, and allow the user to click through
; all but their rightmost portion (so as to keep the close/dismiss button usable).
;
#Persistent
#SingleInstance
#NoEnv
#Warn
SendMode Input
SetWorkingDir %A_ScriptDir%