Skip to content

Instantly share code, notes, and snippets.

@park-brian
park-brian / AdvancedWindowSnap.ahk
Last active February 21, 2025 03:47 — forked from AWMooreCO/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 a position within a user-defined grid.
*
* @author Andrew Moore <[email protected]>
* @contributor jballi
* @contributor park-brian
* @contributor shinywong
* @version 1.2
*/
@mindon
mindon / heart.scad
Created April 17, 2018 09:15
Heart Shape in OpenSCAD format
// simple heart shape for OpenSCAD
// author: Mindon <[email protected]>
// from https://mindon.github.io/
heart(width = 160, height = 160);
module heart(width, height = 0) { // 0 = auto height
w = width; h = height;
r = 2 * w/7; // top circle radius
i = r/4.0; // top circle intersect-part width