While I’m happy that a raft of shitty Conservative legislation dies on the floor today (copyright reform bill C-61 included), I’m not entirely thrilled at the prospect an election.
Rather than ranting, I thought it might be useful to outline my algorithm for choosing a candidate to vote for. It’s hand-tweaked, but it has served me well for a few elections now. It goes something like this:
def vote(Candidates): voteFor = nobody # If there are any super-awesome candidates, # vote for the best one. for candidate in Candidates: if isSuperAwesome(candidate): if candidate > voteFor: voteFor = candidate if voteFor != nobody: return voteFor # Otherwise, run through the list of parties in # order or personal preference, excluding # Conservatives. for party in ['Liberal', 'Green', 'NDP']: if not totallySucks(Candidates[party]): return Candidates[party] # Otherwise, stay home. # TODO: should I have a fall-back to vote for # a mediocre indepentant? Not that it matters # at this point... return nobody
If you can’t read Python, I apologize. Just read the comments (the bits after the #s) and you should be okay.
I have reasons for all the decision points, but I think, if you’ve been following long enough, you may already have a decent idea what they are. I like to think I follow a healthy mix of strategic voting and ideology. And I won’t vote for a candidate that totally sucks on principle, no matter what their party affiliation is.
I’ll make myself go through the candidates and talk about them at some point in the next month and a bit.