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 Video Bypass (maxs19.fun, maxstream.video) | |
// @version 1.0.2 | |
// @description Bypass Anti-AdBlock | |
// @author antwal | |
// @match https://*.maxs19.fun/watchfree/* | |
// @match https://*.maxstream.video/watchfree/* | |
// @grant none | |
// @downloadURL https://gist.github.com/antwal/32acc09c8bfcf9a16c33f37104f2506c/raw/maxstream-video-bypass.user.js | |
// @updateURL https://gist.github.com/antwal/32acc09c8bfcf9a16c33f37104f2506c/raw/maxstream-video-bypass.user.js |
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 | |
IPT="/sbin/iptables" | |
DOCKER="/usr/bin/docker" | |
NETWORK_NAME="container-net" | |
[ "$IFACE" = "eno1" ] || exit 0 # we only want interface "eno1" | |
echo -n "Checking docker..." | |
! [ -f $DOCKER ] && echo "Docker is not installed." && exit 0 |
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
/** | |
* Rotary Encoder Accelleration | |
* - Debug for KY-040 | |
* | |
* interrupt pins: | |
* 2, 3 - Arduino UNO/Nano | |
* D5,D6 - ESP8266 NodeMCU | |
*/ | |
#define DEBUG false |