in reply to How I vote

I start with 2 counters: $P and $N. Initially, $P = $N = 0. Then I have the following rules: Then I do:
my $plus = rand(100) < $P; my $minus = rand(100) < $N;
I vote if, and only if, $plus xor $minus, and if I vote, I vote ++ if $plus, and -- if $minus.

But then I realize that I don't bother with getting an account, so I don't vote after all.