This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Verbose Extract Full WikiArt Painting Information | |
// @namespace http://tampermonkey.net/ | |
// @version 2.0 | |
// @description Correctly extracts full painting information from WikiArt pages with verbose logging for debugging purposes | |
// @author sharmanhall | |
// @match https://www.wikiart.org/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=wikiart.org | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name GenerateWP - Unlock Unallowed Modules | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Replace "section-unallowed" with "section-allowed" on GenerateWP pages. | |
// @author sharmanhall | |
// @match https://generatewp.com/* | |
// @grant none | |
// @license MIT | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=generatewp.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE] | |
[HKEY_CURRENT_USER\SOFTWARE\Classes] | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\qBittorrent.magnet] | |
@="URL:magnet" | |
"Content Type"="application/x-magnet" | |
"URL Protocol"="" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Extract Google Business data-pid (v2) | |
// @namespace https://example.com/ | |
// @version 0.1 | |
// @description Extracts the data-pid value from a Google Business profile page | |
// @author Tyler Hall | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=tylerhalltech.com | |
// @match https://www.google.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Check if running as root | |
if [ "$(id -u)" != "0" ]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
token=`cat /System/Applications/Mail.app/Contents/Info.plist | grep -A1 "PluginCompatibilityUUID" | grep string | sed 's/<string>//' | sed 's/<\/string>//'` | |
path="/Library/Mail/Bundles/OpenHayStackMail.mailbundle/Contents/Info.plist" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Hide WSSO Overlay | |
// @namespace http://empathyfirstmedia.com | |
// @version 1.0 | |
// @description Hides element with class .ab-sub-wrapper on WordPress admin pages | |
// @author Tyler Hall | |
// @match *://*/wp-admin/* | |
// @grant GM_addStyle | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Bulk Export Dropbox Image URLs (2024) | |
// @version 3.1.1 | |
// @description Extracts image URLs from a Dropbox page and copies them to the clipboard when a button is clicked. | |
// @author sharmanhall | |
// @supportURL https://github.com/tyhallcsu/dropbox-image-url-extractor/issues/new | |
// @namespace https://github.com/tyhallcsu/dropbox-image-url-extractor | |
// @homepageURL https://github.com/tyhallcsu/dropbox-image-url-extractor | |
// @license MIT | |
// @connect greasyfork.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Find the raw bitstring from a captured Flipper RAW .sub file. | |
# Must provide the bitlength in ms, and the allowable error which can be tolerated. | |
import re | |
import sys | |
import math | |
filename = sys.argv[1] |
NewerOlder