Skip to content

Instantly share code, notes, and snippets.

View rockitude's full-sized avatar

Mike Lipson rockitude

View GitHub Profile
@AlexanderWillner
AlexanderWillner / things.sh
Last active September 15, 2023 07:29 — forked from avdgaag/things.sh
Command-line read-only interface to your local Things database of to do items.
Moved to https://github.com/alexanderwillner/things.sh/
@hugosenari
hugosenari / BIG iOS URL SCHEME LIST 1.txt
Last active November 27, 2023 12:04 — forked from genadyo/gist:295a5e8f0d743f57137f
Android/IOs Url Schemas
BIG iOS URL SCHEME LIST
HAD TO MAKE A DROPBOX FILE BECAUSE THIS LIST WAS TOO LONG TO POST IN THE COMMENTS OR NOT MAKE THE WORKFLOW APP TAKE FOREVER TO READ IT.
☠JAILBREAK/SYSTEM APPS
--------------------------
activator://
itms-apps://
itms-services://
anonymous
anonymous / gist:c88b45127b58e6e3cc754fb9ac9cea97
Created November 1, 2016 00:44
Amazon iOS App Search URL Scheme
com.amazon.mobile.shopping://amazon.com/s?k={query}
@ELLIOTTCABLE
ELLIOTTCABLE / aaa-run-it.sh
Last active October 29, 2015 04:40 — forked from steventroughtonsmith/gist:6788b6c340a0aa52345a
Run OS X Screen Saver as Wallpaper
launchctl load ~/Library/LaunchAgents/com.highcaffeinecontent.wallpaper.plist
@eristoddle
eristoddle / tampermonkey.jquery.js
Created January 3, 2013 04:06
How to get jQuery to work in Chrome Tampermonkey userscripts
// ==UserScript==
// @name Vortek Preload
// @namespace vortek
// @description Load variables
// @include http://localhost/vortek_php/*
// @version 1
// ==/UserScript==
// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery(callback) {
var script = document.createElement("script");