Skip to content

Instantly share code, notes, and snippets.

Site Banner? Census badge?
https://eosio.stackexchange.com false false
https://quantumcomputing.stackexchange.com false false
https://conlang.stackexchange.com false false
https://stellar.stackexchange.com false false
https://iota.stackexchange.com false false
https://augur.stackexchange.com false false
https://interpersonal.stackexchange.com false false
https://cseducators.stackexchange.com false false
https://bioinformatics.stackexchange.com false false
// ==UserScript==
// @name Cross-site investigator
// @namespace https://github.com/Glorfindel83/
// @match https://stackexchange.com/sites
// @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js
// @connect *.stackexchange.com
// @connect *.stackoverflow.com
// @connect *.superuser.com
// @connect *.serverfault.com
// @connect *.askubuntu.com
https://eosio.stackexchange.com 0 Asking 0 dont-ask
https://eosio.stackexchange.com 0 Asking 1 closed-questions
https://eosio.stackexchange.com 0 Asking 2 on-topic
https://eosio.stackexchange.com 0 Asking 3 what-to-do-instead-of-deleting-question
https://eosio.stackexchange.com 0 Asking 4 deleted-questions
https://eosio.stackexchange.com 1 Our model 0 conduct
https://eosio.stackexchange.com 1 Our model 1 behavior
https://eosio.stackexchange.com 1 Our model 2 interesting-topics
https://eosio.stackexchange.com 1 Our model 3 promotion
https://eosio.stackexchange.com 1 Our model 4 roomba
@Glorfindel83
Glorfindel83 / broken-image-repairer.md
Last active August 19, 2023 14:08
Broken Image Repairer

Broken Image Repairer

What is the problem?

A long time ago, it was possible to inline images from all kinds of external sources. Since the switch from HTTP to HTTPS, this is no longer possible; only HTTPS sources are allowed. This leads to ugly blurbs like

alt text http://example.com/image.png

instead of a nicely formatted page with images. Sometimes, the links don't even work anymore, even with HTTPS images, which will show like this: ... Luckily, we have the Wayback Machine which is able to rescue some of the lost images. Since a picture often says more than a thousand words, it's important to bring back the post into its original state; important enough to justify the occasional bump of an old post (see below).

@Glorfindel83
Glorfindel83 / inbox.js
Created December 4, 2018 08:18
Search global inbox for notification types
let lastPageURL = $("#inbox-pager a:nth-last-child(2)").attr("href");
let lastPage = parseInt(lastPageURL.substring(lastPageURL.indexOf("&page=") + 6));
let baseURL = lastPageURL.substring(0, lastPageURL.indexOf("&page=") + 6);
var itemTypes = {};
function fetchPage(page) {
if (page > lastPage) {
console.log(itemTypes);
return;
}
console.log(baseURL + page);
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
var ok = {};
var deleted = {};
function check(i) {
if (i < 317093) {
console.log(deleted);
console.log(ok);
return;
}
var questionID = i.toString();
$.get("https://meta.stackexchange.com/questions/" + questionID + "/?noredirect=1")
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
package net.mathoverflow.test;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
// https://mathoverflow.net/q/298443/70594
public class CircleGame {