Skip to content

Instantly share code, notes, and snippets.

View mattdennewitz's full-sized avatar

Matt Dennewitz mattdennewitz

  • Lancaster, OH
View GitHub Profile

The ULMG Constitution

Updated, March 2022

History

The United League of Moderate Gamers was created in 1986 so that ordinary people could experience the thrill of operating a Major League baseball franchise without the bother of spending countless millions of dollars for the pleasure.

After incomplete seasons of face-to-face Strat-O-Matic play in 1986 and 1987, the charter members – Todd Burkes, Darren Grasse and Rick Senften – re-formed the league into a 12-team, play-by-mail format beginning in 1989. The inaugural members were:

  • Todd Burkes (Houston)
  • Darren Grasse (Seattle)
  • Rick Senften (Cleveland)
  • Scott Harrington (Chicago-N)
var React = require('react');
var _ = require('underscore');
var SigForm = React.createClass({
onChange: function() {
var node = React.findDOMNode(this.refs.form);
var serialized = {
sigName: node['wholename'].value,
email: node['email'].value,
@mattdennewitz
mattdennewitz / es.sh
Last active December 14, 2015 05:09 — forked from johnvilsack/es.sh
cd ~
sudo apt-get update
sudo apt-get install openjdk-7-jre -y
wget http://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.20.5.tar.gz -O elasticsearch.tar.gz
tar -xf elasticsearch.tar.gz
rm elasticsearch.tar.gz
sudo mv elasticsearch-* elasticsearch
sudo mv elasticsearch /opt
chown matt:matt -R /opt/elasticsearch
#!/usr/bin/env python
import sys
last = ''
punc = ','
while True:
c = sys.stdin.read(1)
if c: