a Twitter CFL experiment
So this is kind of interesting, isn’t it?
Wow, isn’t that wild. A twitter account called @CFLPredictor that posted exactly one tweet, on June 13, before the season started, correctly calling the outcome of the 106th Grey Cup, played in November! What are the chances of that?
Well … I gotta come clean; as it happens, I have a pretty good idea what the chances of that are, because I …
- created the CFLPredictor account on June 10, as a private account not visible to anybody.
<li>wrote a script (using a nifty <a href="https://github.com/sferik/t">command line twitter tool</a>) that posted hundreds of variations of the above tweet - essentially, every possible combination of <em>Team A</em> over <em>Team B</em>
- in a close one
- in overtime
- by a touchdown
- by more than a touchdown
- in a blowout
Essentially it did this ..
#!/bin/sh for t1 in BC Edmonton Calgary Saskatchewan Winnipeg Toronto Hamilton Ottawa Montreal; do for t2 in BC Edmonton Calgary Saskatchewan Winnipeg Toronto Hamilton Ottawa Montreal; do if [[ $t1 != $t2 ]]; then tweet "My Grey Cup 2018 Prediction: $t1 over $t2 in overtime." tweet "My Grey Cup 2018 Prediction: $t1 over $t2 in a close one." tweet "My Grey Cup 2018 Prediction: $t1 over $t2 by a touchdown" tweet "My Grey Cup 2018 Prediction: $t1 over $t2 by more than a touchdown." tweet "My Grey Cup 2018 Prediction: $t1 over $t2 in a blowout." fi done done
To be safe, my script had to include various extremely unlikely options like “Toronto over Hamilton”, because with the CFL’s crossover playoff format, any team can potentially beat any other team.
(It didn’t post “Toronto over Toronto”. I have my integrity here.)
I’m not sure what my plan was going to be if anybody else actually picked up on this but naturally I was hoping it’d get mentioned in the media somewhere.
To my slight disappointment but ultimate relief, everybody on the Internet must be smarter than me because nobody fell for this fake news ruse.
So anyway, next time you see an amazing Internet prediction, consider the possible source.