Skip to content

Instantly share code, notes, and snippets.

View jake9000's full-sized avatar
🌵
vibing

Jacob M jake9000

🌵
vibing
View GitHub Profile
@jake9000
jake9000 / bettersecretserver.js
Last active July 17, 2023 15:55
Secret Server Include Subfolders Always
// ==UserScript==
// @name Secret Server Include Subfolders Always
// @namespace http://tampermonkey.net/
// @version 0.1.1
// @description Select 'include subfolders' every time you load a folder.
// @author https://github.com/jake9000
// @match *://your.secretserver.url.here/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @run-at document-start
@jake9000
jake9000 / typepaster.ahk
Created April 30, 2020 15:11
autohotkey: paste into anything anytime
#F12::
SendRaw, %Clipboard%
Return