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
#!/bin/bash | |
set -u | |
# requires pdfinfo pdfseparate pdfunite pdfbook2 | |
PDF_INPUT=$1 | |
PDF_OUTPUT=$2 | |
echo "converting $PDF_INPUT" |
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
// Simple Facebook "Suggested for your" blocks removal (no distractions!) | |
// Instructions: copy and paste this code into the browser console | |
// open Facebook -> ctrl+shift+J (ignore alert) -> (paste into the console) ctrl+V -> ENTER | |
var removedADS = 0; | |
function get_a_elements_by_inner(word) { | |
res = [] | |
elems = [...document.getElementsByTagName('a')]; |