Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name The Redeemer
// @namespace raina
// @description Pops up the Steam product activation dialog when copying keys from bundle/reseller sites. Supports various bundle organizers and legitimate key resellers. Obviously requires that Steam is installed but also that it's allowed as the handler of steam:// protocol messages.
// @include /^http:\/\/www\.dlh\.net\/en\/steam-keys\.html/
// @include /^https:\/\/(www\.)?chrono\.gg/
// @include /^https:\/\/groupees\.com\/(profile\/)?purchases/
// @include /^https:\/\/secure\.nuuvem\.com\/account\/library/
// @include /^https:\/\/www\.humblebundle\.com\/(downloads\?|home\/(keys|library))/
// @include /^https?:\/\/(www\.)?dailyindiegame\.com\/account_page\.html/

Follow these steps to generate a valid certificate with LetsEncrypt and install into the Madsonic keystore.

Note

Be sure to forward port 443 to your jail for LE authentication.

Replace example.com with your domain or subdomain.

Based on Madsonic installation in jacobblock's guide

// ==UserScript==
// @name RED Sticky Settings Button
// @namespace https://savagecore.eu
// @version 0.2.1
// @description Submit button on settings page follow as you scroll
// @author SavageCore
// @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js
// @include http*://redacted.ch/user.php?action=edit&userid=*
// @include http*://apollo.rip/user.php?action=edit&userid=*
// @include http*://notwhat.cd/user.php?action=edit&userid=*

Keybase proof

I hereby claim:

  • I am savagecore on github.
  • I am savagecore (https://keybase.io/savagecore) on keybase.
  • I have a public key ASA7GoBWhQ0zbaPBaARnrOgAXhpiULRAEMWT8QipgPxJBQo

To claim this, I am signing this object:

// ==UserScript==
// @name RED Album Chronology
// @namespace redacted.ch
// @description Provides links to the next/previous albums in an artist's timeline
// @version 0.1.1
// @include http*://*redacted.ch/torrents.php*id=*
// @include http*://*redacted.ch/artist.php*
// @grant GM_addStyle
// @grant GM_registerMenuCommand
// ==/UserScript==
@SavageCore
SavageCore / script.user.js
Last active November 26, 2016 06:38
It only checks for torrents of the same imdb, not the specific request. Preview: http://i.imgur.com/HCmqiH3.png
// ==UserScript==
// @name Check KG for PTP Requests
// @namespace https://savagecore.eu
// @description Add link to PTP requests page if found at KG
//
// @version 0.1.0
// @include http*://*passthepopcorn.me/requests.php*
//
// @connect karagarga.in
// @downloadURL https://gist.github.com/SavageCore/2432769391b727b022f7c509b1429757/raw/f757e33f464d22d31e565b5c9514ab4fc468bb92/script.user.js
@SavageCore
SavageCore / reclaimWindows10.ps1
Last active March 18, 2018 18:25 — forked from alirobe/reclaimWindows10.ps1
"Reclaim Windows 10" turns off a bunch of unnecessary Windows 10 telemetery, removes bloatware, and privacy invasions. Review and tweak before running. Scripts for reversing are included and commented. Forked from http://pastebin.com/gQxCUkLP
##########
# Tweaked Win10 Initial Setup Script
# Primary Author: Disassembler <[email protected]>
# Original Version: 1.4, 2016-01-16
# Tweaked based on personal preferences for @alirobe 2016-03-23 - v1.4.1
# NOTE: MAKE SURE YOU READ THIS SCRIPT CAREFULLY BEFORE RUNNING IT + ADJUST COMMENTING AS APPROPRIATE
# This script will reboot your machine when completed.
##########
# Ask for elevated permissions if required
#!/bin/bash
# Bash script to setup testing alongside stable on Debian.
# Based on http://serverfault.com/a/382101
# with fixes from http://serverfault.com/a/653552
# FUNCTIONS #
# This is a general-purpose function to ask Yes/No questions in Bash, either
# with or without a default answer. It keeps repeating the question until it
# gets a valid answer.
# https://gist.github.com/davejamesmiller/1965569