View tiddlersMonkees.json
This file has been truncated, but you can view the full file.
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
[{"title": "mnt/big/monkees", "created": "20230205095900086090", "modified": "20230205095900086090", "tags": "folder", "text": "/ [[mnt|mnt]] / [[big|mnt/big]]\n\n* \ud83d\udcc2 [[CD-Rom|mnt/big/monkees/CD-Rom]]\n* \ud83d\udcc2 [[Comics|mnt/big/monkees/Comics]]\n* \ud83d\udcc2 [[Magazines|mnt/big/monkees/Magazines]]\n* \ud83d\udcc2 [[Movies|mnt/big/monkees/Movies]]\n* \ud83d\udcc2 [[Music|mnt/big/monkees/Music]]\n* \ud83d\udcc2 [[Radio|mnt/big/monkees/Radio]]\n* \ud83d\udcc2 [[TV|mnt/big/monkees/TV]]\n* \ud83d\udcc2 [[Trading Cards|mnt/big/monkees/Trading Cards]]"}, {"title": "mnt/big/monkees/CD-Rom", "created": "20190907224911222063", "modified": "20190907224911222063", "tags": "folder", "text": "/ [[mnt|mnt]] / [[big|mnt/big]] / [[monkees|mnt/big/monkees]]\n\n* \ud83d\udcc2 [[Hey, Hey, We're The Monkees (Rhino CD-Rom 1996)|mnt/big/monkees/CD-Rom/Hey, Hey, We're The Monkees (Rhino CD-Rom 1996)]]"}, {"title": "mnt/big/monkees/Comics", "created": "20190907224918034838", "modified": "20190907224918034838", "tag |
View delete all files from an archive.org item.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
function searchText(elementType,text){ | |
var xpath = `//${elementType}[contains(text(),'${text}')]`; | |
var matchingElement = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; | |
return matchingElement; | |
} | |
function sleep(ms) { // usage: await sleep(4000) | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} |
View flickrDownloader.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
// ==UserScript== | |
// @name Flickr Downloader | |
// @namespace https://github.com/f2face/flickr-dl.userscript | |
// @version 0.2.3 | |
// @description A userscript for downloading Flickr photos. | |
// @author f2face / trumad | |
// @match https://www.flickr.com/* | |
// @include http://www.flickr.com/* | |
// @include https://www.flickr.com/* | |
// @grant unsafeWindow |
View addElementHelperFunction.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
// Helper function to create new DOM elements, by thanael - thannymack.com | |
function addEl() { | |
function isElement(element) { // Check if something is a DOM element | |
// This function from https://stackoverflow.com/a/36894871 | |
return element instanceof Element || element instanceof HTMLDocument; | |
} | |
// Defaults, if the user specifies nothing: | |
let el = document.body; // add our new element to the document.body by default | |
let tag = "div"; // add a DIV element by default | |
let attr = {}; // no attributes by default |
View tradingViewMultipleWindows.py
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
# First install webview: | |
# pip install pywebview | |
# Then create a config.json file in the same folder with the following options: | |
""" | |
{ | |
"content":[ | |
{ | |
"exchange":"Bitstamp", | |
"ticker":"BTCUSD", |
View grabPatreonVids
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
//Enter the following commands in a browser console. | |
// First, set up a way to click on stuff. just using .click() doesn't seem to work for some reason. | |
var clickEvent = new MouseEvent("click", { | |
"view": window, | |
"bubbles": true, | |
"cancelable": false | |
}); | |
// Then load up all the posts. You'll probably need to click "load" a few times to see all of them. |
View claim all twitch prime games
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
var buttons = document.querySelectorAll("div[data-a-target=tw-core-button-label-text]") | |
for (var i=0,j = buttons.length;i<j;i++){ | |
if (buttons[i].textContent.includes("Claim Offer")||buttons[i].textContent.includes("Claim Game")){ | |
buttons[i].click(); | |
} | |
} |