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
| /** | |
| * @file | |
| * Put a synthetic upstream load on your internet at the specified bitrate. | |
| * | |
| * Compile with your preferred TARGET_HOSTNAME and TARGET_PORT: | |
| * - cl /DTARGET_HOSTNAME=\"example.internal\" /DTARGET_PORT=62724 udpsink.c | |
| * - x86_64-w64-mingw32-gcc -DTARGET_HOSTNAME=\"example.internal\" -DTARGET_PORT=62724 udpsink.c -o udpsink.exe -lws2_32 | |
| */ | |
| #include <stdint.h> |
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
| /** | |
| * @file | |
| * Bind to a random source address before connecting to a remote host via IPv6. | |
| * | |
| * 1. Install dependencies: `libcap-dev libnl-3-dev libnl-route-3-dev` | |
| * 2. Compile with: | |
| * ``` | |
| * gcc -shared -fPIC -Wall -I /usr/include/libnl3 ... -lcap -lnl-3 -lnl-route-3 | |
| * ``` | |
| * |
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 Playback Fix | |
| // @version 2024-11-20 | |
| // @description Automatically restart video playback when buffering. | |
| // @author Clay Freeman | |
| // @match http*://*.twitch.tv/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function () { |
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 | |
| // Specify the hostname and port to which you wish to connect via HTTP proxy. | |
| $target_hostname = 'www.google.com'; | |
| $target_port = 443; | |
| // Specify whether the proxied connection should use TLS. | |
| $target_crypto = TRUE; | |
| // Specify the address of the HTTP proxy to use. |