Skip to content

Instantly share code, notes, and snippets.

@trumad
trumad / delete all files from an archive.org item.js
Created November 1, 2022 22:11
JS to delete all files from an archive.org item
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));
}
@trumad
trumad / flickrDownloader.user.js
Created August 19, 2022 10:48
tampermonkey script to download photos from Flickr
// ==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
@trumad
trumad / addElementHelperFunction.js
Last active October 5, 2022 08:56
A javascript helper function to add elements to the DOM
// 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
@trumad
trumad / tradingViewMultipleWindows.py
Last active September 11, 2023 12:10
See multiple tradingview windows side by side, hopefully without ads and popups.
# 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",
@trumad
trumad / grabPatreonVids
Created September 15, 2020 21:58
How to grab videos from patreon posts en masse.
//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.
@trumad
trumad / claim all twitch prime games
Last active May 26, 2021 10:37
Run this in the browser console to claim all available twitch prime games.
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();
}
}