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 Robin Enhancement Suite | |
// @namespace http://github.com/sprngr | |
// @version 0.5 | |
// @description Trying to make Robin more awesome | |
// @author sprngr | |
// @match https://www.reddit.com/robin* | |
// @grant none | |
// ==/UserScript== |
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 BringBackTheBlue | |
// @version 0.1 | |
// @description Blue it up | |
// @author sprngr | |
// @match https://www.google.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { |
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
// Setup Listener Middleware | |
robot.listenerMiddleware(function(context, next, done){ | |
var mode = context.listener.options.mode || ''; | |
if (mode === '' || process.env.BOT_MODE === mode) { | |
next(done); | |
} else { | |
done(); | |
} | |
}); |
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
// CODE TO DRIVE A VERY SIMPLE AUTONOMOUS KART USING A KID'S CART WITH FRONT CASTERS, | |
// THREE ULTRASONIC MODULE SENSORS (HC-SR04), TWO 24V 250W BRUSHED MOTORS, | |
// TWO VICTOR 883 ESCs, AND AN ARUDINO UNO | |
// Author: Blue Martin | |
#include <Servo.h> | |
//choose I/O pins to assign each sensor to | |
const int LeftTriggerPin = 2; | |
const int LeftEchoPin = 3; |
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 YouTube Channel Results Filter | |
// @version 0.2 | |
// @description Removes specified channels from showing up in your YouTube results | |
// @author sprngr | |
// @match https://www.youtube.com/* | |
// @grant none | |
// ==/UserScript== | |
window.onload = (function() { |
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
# Updated for Mac OS | |
wget http://regex.info/code/JSON.lua | |
cp JSON.lua ~/Library/Application\ Support/org.videolan.vlc/lua/modules/JSON.lua | |
rm JSON.lua | |
wget https://gist.githubusercontent.com/MarcuzD/573d3f031bd61a650a65d5238b80164c/raw/6503456f7b59be1a37cf5ee97a95af1c957e8a45/bandcamp.lua | |
cp bandcamp.lua ~/Library/Application\ Support/org.videolan.vlc/lua/playlist/bandcamp.lua | |
rm bandcamp.lua |
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
#!/usr/bin/env bash | |
# cdrip - a simple cd ripping utility script | |
# by sprngr | |
# Usage: | |
# $ cdrip "Album Name" | |
# 📁 Creating album: Album Name | |
# 💿 Ripping contents... | |
# ⏰ Time Elapsed: 0:06:03 |
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 Slaughterpad - Ludum Dare theme slaughter controller mapping | |
// @version 0.1 | |
// @description Rip and tear until it is done | |
// @author sprngr | |
// @match https://ldjam.com/events/ludum-dare/50/theme | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=ldjam.com | |
// @grant none | |
// ==/UserScript== |