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 btno-nopaywall | |
// @namespace haakonnilsen.com | |
// @include http://www.bt.no/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
function remAll(xpath) { | |
var els = document.evaluate(xpath, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); |
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
#!/bin/bash | |
# Modified version of https://github.com/s3fs-fuse/s3fs-fuse/blob/master/test/sample_delcache.sh | |
# to support spaces in filenames (trade-off: filenames cannot contain "¼", which should be OK for most). | |
# | |
# This is unsupport sample deleting cache files script. | |
# So s3fs's local cache files(stats and objects) grow up, | |
# you need to delete these. | |
# This script deletes these files with total size limit | |
# by sorted atime of files. |
OlderNewer