Skip to content

Instantly share code, notes, and snippets.

@dhjw
dhjw / twitter-unmute-or-unblock-all
Last active May 2, 2024 05:56
Console Javascript to unblock or unmute all Twitter/X accounts
# TODO: loop until b is empty, automatically scroll down with a short delay
# click all visible Unblock buttons
var b = document.querySelectorAll("div[aria-label='Blocked']")
for (i = 0; i < b.length; i++) b[i].click();
# click all visible Unmute buttons
var b = document.querySelectorAll("div[aria-label^='Unmute']")
for (i = 0; i < b.length; i++) b[i].click();
@dhjw
dhjw / donate2.php
Last active May 2, 2024 05:54
Accept BCH donations and display message instantly
<?php
// address used throughout page and script. could also just be hardcoded without PHP.
$addr = 'qqvppp5pe4sce8qyvyncdrhekgkxcyw2hczvervmp8';
?>
<html>
<head>
<title>Donate BCH</title>
<style>
body { font:16pt arial; }
#address { font:18pt arial; }
@dhjw
dhjw / donate.php
Last active September 23, 2019 02:42
Accept BCH donations
<?php
// address used throughout page and script. could also just be hardcoded without PHP.
$addr = 'qqvppp5pe4sce8qyvyncdrhekgkxcyw2hczvervmp8';
?>
<html>
<head>
<title>Donate BCH</title>
<style>
body { font:16pt arial; }
#address { font:18pt arial; }