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 Sankaku fast pagination | |
// @version 0.1 | |
// @match *://chan.sankakucomplex.com/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== | |
/* jshint esnext: true */ | |
const originalSetTimeout = window.setTimeout; |
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 G+ hover image title | |
// @version 1.0 | |
// @match *://plus.google.com/* | |
// @run-at document-end | |
// @grant none | |
// ==/UserScript== | |
/* jshint esnext: true */ | |
const decodeFileName = (src) => { |
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
set -e | |
if [ -z "$1" ]; then | |
hostname="$HOSTNAME" | |
else | |
hostname="$1" | |
fi | |
local_openssl_config=" | |
[req] |
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
/** | |
* DIR-655 Network Monitor. | |
* Based on Network Monitor v2.0 for Yahoo! Widgets. | |
*/ | |
let lan_tx_bytes; | |
let lan_rx_bytes; | |
let last_timestamp; | |
const readValues = () => { |
OlderNewer