[Verifying my cryptographic key: openpgp4fpr:AE6B007E2FAB1C94319C7C09FD56BE79CDAE7895]
This file contains 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 Auto AWS SSO Login | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://*.awsapps.com/start/user-consent/authorize.html* | |
// @match https://*.awsapps.com/start/user-consent/login-success.html | |
// @match https://device.sso.us-east-1.amazonaws.com/?user_code=* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== |
This file contains 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
/* eslint-disable no-unused-vars, no-await-in-loop */ | |
module.exports.dependencies = ["[email protected]"]; | |
// PLugin runs multipass loudnorm filter | |
// first run gets the required details and stores for the next pass | |
// second pass applies the values | |
// stages | |
// Determined Loudnorm Values | |
// Applying Normalisation |
This file contains 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
// Taken and modified from: https://reddit.com/r/humblebundles/comments/inm60w/meta_how_to_easily_pull_a_list_of_all_your/ | |
// Run in dev console at: https://www.humblebundle.com/home/keys | |
// Target platform: Steam, GOG or OUYA | |
var targetPlatform = 'GOG'; | |
//if you're not on the first page navigate to the first page | |
if($('.js-jump-to-page:first').text() != "1"){ | |
$('.js-jump-to-page:nth-child(2)').click(); | |
} |
This file contains 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
// Written by Anth42 | |
// Antimatter Dimensions - Tickspeed Challenge Helper | |
// https://pastebin.com/ebTjWEFP | |
// | |
// Updated for 2022 by Ted Kulp | |
var jq = document.createElement('script'); | |
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(jq); |
This file contains 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/bash | |
./videogen.sh -f flv "rtmp://some-rtmp-server:1935/live/some-key-maybe-goes-here" |
This file contains 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 | |
USERNAME=$1 | |
curl https://api.github.com/users/$USERNAME/gpg_keys | jq -r '.[0].raw_key' | gpg --import |
This file contains 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/bash | |
# Updates containers in a docker-compose file. If passed a name, it will | |
# just update that container. If no argument is given, it will update | |
# all the containers in the file. It must be run in a directory where a | |
# docker-compose command will work and see it's yaml config file. | |
# | |
# WARNING: It does remove and create the container, so be careful if you | |
# care about state that's not saved outside of the container. | |
# |
This file contains 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
SUBSYSTEM=="tty", ATTRS{devpath}=="1.2", ATTRS{idVendor}=="067b", ATTRS{idProduct}=="2303", SYMLINK+="topmatrix" | |
SUBSYSTEM=="tty", ATTRS{devpath}=="1.3", ATTRS{idVendor}=="067b", ATTRS{idProduct}=="2303", SYMLINK+="bottommatrix" |
This file contains 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
alias grcl='git checkout master && git pull && git remote prune origin && git branch -avv | grep "gone]" | awk '\''{ print $1 }'\'' | xargs git branch -d' |
NewerOlder