This lightning talk presentation shows off how you can build a system of Classifiers to detect cheaters. All in a functional way, very modular, readable and testable.
praise him for the code he has written. By the way, don’t show this code to anyone else, it is not my code. __________________________________ (Date, Signature) creator of awesome things Ruby
classifiers = [ ScoreCheatClassifier.new(last_score), LevelClassifier.new(last_score, level) ] @classifier = classifiers.reduce { |a,b| a + b } end end