Skip to content

Instantly share code, notes, and snippets.

@th0th
th0th / AdvancedWindowSnap.ahk
Created August 14, 2019 11:14 — forked from park-brian/AdvancedWindowSnap.ahk
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.1
*/
/**
* Resizes and moves the active window to a given position on a grid
@th0th
th0th / papertrail-remove-all-systems.sh
Created October 31, 2017 13:24 — forked from jameshy/papertrail-remove-all-systems.sh
Remove all systems from papertrail
curl -s -H "X-Papertrail-Token: API-TOKEN-HERE" https://papertrailapp.com/api/v1/systems.json | jq '.[] .name' | xargs -I {} -d '\n' sh -c 'papertrail-remove-system -s {}; echo deleted {}'