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] |
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
// ==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
#!/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 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
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 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
// ==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 RARBG Torrents - Dynamic Column Highlighting v5 | |
// @namespace tampermonkey | |
// @version 5.0 | |
// @description This Tampermonkey script enhances your navigation on RARBG by automatically highlighting torrent rows with high seeder counts. It cleverly identifies the specific column labeled 'Seeders' within the torrent table—regardless of its position due to site updates or changes. By dynamically spotlighting these rows, the script makes it significantly easier for users to quickly spot the most popular and well-seeded torrents. This feature is particularly useful for distinguishing between torrents at a glance, thereby improving the efficiency of selecting high-quality downloads. | |
// https://greasyfork.org/en/scripts/493324-rarbg-torrents-dynamic-column-highlighting-v5 | |
// @license MIT | |
// @downloadURL https://update.greasyfork.org/scripts/493324/RARBG%20Torrents%20-%20Dynamic%20Column%20Highlighting%20v5.user.js | |
// @updateURL https://update.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 bash | |
# Temporarily enable developer mode for the Spotify desktop client on Linux and macOS. | |
showHelp () { | |
echo -e \ | |
"Usage: ./tmpdevmodify.sh [option]\n | |
Options: | |
-c, --clearcache Clear Spotify app cache | |
-d, --debug Add Debug Tools to user dropdown menu |
OlderNewer