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 WhatsApp - Enables Audio Speed Feature | |
// @namespace whatsappaudiospeed | |
// @version 2.0 | |
// @description Enables the upcoming Audio Speed feature | |
// @author FURiOUS | |
// @match https://web.whatsapp.com/ | |
// @icon https://www.google.com/s2/favicons?domain=whatsapp.com | |
// @require https://raw.githubusercontent.com/pedroslopez/moduleRaid/master/moduleraid.js | |
// @grant none |
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
<?php | |
function google_image_search($keyword, $page=0){ | |
$c = curl_init(); | |
curl_setopt_array($c, [ | |
CURLOPT_FOLLOWLOCATION => 1, | |
CURLOPT_RETURNTRANSFER => 1, | |
CURLOPT_SSL_VERIFYPEER => 0, | |
CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows Phone 8.1; ARM; Trident/7.0; Touch; WebView/2.0; rv:11.0; IEMobile/11.0; NOKIA; Lumia 525) like Gecko' | |
]); |
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 Twitch - Current Payout (Dashboard) | |
// @namespace twitchpayout | |
// @version 1.5.1 | |
// @description Shows current accumulated/estimated payout revenue and last payment on dashboard | |
// @author FURiOUS | |
// @homepage https://furious.pro | |
// @downloadURL https://gist.github.com/furious/d284d67af89a00866fa60c318a84bf50/raw/frs-twitch_current_payout_dashboard.user.js | |
// @supportURL https://twitch.tv/furious | |
// @match https://dashboard.twitch.tv/u/* |
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
#include <Gamepad.h> | |
unsigned char button_normal[32] = {2,3,4,5,6}; | |
unsigned char button_switch[32] = {7,8,9,10,14,15,16,A0,A1,A2,A3}; | |
bool button_state[32]; | |
void setup_pins(unsigned char *buttons, uint8_t total){ | |
for(uint8_t i=0; i<total; i++){ | |
pinMode(buttons[i], INPUT_PULLUP); |
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 Netflix - Auto Skip Intro | |
// @namespace netflixautoskipintro | |
// @version 0.1 | |
// @description Automatically skips intro cutscenes when available | |
// @author FURiOUS | |
// @match https://www.netflix.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
--[[ | |
Resolve Twitch channel and video URLs to the actual media URL | |
Author: furious | |
How to install? https://wiki.videolan.org/Documentation:Building_Lua_Playlist_Scripts | |
Don't forget to remove the old "twitch.luac" plugin | |
OBS: You can choose which quality you want just add ":option" in the url. | |
If the option isn't available it will fallback to the best quality as normal. | |
You can also check the console log to see all available quality options. |
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
<?php | |
# ovh - check server availability tool | |
# author: furious | |
# crontab (every 5 min): */5 * * * * php -f /path/to/checkserver.php | |
/* CONFIG */ | |
define('EMAIL', '[email protected]'); | |
define('SERVERS', array('1801armada01', '1801sys12')); | |
define('OVH_CHECK_URL', 'http://ws.ovh.com/dedicated/r2/ws.dispatcher/getAvailability2'); |
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
-- snes export inputs 1.0 | |
-- by furious | |
--/byetUDLRaxlr0000 | |
joymap = {"B", "Y", "Select", "Start", "Up", "Down", "Left", "Right", "A", "X", "L", "R"} | |
joypads = {"P1", "P2", "P5", "P6"} | |
file_suffix = "inputs.txt" | |
-- a movie needs to be playing to do anything |
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
<? | |
define("FS_CLIENTID", "CLIENT_ID"); | |
define("FS_CLIENTSECRET", "CLIENT_SECRET"); | |
define("FS_REDIRECTURI", "http://localhost"); | |
define("FS_ACCESSTOKEN", "ACCESSTOKEN"); | |
// https://foursquare.com/oauth2/authenticate?client_id=CLIENT_ID&response_type=token&redirect_uri=REDIRECT_URI | |
class FS_API | |
{ | |
private $curl; |