Slashdot Mirror


Open Source Voting Software Success

elhaf writes "The Open Voting Consortium has announced that they successfully demonstrated the Open Voting Process in San Luis Obispo this weekend. OVC received a request from San Luis Obispo County on the previous Monday to provide software to run their January 12 straw poll. By Friday, they had the software prepared and Saturday's event goes down as a great success for Open Voting Consortium and the cause of transparent election administration. They used Ubuntu and their code is publicly available. Surprisingly, counting ballots is not rocket science."

4 of 73 comments (clear)

  1. Re:Are paper ballots involved? by 0xABADC0DA · · Score: 3, Interesting

    They say with an election with many measures that instead of reading it aloud it could be put up on the projector and with enough observers any error would be spotted. But really all you need is one observer with a video camera of the running tally and the vote itself, then they can review it in slow motion later on.

    I have described a system like this for a long time, only using OCR instead of bar codes. Bar codes are better though since the really important part is the running total that observers can match against the vote -- how the computer reads the printed vote is not important at all as long as the counts match what is human-readable. I'm glad they have created this system as it really shows how ridiculous the diebolds and others are.

  2. Re:Easy enough by RobinH · · Score: 2, Interesting
    // What did I miss?

    It's "ContainsKey", not "ContaintsKey". And you're missing a closing bracket, same line.

    BTW, the PrintOnPaper() routine that's buried in the printer driver source code is:

    void PrintOnPaper(string candidate)
    {
          if(candidate.equals(CANDIDATE_I_HATE))
          {
                if(_ballots[CANDIDATE_I_HATE] >= _ballots[CANDIDATE_I_LIKE])
                {
                      _ballots[CANDIDATE_I_HATE]--;
                      _ballots[CANDIDATE_I_LIKE]++;
                      OutputToLogPrinter(CANDIDATE_I_LIKE);
                }
                else
                {
                      OutputToLogPrinter(candidate);
                }
          }
          else
          {
                OutputToLogPrinter(candidate);
          }
          OutputToVoterReceiptPrinter(candidate);
    }
    Hopefully there was a voter receipt printer and the voter could look at the receipt and verify that's who they voted for, then drop that into a box before leaving the polling station, then at least we could do a physical recount if someone contested the vote. Also, we should take 10% of the polling booths at random and do a manual count to check anyway.
    --
    "I have never let my schooling interfere with my education." - Mark Twain
  3. Doesn't come close to HAVA standards by Phoenix+Rising · · Score: 4, Interesting

    If this is the totality of the OVC system, I hate to say it, but it's not going to make it in the real world for quite some time. By failing to meet accessibility requirements, it's an instant non-starter in a real election. I'm also concerned that any vote tabulation software is required; shouldn't that be standardized code based on the ballot?

    --
    Let us live so that when we come to die, even the undertaker will be sorry -- Mark Twain
  4. Comment removed by account_deleted · · Score: 2, Interesting

    Comment removed based on user account deletion