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
// ==UserScript== | |
// @name List of mailman users | |
// @namespace https://gist.github.com/maxharp3r/356b21f9cfd898cd432c0b5bd129fe73 | |
// @version 0.1 | |
// @description list of subscribers to mailmain list | |
// @author Max Harper | |
// @match https://wwws.cs.umn.edu/mm-cs/admin/*/members* | |
// @grant none | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// ==/UserScript== |
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
import logging | |
import random | |
import time | |
from google.appengine.api.memcache import Client as mcClient | |
mc = mcClient() | |
NS = "mtx" | |
class Mutex: |