Simulating outcomes

As expected the recursion at the core was fun and a little bit magical: For the faked outcomes we use the very scorigami-ish score of 55-4. Obviously since margins of victory matter in our final tiebreaker system we can either go crazy and simulate many different scores or just pick one for the enumeration. Here’s… Continue reading Simulating outcomes

Published
Categorized as code, results

Meaningful games in November

Mea culpa in not realizing last week that SDSU’s “home” game was actually played in Carson. That’s (partially) why the line didn’t reflect a true home field advantage for SDSU and indeed it moved more toward Fresno at game time and Fresno did win convincingly. Gambling advice is for entertainment only! Fresno and San Diego… Continue reading Meaningful games in November

Published
Categorized as code, results

command line params

For too long I’ve been letting the main executable limp along in “developer mode,” where you have to edit the file to change some params. I bit the bullet and read up on python3 argument parsing and of course it wasn’t that bad. Here’s the diff. I used the argparse module, billed in the official… Continue reading command line params

Published
Categorized as code

anatomy of a timezone fix

Timezone bugs and libraries are always hilarious fun so let’s take a look at what I did and what I should still do before I forget it. The diff in question. The timestamps in the database are in UTC time. So it should be a simple enough matter to parse them as UTC and then… Continue reading anatomy of a timezone fix

Published
Categorized as code

FCS shouldn’t count?

Doing a project as pointless as this lets me really examine some of the pitfalls of how software projects get hung up. Let’s take a look at a verbose run for 2007 under the current codebase: UCLA 45 at Stanford 17 on Sep 01, 2007 Sacramento State 3 at Fresno State 24 on Sep 02,… Continue reading FCS shouldn’t count?

Ties

I added support for games that end in a tie with this commit. With my recency bias I had left that out and marked it “hard” in my head but it doesn’t seem like it takes much. It changes a couple of 1970s results. I had credited San Diego State with one too many titles.… Continue reading Ties

Published
Categorized as code, results