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 | |
# Creates a list of URLs in a format that can be submitted to the Internet Archive | |
# HOME - The page to start at | |
HOME="https://www.sfxrescue.com/" | |
# DOMAINS - Do not archive outside of these domains | |
DOMAINS="sfxrescue.com" | |
# DEPTH - Depth of search. The Internet Archive can optionally process backlinks going one level deeper, so for a normal site you won't need to increase this. | |
DEPTH=4 | |
# OUTPUT - Output file | |
OUTPUT="./urls.csv" |
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
# -*- coding: utf-8 -*- | |
""" | |
Created on Mon Sep 30 16:55:05 2019 | |
@author: willi | |
""" | |
from PIL import Image | |
import colorsys | |
width = 32 |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>JS Insert Test</title> | |
</head> | |
<body> | |
<button id="insert" onclick="insertFunction();">Insert JS</button> | |