Skip to content

Instantly share code, notes, and snippets.

View MartinLichtblau's full-sized avatar

Martin Lichtblau MartinLichtblau

View GitHub Profile
@davebrny
davebrny / linker.ahk
Last active April 14, 2020 06:46
(autohotkey) - generate a html/markdown/bbcode link from the clipboard or selected text
^![::linker("markdown")
^!,::linker("html")
^!/::linker("bbcode")
linker(link_type) {
revert_clipboard := clipboardAll
1st_clipboard := trim(clipboard)
clipboard := ""
@AWMooreCO
AWMooreCO / AdvancedWindowSnap.ahk
Last active April 6, 2024 01:29
Advanced Window Snap is a script for AutoHotKey that expands upon Windows built-in window-snapping hotkeys.
/**
* Advanced Window Snap
* Snaps the Active Window to one of nine different window positions.
*
* @author Andrew Moore <andrew+github@awmoore.com>
* @version 1.0
*/
/**
* SnapActiveWindow resizes and moves (snaps) the active window to a given position.