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
{ | |
"nodes": { | |
"fenix": { | |
"inputs": { | |
"nixpkgs": "nixpkgs", | |
"rust-analyzer-src": "rust-analyzer-src" | |
}, | |
"locked": { | |
"lastModified": 1723098624, | |
"narHash": "sha256-TFg+lq7pHgCnsB4nRmMeTxSnZXHvzYJ2IHyEiw8zEF8=", |
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
/* | |
* Copyright (c) 2006-2024 LOVE Development Team | |
* | |
* This software is provided 'as-is', without any express or implied | |
* warranty. In no event will the authors be held liable for any damages | |
* arising from the use of this software. | |
* | |
* Permission is granted to anyone to use this software for any purpose, | |
* including commercial applications, and to alter it and redistribute it | |
* freely, subject to the following restrictions: |
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 | |
# Take a PDF, OCR it, and add OCR Text as background layer to original PDF to make it searchable. | |
# | |
# Hacked together using tips from these websites: | |
# http://www.jlaundry.com/2012/ocr-a-scanned-pdf-with-tesseract/ | |
# http://askubuntu.com/questions/27097/how-to-print-a-regular-file-to-pdf-from-command-line | |
# | |
# | |
# Derived from: https://gist.github.com/jburon/d31e0132dfb291dc804bac019f9d9023 |
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
/* | |
* cloudflare's email-decode.js | |
* | |
* (manually) "decrypted" by antipatico (github.com/antipatico) | |
* | |
* All Wrongs Reversed (Ↄ), 2018 | |
*/ | |
! function() { | |
"use strict"; |
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 | |
# Created by antipatico (antipatico.ml) | |
# Download the latest cloudflare's IPv4 ranges and create an ipset | |
# named "cloudflare" you can later use in your iptables rules. | |
IPSV4=$(mktemp) | |
wget --quiet -O $IPSV4 https://www.cloudflare.com/ips-v4 | |
ipset destroy cloudflare | |
ipset create cloudflare hash:net | |
while read -r range; do |