Skip to content

Instantly share code, notes, and snippets.

View shmup's full-sized avatar
🐌

Jared Miller shmup

🐌
View GitHub Profile
@shmup
shmup / movewindow.ahk
Last active March 12, 2025 19:47
ahk scripts i use at work
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
padding := 20
; half screens
^#h::WinMove, A, , padding, padding, (A_ScreenWidth/2)-(padding*1.5), A_ScreenHeight-(padding*2)
^#j::WinMove, A, , padding, (A_ScreenHeight/2)+padding, A_ScreenWidth-(padding*2), (A_ScreenHeight/2)-(padding*2)
^#k::WinMove, A, , padding, padding, A_ScreenWidth-(padding*2), (A_ScreenHeight/2)-(padding*2)
@shmup
shmup / workspace.ahk
Last active March 10, 2025 15:35
like i3, mod+n goes to the appropriate workspace (if exists)
; AHK v2 script
SetWorkingDir(A_ScriptDir)
; https://github.com/Ciantic/VirtualDesktopAccessor
VDA_PATH := A_ScriptDir . "\VirtualDesktopAccessor.dll"
hVirtualDesktopAccessor := DllCall("LoadLibrary", "Str", VDA_PATH, "Ptr")
GoToDesktopNumberProc := DllCall("GetProcAddress", "Ptr", hVirtualDesktopAccessor, "AStr", "GoToDesktopNumber", "Ptr")
GoToDesktopNumber(num) {
@shmup
shmup / vpet.c
Last active January 21, 2025 18:32
gcc -o vpets vpets.c -lX11 -lXext
#include <X11/Xatom.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/extensions/shape.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main() {
#!/usr/bin/env python3
from flask import Flask, request, redirect, url_for
from markupsafe import escape
import re
import json
import atexit
from urllib.parse import urlparse
app = Flask(__name__)
@shmup
shmup / compose.yml
Created January 11, 2025 21:08
volume mounts
# simple bind mount - directly maps host directory to container
# pro: simple, direct
# con: less docker-native management
volumes:
- /opt/medusa/postgres:/var/lib/postgresql/data
# named volume with bind properties - docker managed but host-accessible
# pro: docker volume features (named reference, metadata, drivers)
# con: more verbose, possibly overengineered for simple needs
volumes:
@shmup
shmup / owned
Created December 25, 2024 22:09
lol owned
owned
@shmup
shmup / userChrome.css
Created December 14, 2024 17:41
userChrome.css for Firefox that reduces tab height and adds dynamic opacity
/* userChrome.css */
/*
* modifications:
* - reduces the height of the tab bar
* - sets tab bar opacity to 0
* - on hover or url bar focus, set opacity to 1
*/
/* variables */
@shmup
shmup / edge2desktop
Created December 6, 2024 20:49
makes the ms edge "desktop" apps convenient for launchers
#!/usr/bin/env bash
FORCE=0
while getopts "f" opt; do
case $opt in
f) FORCE=1 ;;
*)
echo "Usage: $0 [-f]"
exit 1
;;
# core settings
scrollwidth 0
scrollbg b0b0b0
scrollfg 808080
stylehint 1
safeclicks 1
cols 60
rows 25
fullscreen 0
zoom 1.5