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 PWA Everything | |
| // @author Evan Reichard | |
| // @version 0.0.1 | |
| // @match *://*/* | |
| // @grant none | |
| // @run-at document-idle | |
| // @noframes | |
| // ==/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
| // (C)2009 Willem Hengeveld [email protected] | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <stdint.h> | |
| #include <string.h> | |
| #include <algorithm> | |
| // streaming version of the lzss algorithm, as defined in BootX-75/bootx.tproj/sl.subproj/lzss.c | |
| // you can use lzssdec in a filter, like: |
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
| # Spawn a HTTP endpoint "/ip" that returns the IP address of the connecting | |
| # request. Requires flask. | |
| HOST = "0.0.0.0" | |
| PORT = 7000 | |
| METHODS = ["GET"] | |
| # -- nothing configurable below here -- # | |
| from flask import request |
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
| plugin PPTP.ppp | |
| noauth | |
| remoteaddress "<HOST>" | |
| user "<USERNAME>" | |
| password "<PASSWORD>" | |
| redialcount 1 | |
| redialtimer 5 | |
| idle 1800 | |
| # mru 1368 | |
| # mtu 1368 |