Via. httpreserve.info
More on robust links: https://robustlinks.mementoweb.org/ (robustify process has been down for a long time)
| // ==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": "[email protected]", | |
| "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 [email protected]. 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.) |
Going to move development to this repo to make PRs easier to manage: https://github.com/brianckeegan/Post_2024_News
Mainstream media failed to hold Trump to account over the course of the 2024 presidential campaign through "view from nowhere" centrism and false equivalencies between both campaigns.
Here is a list of news organizations, newsletters, and writers that are audience-funded and/or non-profits committed to independent and investigative journalism.
| """ | |
| rsyslog config: /etc/rsyslog.d/my-sample.conf: | |
| $template AppLogFormat, "%TIMESTAMP:::date-pgsql%%TIMESTAMP:27:32:date-rfc3339%(%syslogseverity-text%)%msg%\n" | |
| if $app-name == 'my-sample-app' then -/var/log/my-sample-app/app.log;AppLogFormat | |
| & ~ | |
| """ | |
| from __future__ import print_function |