Via. httpreserve.info
More on robust links: https://robustlinks.mementoweb.org/ (robustify process has been down for a long time)
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <ContainerSignatureMapping schemaVersion="1.0" signatureVersion="40"> | |
| <ContainerSignatures> | |
| <ContainerSignature ContainerType="OLE2" Id="1000"> | |
| <Description>Microsoft Word 6.0/95 OLE2</Description> | |
| <Files> | |
| <File> | |
| <Path>WordDocument</Path> | |
| </File> | |
| <File> |
| """Script to convert PAS to rudimentary ASCII art. | |
| Via: https://jnz.dk/swag/ANSI/0040.PAS.html | |
| ^^ Not sure what the image is other than some text. | |
| """ | |
| data = """ | |
| { TheDraw Pascal Screen Image. Date: 08/29/95 } | |
| const |
| // ==UserScript== | |
| // @name Add Wikidata links to ADB | |
| // @namespace wraggelabs.com/add-wikidata-links-to-adb | |
| // @match https://adb.anu.edu.au/biography/* | |
| // @version 1.1 | |
| // @author Tim Sherratt | |
| // @description 20/08/2025, 10:39:27 | |
| // @grant GM_xmlhttpRequest | |
| // @connect query.wikidata.org | |
| // ==/UserScript== |
| { | |
| "basics": { | |
| "name": "Thomas Edison", | |
| "label": "Inventor and Businessman", | |
| "picture": "https://example.com/photo.jpg", | |
| "email": "thomas.edison@example.com", | |
| "phone": "(123) 456-7890", | |
| "website": "https://thomasedison.com", | |
| "summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
| "location": { |
Via. httpreserve.info
More on robust links: https://robustlinks.mementoweb.org/ (robustify process has been down for a long time)
| from __future__ import print_function | |
| import numpy as np | |
| def asciihist(it, bins=10, minmax=None, str_tag='', | |
| scale_output=30, generate_only=False, print_function=print): | |
| """Create an ASCII histogram from an interable of numbers. | |
| Author: Boris Gorelik boris@gorelik.net. based on http://econpy.googlecode.com/svn/trunk/pytrix/pytrix.py | |
| License: MIT | |
| """ | |
| ret = [] |
| SELECT DISTINCT ?idExtension ?extension ?mediaType ?idExtensionLabel | |
| WHERE | |
| { | |
| ?idExtension wdt:P31 wd:Q235557 ; | |
| wdt:P1195 ?extension . | |
| FILTER (!regex(?extension, "[0-9a-zA-Z]", "i")) . | |
| OPTIONAL { ?idExtension wdt:P1163 ?mediaType } | |
| SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } | |
| } | |
| ORDER BY ?extension ?mediaType |
| #!/usr/bin/env python3 | |
| # Scans SQLite files for known features (UserVersion, AppId, Schema...) | |
| # Ange Albertini 2024 | |
| import argparse | |
| import hashlib | |
| import sqlite3 | |
| import sys | |
| user_versions = { |
| #!/bin/bash | |
| set -x | |
| image="test.img" | |
| label="test" | |
| mntdir=`mktemp -d` | |
| sudo dd status=progress if=/dev/zero of=$image bs=6M count=1000 && sync | |
| echo 'type=7' | sudo sfdisk $image |
| Copyright © 2002 Computer Knowledge | |
| All Rights Reserved | |
| This download for personal use only. Do NOT distribute | |
| it to others either alone or incorporated into any | |
| software without prior permission from Computer Knowledge. | |
| Developers who wish to incorporate portions of the list | |
| please see the comments at the end of this file. | |
| .??_ Files ending in "_" are often compressed install files of the same | |
| name (e.g., .EX_ expands to .EXE, .DL_ expands to .DLL, etc.) |