Skip to content

Instantly share code, notes, and snippets.

Comment

Please don't make more work for other people by vandalizing your posts. By posting on the Stack Exchange (SE) network, you've granted a non-revocable right, under the CC BY-SA 3.0 license for SE to distribute that content. By SE policy, any vandalism will be reverted. If you want to know more about deleting a post, consider taking a look at: How does deleting work?


Edit summary

don't vandalize your post please - restored to previous version

package com.stackexchange.rpg;
import java.util.Random;
public class Statistics {
public static void main(String[] args) {
long total = 0, samples = 0;
while (true) {
samples++;
total += sample();
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 / 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.
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 {