Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×
Security United States

Diebold Fails Again in San Diego 333

ptudor writes "An article in today's San Diego Union Tribune reveals nearly 3000 absentee ballots in the San Diego primary one month ago were miscounted. 'The miscounts occurred because multiple scanners simultaneously fed the absentee ballot data into the computer tabulation system. The large number of ballots and candidates on them overwhelmed the system. Diebold spokesman David Bear said the company has provided a software fix to the county for the new problem.' The irregularities were found in a routine post-election review." You can also read more about the problems on election day.
This discussion has been archived. No new comments can be posted.

Diebold Fails Again in San Diego

Comments Filter:
  • by ackthpt ( 218170 ) * on Thursday April 08, 2004 @04:47PM (#8808272) Homepage Journal
    Where it really went wrong:

    Bob:
    "Hmm. The first republican got no votes, the Cthuluist candidate got 34% overall and we got all these crashes on people who voted for Clover."
    Jeff: "Jeff, it's base zero, not base one."
    Bob: "Oops."
  • Just 3000? (Score:5, Funny)

    by Anonymous Coward on Thursday April 08, 2004 @04:47PM (#8808276)
    They really ARE using Microsoft Access ;)
  • Great! (Score:5, Funny)

    by Knight Thrasher ( 766792 ) on Thursday April 08, 2004 @04:49PM (#8808313) Journal
    Let's take a vote on who pays for all these mishaps, the taxpayers or the company!... no, wait...
    • Re:Great! (Score:2, Funny)

      by ackthpt ( 218170 ) *
      Let's take a vote on who pays for all these mishaps, the taxpayers or the company!... no, wait...

      Sign on the door to California:

      California is currently out of money. Please move along to the next state. Thank you.

  • Fully Tested... (Score:5, Insightful)

    by orrigami ( 769691 ) on Thursday April 08, 2004 @04:50PM (#8808321)
    I don't know about everyone else but we try to fully test our software before moving it to production. Seems like they should do the same... "During the March 2 election, one of the pieces of equipment used at polling sites was not fully tested, and it failed."
    • Re:Fully Tested... (Score:2, Interesting)

      by sumdumass ( 711423 )
      Geesh.... didn't you know that a company as big as this beta test on the public. Look at all the games and microsoft operating systems.

      Wait untill your company gets as big as liebold......
    • Re:Fully Tested... (Score:5, Insightful)

      by nomadic ( 141991 ) <`nomadicworld' `at' `gmail.com'> on Thursday April 08, 2004 @05:07PM (#8808581) Homepage
      Yep, you do, most people do, Diebold doesn't. They're a sleazy company with a right-wing president who's actively campaigned for the Republicans. I wasn't sure if they were just corrupt or incompetent, now I think they're probably both.
      • Re:Fully Tested... (Score:5, Insightful)

        by goon america ( 536413 ) on Thursday April 08, 2004 @06:22PM (#8809474) Homepage Journal
        It doesn't matter. If the voter cannot understand how/if their vote was counted, then the voting system is broken. End of story.
      • I wasn't sure if they were just corrupt or incompetent, now I think they're probably both.

        Well that's good news! Incompetent evildoers are better than competent ones.

  • I Wonder... (Score:2, Funny)

    by Mikkeles ( 698461 )
    ... if Diebold and Cisco [slashdot.org] are owned by the same parent company!
  • Huh? (Score:5, Insightful)

    by Zebra_X ( 13249 ) on Thursday April 08, 2004 @04:51PM (#8808337)
    How hard is it REALLY to count and store votes?

    I mean, there are sites on the net that conduct thousands of transactions in very short periods of time. It doesn't seem like this is really that hard.

    How can a company like diebold still be in business if they can't take data from some form fields, and put it into a database?
    • Re:Huh? (Score:5, Funny)

      by flossie ( 135232 ) on Thursday April 08, 2004 @04:54PM (#8808384) Homepage
      there are sites on the net that conduct thousands of transactions in very short periods of time

      But they don't always do it well (164 %) [slashdot.org]

    • by Wister285 ( 185087 ) on Thursday April 08, 2004 @05:53PM (#8809114) Homepage
      Here it is, they better take it before I GPL it.

      while (ballots > 0) {
      if (vote == republican)
      republicanCount++;
      else if (vote == democrat)
      democratCount++
      else
      cout "Threw his vote away" endl;
      }
    • Re:Huh? (Score:4, Insightful)

      by microbox ( 704317 ) on Thursday April 08, 2004 @07:31PM (#8810175)
      How hard is it REALLY to count and store votes

      I once did a university project that was an election system prototype. We had to write the whole thing in C++ (Qt), and it had to count votes Australian style, both Senate and House of Reps.

      It was easy. The hardest part was working out what the election rules actually are (for special cases). One prof at the university was a government appointee to interpret the rules in the case of a dispute at election time. We visited him to clarify certain things, such as

      computer programmer: Who wins if two candidates have exactly the same number of votes in the final count?
      prof: You do a recount
      computer programmer: And if they still have the same number of votes?
      prof: That will never happen

      Mmmm... not good enough if you're writing a counting algorithm. (We added a new condition into the results, which was "no result")

      Our system printed receipts for votes, had internationalization, allowed for various layouts of the ballot on screen, and made no assumptions as to how many candidates and parties there were. The ballot was configurable from a text file, and the computer could be switched off at any point during the voting process, and you could tell if the vote was counted or not... well there was an infinitesimally small chance that the power could go at just the right time... and the vote was counted before it was logged on the local machine. You'd probably have about a 1ms window to hit the power if you were trying to sabotage the system.

      The only trick (other than a smooth UI) is to get the user program to send the votes to a central location. The must have been a thousand programmers in Brisbane alone who would have had the skill to do that.

      These systems aren't rocket science, they're student projects. If I had to do it again, I'd implement the whole thing in Java with a SQL backend. The java could be compiled on a single system, and then downloaded by the client voting systems on startup. Thus the police only need to audit one machine. With a team of 10 people, the whole thing could be designed, implemented, tested and documented in 6 months. If you add in an engineering team to make beautiful custom boxes (running *NIX), with nothing but a monitor, ethernet port and power switch, it could be shipped as one purpose built product.

      Brazil has been using electronic voting for years. Diebold are obviously incompetent, and perhaps worse. The US boasts many technological breakthroughs, and many famous programers live and were educated there. What's going on?
  • by fudgefactor7 ( 581449 ) on Thursday April 08, 2004 @04:51PM (#8808339)
    Have you seen the "secret" video? Go here [safevoting.org] and take a look. I love how these things can't be trusted to add correctly.

    Pen and paper: the only way to vote. Say no to machines.
    • People screw that up to. I think we need a brain scanner which determines the persons personality and interests and it will vote using that information. You just put a hat on, people couldn't possibly screw that up could they? What about people with negligable brain activity? Hmmmm....
      • sure they could. As the enter they overhear someone talking about those asshats (whom they did not vote for), and thus put the hats on their ass. So then we end up with crappy officials. Imagine what that would be like ... oh, wait
    • by That's Unpossible! ( 722232 ) * on Thursday April 08, 2004 @05:02PM (#8808502)
      Pen and paper: the only way to vote. Say no to machines.

      I know it's all the rage on slashdot to rattle your sabots, so I really hate to break it to you -- machines are already used to count votes made with pen and paper, all over the country. You complete the arrows with a pen, and then feed your card into a computer that reads and tabulates your vote.

      So instead of saying "no to machines," why don't we say "yes" to fixing the problems? #1 we need some redundancy built into these systems in case of problems. #2 we clearly need a better group of engineers working on the problem than those at Diebold.
      • by nickos ( 91443 ) on Thursday April 08, 2004 @05:12PM (#8808656)
        "I really hate to break it to you -- machines are already used to count votes made with pen and paper,"

        Yes but at least you can verify the results by having a human recount the ballot papers. If you replace the physical ballot papers with electronic voting you have to trust the voting system.
        • by Frymaster ( 171343 ) on Thursday April 08, 2004 @05:19PM (#8808755) Homepage Journal
          Yes but at least you can verify the results by having a human recount the ballot papers.

          bingo! the real problem with electronic voting is:

          • no backup. in many cases the "e-vote" is all there is. no paper.
          • mutable format. ballots are hard to change, delete or add. little ones and zeroes are easy to change.

          if you developed a data centre with no backups and 777 perms on everything, no one would trust you.

    • by On Lawn ( 1073 ) on Thursday April 08, 2004 @05:02PM (#8808505) Journal

      I guess what I really like about paper voting is not only the paper trail but the fact that the whole process is viewable and hard-tooled.

      "Soft" ware is too changable to quickly. If there was a hardware only voting system (tres expensive!) with no firm or software I'd be all for it. It should not be changable except in very transparent ways.
    • So you're saying that they use Intel chips?
    • by qtp ( 461286 ) on Thursday April 08, 2004 @05:29PM (#8808871) Journal
      It's great that the clip is available online, but it has become apparent to me that the knowledge of the voting machine problem is not widely known. Even at the two tech conventions that I recently attended, one of which was oriented to non-profits including political action groups, most of the attendees that I spoke with had little knowledge of who Deibold is, of the problems with computerized voting that have already occurred, or of the inherent design problems that could be used to corrupt the election results using these machines.

      What would it take to get that clip televised?

  • Well (Score:5, Interesting)

    by On Lawn ( 1073 ) on Thursday April 08, 2004 @04:52PM (#8808361) Journal

    I didn't vote in San Diego, but I am close by and did vote on a Die-Bold system. I have to admit I was tempted to go to the registrars office and vote manually or pick up an absentee ballot. Just so I could have a verifyable paper trail. Its interesting to learn that the absentee's could get messed over just as well.

    I was suprised though while standing in line that the two people in front of me had absentee ballots and chose to vote via touch screen anyway.
  • Until there is a way to have two or three safety checks that are electronic, we are always going to see these problems. Have an electronic machine from one company send the vote to its database, and print a "receipt" for the vote out. Then, have they receipt scanned into a system built by a different company, and check the results. The voter can also look at the receipt and verify that is who they voted for, as well, as being double checked to veryify there are no "programming" errors.

    • I don't know that the different companies are neccisary, just the paper trail.

      One more thing about a paper trail is that it needs to be one-way. In other words they shouldn't be able to determine how you voted, but you should be able to verify your vote was counted correctly. I wonder how absentee ballots do that.
      • The reason there needs to be two different companies is if you have the same companies that both produce the electronic voting booth, and a scanning machine, they may have the same flaws, or may have been paid off by one side or the other, with two different companies, while this is still possible, it is much more difficult.
        • by On Lawn ( 1073 ) on Thursday April 08, 2004 @05:13PM (#8808671) Journal

          with two different companies, while this is still possible, it is much more difficult.

          I was thinking about this when I was reading Federalist #51 (I've written on this in my journal which is linked in my sig). There Madison speculates that certain combinations of cause by motivations other than community threaten the rebublic more than everyone keeping after their own cause and establishing distinctive communities.

          Immediately the Cola Wars come to mind, and our hopelessly two party system (read Pudge's journal about how the two party system locks out third parties). I'm not sure any number of companies can really guarantee that they don't combine against some weaker entity.

          That said, more companies would probably provide more security. But probably not as much as a truely transparent and hard-tooled voting mechanism.
    • by Liselle ( 684663 ) * <slashdot@lisWELTYelle.net minus author> on Thursday April 08, 2004 @05:16PM (#8808701) Journal
      Careful!

      If a voter can walk off with a receipt, that means that their vote can be verified to outside parties. This means that votes can be bought, which is definitely a bad thing. I assume you meant that the paper receipt would be "eaten" by the scanning machine, but it's an important distinction.
      • by jtownatpunk.net ( 245670 ) on Thursday April 08, 2004 @06:54PM (#8809785)
        The receipt doesn't have to be given to anyone or even leave the machine. This has been discussed many, many, many, many, many times.

        Run the printout under a plexiglass window and have the voter look at it and verify that the information is correct. Then run it through a second printer that gives it a confirmation or rejection code depending on how the voter responded to the "is this right?" querry. After that, it gets run into the takeup reel. The entire printing mechanism can be sealed in a tamper-proof box that can't be opened by anyone on the premesis, reducing the chance of tampering at the polling place by volunteers.

        That takeup reel can even be OCR'd for 100% verification checks by a third party. None of this "spot checking" crap. Again, this reader can be built into the printing mechanism. If everything passes, toss the recipts in a cave somewhere for long-term storage. If they don't match then it's time to crack the seal and check by hand.
  • 3000? (Score:5, Informative)

    by Havokmon ( 89874 ) <rick@h[ ]kmon.com ['avo' in gap]> on Thursday April 08, 2004 @04:53PM (#8808365) Homepage Journal
    That would suck.. There was an actual TIE for Mayor of South Milwaukee [jsonline.com] on Tuesday.

    Of course, there were only around 6000 votes in the first place..

  • by Anonymous Coward on Thursday April 08, 2004 @04:54PM (#8808390)
    Americans don't let the rascals take office the day after the election. We don't need computer screen ballots. Paper with an X in the box is fine.

    Bettern punch cards.
    Bettern electronic.
    Cheaper too.

    The real problem with elections is voter apathy and the influence of big bucks. Making incumbents spend all their money and re-raise for the next election would help more than buying expensive, insecure voting machines. Letting people deduct $50 bucks from the top of their 1040 for contributions to legal candidates would help too.

  • by doorbot.com ( 184378 ) on Thursday April 08, 2004 @04:54PM (#8808391) Journal
    <tinfoil hat>

    "The irregularities were found in a routine post-election review."

    Oh, so that's what they're calling it...
  • by jedi-monkey ( 762035 ) <(moc.liamtoh) (ta) (dnalteh_m)> on Thursday April 08, 2004 @04:55PM (#8808394)

    If California government spent $32 million on this system that has been so controversial, I have just one question:

    Why wasn't there more quality assurance involved?

    Stupid people piss me off, stupid bureaucrats piss me off even more

  • by Anonymous Coward on Thursday April 08, 2004 @04:55PM (#8808397)
    if ( voter != white )
    discard(vote);
  • Paper. (Score:5, Insightful)

    by BFaucet ( 635036 ) on Thursday April 08, 2004 @04:55PM (#8808402) Homepage
    I still don't see why we can't stick to paper...

    My area usues well labled and hard to screw up fill in the circle sheets that you feed into the scanner yourself. It's reliable paper and offers very quick counting.

    Usually I'm all for using technology to make life easier, but this is one area where I think reliable is more important than easy.

    Yup.
    • I agree. I'm in Iowa and (at least in my district) the forms are VERY simple. They consist of a bunch of items that have partial arrows drawn next to them. Sort of like this:

      = => Mr. Person
      = => Mrs. Person

      And all you do is fill in the arrow line next to the people you want to vote for to make a solid arrow. Easy and I can see where it would be very simple for the scanners to read it, too.
    • Still Problematic (Score:3, Interesting)

      by blunte ( 183182 )
      Fill in the blank doesn't even work.

      I remember during some of the analysis of the 2000 Florida election disaster that one of the recount counties gave facts about the number of ballots that had multiple votes. IIRC, dozens had at least 2 votes, many had 3, some had 4, and a couple even had 11. This means some voters are either completely hopelessly confused, or they're screwing around.

      Also, remember the election officials in each county have great capacity to screw things up.

      As with most problems, the
  • by blcamp ( 211756 ) on Thursday April 08, 2004 @04:56PM (#8808414) Homepage

    "These performance failures are unacceptable," Ekard wrote. "Having a reliable and trouble-free voting system is absolutely essential to the county. Your failure to provide such a system in the March election was extremely troubling and any issues that remain must be fully resolved long before the November election."

    Problem is, it is no longer "long before the November election."

    I have commented on this subject before [slashdot.org], and see nothing that changes my view; rather, it reinforces it.

  • by EvanED ( 569694 ) <evaned@NOspAM.gmail.com> on Thursday April 08, 2004 @04:57PM (#8808420)
    Jon Stewart: "But these things can't be that insecure..."
    Some security researcher: "We broke into the board of elections and completely changed the result, erasing all of our traces and got back out"
    Stewart: "...um, but sure, you give a guy a day and..."
    S.S.R.: "We did it in 5 minutes."

    [Paraphrased, but the idea is here... Also, it's possible that the last statement by the SSR was not referring to the entire operation; the Daily Show appearso to have a habit of making deceptive cuts. But who knows...]
    • "the Daily Show appearso to have a habit of making deceptive cuts. But who knows..."

      What do you expect from A FAKE NEWS SHOW?
      Not saying the story isn't partially based on fact, but the intention is to be funny (and damn funny it is)
      • See, the Daily Show isn't really fake news. That's the thing. What Stewart talks about is actually news. Usually when they are being outright false they are obvious about it, such as many of the "translations" they have. The problem, if there is one, is that many people use it as their source of news. Probably almost no one who saw this clip saw the actual interview it was from, and few heard details about that particular study.

        I guess what I'm trying to say is that even though they are not a serious news
    • by SnappleMaster ( 465729 ) on Thursday April 08, 2004 @05:18PM (#8808735)
      "the Daily Show appearso to have a habit of making deceptive cuts"

      People who use a Comedy Central as a new source are not qualified to comment on the news!

      I love the Daily Show and I must admit that I use it as a news source. Therefore I am not qualified to comment on today's issues. Thank you.
  • by Tumbleweed ( 3706 ) * on Thursday April 08, 2004 @04:57PM (#8808430)
    How is it something that can handle the amount of traffic Slashdot does with duct tape & bubblegum (MySQL & Perl), yet a Diebold machine can't handle 3000 absentee ballots? Friggin' amazing. To quote Weird Al, "What kinda chip they got in there, a Dorito?"
  • You have multiple entries coming into the same table. Wouldn't it stand to reason that the database would lock that table upon a write request thus allowing only 1 write at a time? Wouldn't that keep things running more smoothly?

    Or, was this a case of table locking causing a deadlock as all the other threads got stuck waiting for the table to unlock again?

    Either way, it seems that you don't run into these problems with a paper ballot. After all, if the box is getting too full, someone can put a new box ou

    • I have a little secret I've learned over the years that I'll share with you today, grasshopper:

      Most programmers are incompetent nitwits.

    • Any database worth its salt that isn't complete shit should be able to handle multiple writes hitting it at the same time. If not the software should be able to recognize this and wait for it to be free before it just starts going all wonky.
  • Diebold... (Score:2, Informative)

    by Anonymous Coward
    has ties to the republican party as one of it's largest donators. this whole thing stinks of day old feces.
    • Re:Diebold... (Score:3, Interesting)

      by 0x0d0a ( 568518 )
      has ties to the republican party as one of it's largest donators. this whole thing stinks of day old feces.

      Technically, that could just be political corruption to ensure that they got the (extremely lucrative) e-voting machine contracts.
    • day old feces

      Day old shit tends to actually smell less than a fresh pile.

  • by bleublue ( 766512 ) on Thursday April 08, 2004 @04:58PM (#8808440)
    In all this talk about electronic voting machine failures, I still don't comprehend how the process can be so complicated that it has so many failures, requires full featured OS (i.e. Windows), etc... I mean all voting is a position, list of names, select 1 or more (depending on the type of election). Couldn't this all be done with code small enough to fit on a ROM or something that would be almost impossible to tamper with? Even votes could be somehow "burned" into a write-once type of memory. Simple network adapter to transfer the results.
    • Excellent point!

      I bet it'd be cheaper cost per unit to.
    • by Devi8R ( 769720 )
      There is something like 2000 pages on regulations and cirtification requirements your product most go through in order to be cirtified by the US Governement. The spec is unreal. I was invovled in this but can't say where. I will say Diebold was a competitor. Local governments don't have the same necessary must have requirements. The main issue is each state has separate laws for voting. You basically need to write software Helen Keller with a 20 IQ can use. That is tough.
    • The marketing monkeys at MS have been singularly successful in convincing damn near everyone that _nothing_ can get done on a computer unless it's a computer running Windows. The idea of developiong a program on a platform that incorporates only that software that a program requires to run doesn't even enter their minds.

      So, get used to electronic election result failures because Active-X is updated improperly, or the soundcard has a conflict.

  • by 0x0d0a ( 568518 ) on Thursday April 08, 2004 @05:03PM (#8808519) Journal
    I think that it's a terribly damning sign that Slashdot generally condemns e-voting.

    Most Slashdotters are geeks, many hard-core computer geeks. They use computers far more than the typical person, to handle many, many aspects of their lives. Most of them were using email and IMing systems well before the general populace. Slashdot is almost universally enthusiastic about new technological advances (humanoid robots, organic computing, OLEDs, new storage technologies, mp3/ogg players, new operating systems, etc). And yet, standing WAY out among all this is e-voting, which Slashdot is overwhelmingly negative on.

    This is no more than one data point, but it's a very strong, influential, and *negative* data point against e-voting. A lot of people with interests in computer security read Slashdot -- if they feel that it isn't worth trying to trust e-voting, isn't it worth listening to them?
  • by nickos ( 91443 ) on Thursday April 08, 2004 @05:04PM (#8808530)
    The voting process demands openness and accountability, and for these reasons software cannot be used, even if it's open source. Voting must remain dependant on human countable physical ballots (or similar).

    One idea I had would be as follows:
    In an election with 4 candidates there would be 4 transparent tubes, each coated with an opaque wrapper. Voters would insert a coin-shaped plastic token into the cylinder representing their favourite candidate, and when the votes need to be counted the opaque wrapper would be removed to simply show which candidate had won. It's obvious, completely transparent and recounts are unnecessary because the winner should be obvious to all.
  • Unacceptable. (Score:5, Informative)

    by red floyd ( 220712 ) on Thursday April 08, 2004 @05:05PM (#8808552)

    I used to write mission critical software (as in, you-screw-up-and-your-user-can-die) for the US Army (Artillery Control). We had to pass internal unit test, integration test, system test, FQT, fielded IOT&E. At each point (past developer level integration), if an anomaly occurred, a trouble report was generated. All priority 1 and 2 reports HAD to be addressed and resolved. Priority 3 needed to be resolved or have a formal waiver.

    1 - Failure to perform, user at risk
    2 - Failure to perform, no workaround
    3 - Failure to perform, workaround available
    4 - Irritating/annoyance
    5 - other

    In the voting arena, I would say that problems with inaccurate counts would be priority 2 (since nobody dies directly). There should be NO WAY any fielded system should have those sorts of trouble.
  • Two Things (Score:5, Insightful)

    by His Shadow ( 689816 ) on Thursday April 08, 2004 @05:06PM (#8808561) Homepage Journal
    First off, maybe it's about time the US separated it's Presidential vote from the 256 initiatives about potholes.

    Secondly, just use paper ballots and be done with it. If you need to see how it's done, come to Canada.

  • by Devi8R ( 769720 ) on Thursday April 08, 2004 @05:06PM (#8808565)
    When a consultant I reviewed their product suite as well as other vendors such as Votec. They use MS SQL Server and Visual Basic. How funny. I knew their products would fail. Their off the record breagging involved hyping their M$ team and saying they got some of the best minds in the MCSE market!!!! As well they felt my ideas with using Transaction servers with their product suite for verification was a bit a farfetched. Uh huh!! Anyways - it is funny. Cheers
  • Um, well the system worked fine until it tried to do more than 2 things at once, then it borked..

    Software quality assurance usually involves load testing, apparently something they neglected. Looks like the guy who hacked the whole thing in BASIC was also the QA engineer.
  • by revscat ( 35618 ) on Thursday April 08, 2004 @05:21PM (#8808776) Journal
    I have been wondering lately if phsyically damaging these machines is not justified in a system that is supposed to cherish democracy to such a high degree. Civil disobedience is justified in some cases, and I believe that the use of unverifiable electronic voting machines with known vulnerabilities is just such a case.

    Remember, Americans: Bring your voter registration card, and a sledgehammer for Diebold. They are stealing our freedom to vote, the very democracy over which so much blood has been spilled, and the corrupted political process is encouraging it via awarded contracts and almost silent acquiescence.

    This crosses political affiliations and affects all Americans. I strongly believe that this must be stopped it by all means necessary or we will lose the ability to collectively affect the policies of our country, no matter how small your individual voice might be. This is zealous, without a doubt, but not all zealotry is bad. "Extremism in the defense of liberty is no vice."

    Live free or die.
  • by butane_bob2003 ( 632007 ) on Thursday April 08, 2004 @05:22PM (#8808786) Homepage
    There really is no excuse for this kind of bad engineering. It's not as if computer science is not well understood (we created it after all). Do the government and Diebold both have no idea how to engineer and test a relatively simple vote counting system? How did it get 'confused' by a large number of candidates/votes? How was this system tested?
  • by The Queen ( 56621 ) on Thursday April 08, 2004 @05:27PM (#8808846) Homepage
    I didn't see this in anyone else's reply, but if it's there and I missed it, pardon my redundance... The Computer Ate My Vote [truemajority.org]
  • by whoever57 ( 658626 ) on Thursday April 08, 2004 @05:27PM (#8808854) Journal
    This article [oaklandtribune.com] highlights problems also. In the follow-up [oaklandtribune.com] it appears that Diebold still claims that their systems work, despite evidence to the contrary.
  • Scantron? (Score:5, Insightful)

    by moankey ( 142715 ) on Thursday April 08, 2004 @05:28PM (#8808865)
    What about Scantron? That thing never broke down, even though there were a few times I wish it would have.
    We put enough faith in it to tally the aptitude and academic future of our youth it should be good enough to tally the leaders of tomorrow.
  • by theEd ( 61232 ) on Thursday April 08, 2004 @05:57PM (#8809142)
    What's really "funny" about this whole issue is that the voting machines are not the problem, it's the process.
    1. The electoral collage needs to be abolished . At one time it may have made sense, but in today's world it's just another problem in the system. Now, some analysts have stated that the electoral college system is good because it encourages the canidates to visit less populous states. The reason, which is a bit convoluted, is that the vote of a person in those states basically counts more than a vote of a person of a "larger" state. Well that's just bull**it. Everyone's vote should count the same. I don't care if you live in a luxury apartment on fifth ave in New York or in a tent on a mountian near Missoula, MT. What happened to the "truths that we hold self-evident" like the fact that "all are created equal".
    2. Any elected official should be elected by a majority, not a simple plurality. In the past three presidential elections no canidate has taken more than 50% of the popular vote. So, for the past 12 years, we have had a president in which most people did NOT vote for. Am I the only that has a problem with that? I think it's time for instant runoff voting [fairvote.org]. Now, initially I was apprehensive about IRV, not knowing the mechanics, but after I read more about IRV this is the way to go. It fixes the "problem" of spoiler candidates, like the Gore vs. Nader in 2000. It's actually quite simple, and if you look at the process, it is still possible to vote the "traditional" way. Thus, persons who don't fully utilize IRV while voting would not be at any less of a disadvantage than if they voted in a simple plurality. On top of that we are guarenteed that our officials must capture a majority of the electorate, while we only have to visit the polls once.
    • I normally wouldn't bother replying but you make two good point that shouldn't be implemented ever. The EC, I think, is even more needed now when our population is over 300 million. If it weren't there your vote would only be 1 in 300,000,000 chance of changing the outcome. With it it's less because you are more likely to change your state.

      IRV should never be used and is worse than plurality. It violates the all important monotonicity principle. That means if you vote for someone they could lose. Approval

  • Its all so clear (Score:5, Insightful)

    by t_allardyce ( 48447 ) on Thursday April 08, 2004 @08:35PM (#8810717) Journal
    I think the choice of action the fedral government should take is pretty obvious:

    1. Demand that all Diebold voting machines are recalled immeadiately and that Diebold refunds all states in full.

    2. As a temporary measure, reinstall the previous voting machines/methods or simple cards in all states.

    3. Assign a task force made up of experts in a wide variety of fields, ensuring that the group isnt biased towards any corporate or political parties. The general rule should be that the system is as simple as possible, only uses computers if it will actually provide an advantage, is open!

    (obviously any corporate members will point out that its not fair that the system be open. This is one of the most important systems in the country and its vital for democracy that its open to the public to look at, if it isnt there is simply no way you can call the system democratic in anyway)

    4. Given that the new system will be designed by geeks, it will require a fraction of the budget of Diebolds spagetti crap, donate the old Diebold machines to schools.

    If Bush can go to war on a whim he can do this, and if he doesnt do this right now he is a dictator, its simple.
  • by dbk25 ( 565275 ) on Thursday April 08, 2004 @08:56PM (#8810876) Journal
    I live and vote in San Diego. I used the touchscreen devices; my wife used an absentee ballot. After using the Diebold boxes, I thought my wife had found a way to evade their problems. From today's article, it looks like I was wrong.

    When I went to vote in the morning, at about 8:30 AM (well after the polls were scheduled to open), the machines were still non-functional (you've no doubt already heard the details) and the polling workers couldn't say when the help they requested would arrive. They suggested waiting or going to another polling location to submit a provisional ballot. (At this point, feel free to ponder why these were not tested by the vendor beforehand. Isn't that what YOU would have done?)

    Nothing makes democracy feel real to you like being turned away from a voting booth.

    When I returned in the evening, the missing cables were provided, instructions corrected and the devices functional. But not well.

    In California, each voter receives a balllot information booklet before the election. With the old punch-card paper ballots, the booklet and the ballot were laid out in exactly the same way. You could transfer your decisions from booklet to ballot trivially. The touchscreen display, on the other hand, had the same visual look as the booklet, and the screen was laid out in pages, but page layouts did not correspond to the booklet. Candidates were in different locations on the touchscreen and the booklet. Matching up the two were a pain, and it took a very careful attention to detail to avoid error! Considering that the visual cues implied that that they should correspond, and that they did correspond in the old punchcard system, and I'd be very surprised if it didn't contribute to incorrect selections. (It was at least as bad, probably much worse, than the Florida butterfly ballots.)

    Now, if you are replacing an existing system, isn't Rule #1 finding out how the existing system works, so that you know which functionality needs to be replicated?

    The last page of the ballot is a vote summary. (Good idea.) It was multi-column on a virtual page that was one screen wide but much, much longer vertically than the physical screen. This is an atrocious user interface. (Imaging reading a PDF of a three-column, 8-1/2" x 11" page on a normal portrait monitor.) Prior to this summary page, the entire previous program was logical page = physical screen, with a horizontal prev page/next page paradigm. So, a bad user interface that's inconsistent with the rest of the application's UI.

    Is that how you like to design YOUR software?

    Finally, there's the fact that there's no paper record or physical trail of the votes. I can't begin to imagine how this passed Day One of requirements review!

    All in all, it did not feel like the polished, professional effort that I want democracy and the control of our nation to depend on.
  • by Genda ( 560240 ) <marietNO@SPAMgot.net> on Thursday April 08, 2004 @10:15PM (#8811440) Journal
    I would just about kill, to have a job like Diebold. It'd be totally wonderful to have a job, where you could fail over and over and over again, while receiving millions of dollars worth of federal (your tax dollars at work) business. All without the slightest bit of concern that somebody somewhere might ask... "Do you guys actually have any clue what the heck you're doing?"

    So far, all I see is security failures, operational failures, service failures, and a huge progression of operational and technical SNAFUs. I'd prefer not having to stand on my head to vote... (I'd like easy and simple as much as the next person), but if I can't trust the results of the process... then for all intents and purposes, I cease to be participating in a republic. Either we eliminate the faulty process (up to and including the elimination of the offending service provider), or we eliminate the people who won't eliminate the faulty process.

    Genda
  • by adamsc ( 985 ) on Thursday April 08, 2004 @10:47PM (#8811708) Homepage

    It's pretty scary to see how little the local Registrar of Voters cares about having any sort of verifiable voting system. The official FAQ [sdvote.com] even has two entries regarding reliability (how do I know my vote was counted accurately after casting it, what happens if there's a recount) and studiously avoids answering either one - in the first case they simply stop after describing a bunch of irrelevant steps which happen before you cast your vote and in the second they pretend that a generated image file stored on the machine is somehow more valid than the stored vote record on the same machine.

"If it ain't broke, don't fix it." - Bert Lantz

Working...