Florida Electronic Voting Machines Crash 59
crash24601 writes "For a dose of one of our favorite topics, abcnews.com is carrying the story of a tabulation machine for electronic voting crashing during testing. Naturally, this happened in Florida. They are also carrying the article Is E-Voting Fundamentally Flawed? Though mostly a lightweight rehash of issues brought up before, it is good to see it published from a mainstream source."
Called on account of rain... (Score:5, Funny)
So, this election may be postponed on account of rain?
Re:Called on account of rain... (Score:1)
The article is only meant to prepare everybody for the fuck ups that are going to take place during the election!!!!!
Stealing the elections is just another way to interpret the concept of democracy. For more information: Florida.
Re:Called on account of rain... What's in a name? (Score:1)
Well... (Score:4, Interesting)
Isn't that enough?
"He said an election could perhaps be held in "three-quarters or four-fifths of the country. But in some places you couldn't because the violence was too great"."
Re:Well... (Score:2)
Well... (Score:5, Funny)
Re:Well... (Score:2)
its funny (Score:4, Insightful)
that Americans think that by pressing a button on a machine (that they have no idea of how it works) is democracy, digital makes the potential for corruption so easy its just too tempting an opportunity to let go
paper voting is still used all over the world because it is the EASIEST and SAFEST
sure it might take a week to count the votes by hand but are you in a rush ?
its far harder to lose 2 tons of paper ballots than press a secret key combo on a computer and poof all those votes have gone without trace or record
but hey you carry on, its a great show watching what was a free and democratic society turn into a totalitarian corrupt theocracy, perhaps when the riots start you might ask where you went wrong
Re:its funny (Score:2)
Re:its funny (Score:4, Insightful)
Paper scales great since the invention of the optical scanner. Nobody's objecting to the use of electronic assistance in the voting process, we just think that the record of votes needs to be relatively tamperproof paper rather than invisibly alterable RAM.
Take any existing e-voting system, have it print out a paper ballot with the voter's selections, and let those ballots be the final judge of what the vote tally is, and you'll satisfy 90% of people's complaints. Make sure every precinct has enough extra voting machines, printers, paper and ink to handle breakdowns, and you'll satisfy another 9% of the complainers.
Re:its funny (Score:4, Insightful)
Paper scales just fine, but the US is just too caught up in the idea that electronic voting will magically fix all of the issues we had in 2000. It won't it will simply change them. Besides which, I tend to think that a punch card ballot is a good intellegence test for voting, if you're too stupid to figure out how to punch a card correctly, and you are too lazy to learn, I don't want you to be deciding the direction of this country's leadership.
Re:its funny (Score:3, Interesting)
Re:its funny (Score:3, Interesting)
Noone has even considered using electronic voting here for the general elections. It just seems so... wrong.
Re:its funny (Score:2)
My sample ballot for the upcoming election has (I think) about 43 different things to vote on.
Re:its funny (Score:1)
Re:its funny (Score:2)
Obviously you've never seen a professional document shredding truck. They're all the rage here in the States as of late. Which may just be another point in your favor....
Re:its funny (Score:1)
Hurricane? (Score:4, Insightful)
Not to be insensitive to natural disasters, but:
Why do I get the feeling that everything that's gone wrong in the state of Florida for the last two months was ultimately caused by bad weather?
A computer "stored" in a hot room shouldn't be damaged. These must really be delicate devices.
Re:Hurricane? (Score:2)
The voting machine didn't crash! (Score:5, Informative)
Re:The voting machine didn't crash! (Score:2)
This scares me.
Re:The voting machine didn't crash! (Score:2)
How hard is it? (Score:4, Insightful)
What kind of monster math could these things be doing that could cause a machine to crash?
Could bush.voteCount++ have caused an overflow as the the algorithm ratcheted the count over 4 billion?
I mean, c'mon. This has to be the simplest programming task in the world: increment a variable every time someone votes for a given candidate on a ballot. The only part of this that seems remotely hard would be the handwriting recognition on write-ins.
Security and verifiability? No problem. Simply log every transaction as it happens and print a receipt that can be checked by hand if necessary. Additionally, make the source open and public. Let people see what the program does.
Frankly, I believe this is what you get from companies like Diebold or other large vendors doing this. They have an interest in making this stuff more complicated than it needs to be in order to make more money.
Vote Parent Up (Score:2)
My bigger question, though, is how the crap can someone who makes these decisions actually decide to go with a vendor that makes this process so complicated? You don't hire a forklift operator to pick up the paper on your desk... I mean, does the term 'overkill' still exist?
Re:How hard is it? (Score:3, Funny)
See below:
if (vote == kerry) bush++
else if (vote == bush) bush++
else if (voter == dead) bush++
Re:Theresa LePore (Score:1, Offtopic)
Coincidence is not causality.
Open Source it! (Score:5, Insightful)
<wild-accusations>Electronic voting will *NEVER* work right as long as it is being done by companies like Diebold that are on one party or another's secret payroll.</wild-accusations>
An open source solution would accomplish a few things:
1) Provide a verifiably secure solution to electronic voting that would be resistant to tampering. I don't think I am exaggerating when I say the possibility of tampering with elections could degrade freedom in this country.
2) Give Open Source's strengths the kind of publicity that reaches far beyond the current Microsoft/Linux squabbles. The majority of the public and news media has no idea what Open Source is about; But if Bill O'Reilly, John Stewart, GW Bush, and John Kerry are talking about it you can bet that tremendous numbers of people will be introduced to the ideas.
3) Give some impressive visibility to the developers on the project. Visibility usually leads to marketability, jobs, projects, etc.
Of course, visibility won't be great when the Diebold hitmen show up...
Australia has some well made electronic voting running on Linux which can serve as a proof-of-concept for us Americans.
So who's game?!
Re:Open Source it! (Score:2)
Project to provide open source voting to California [open-vote.org]
Australian elections done right with open source voting software [softimp.com.au]
The solution can't really be open source (Score:3, Interesting)
It's too bad that's impossible. Your customers can trust open source software, because they can compile and install the software themselves. Voters can't do that, so the best a company can do is publish some source code and make promises that the exact same program will be the only thing running on the voting machines. Since such promises are difficult to verify (see the Diebold machines that got u
Re:The solution can't really be open source (Score:2)
I'm not so sure it's impossible. It seems like you could use some public-key approach to verifying that the software you are voting on matches the official build.
I'm a little fuzzy on the ins-and-outs of public key crypto, but it seems like there should be some way of verifying that the softwa
Re:The solution can't really be open source (Score:2)
I'm a little fuzzy on the ins-and-outs of public key crypto, but it seems like there should be some way of verifying that the software is signed by a key, and that the key matches the offical key.
You can use a digital signature system to verify that the voting machine software has access to the official build, but not that the voting machine sof
Re:The solution can't really be open source (Score:2)
I think what the parent poster is arguing is that some nefarious party could install an election box running their own software, perhaps incorporating parts of the open source software, that appears identical in every visible way to the true open source software, including any checksums and verifications forged from the true open source softw
Is E-Voting Fundamentally Flawed? (Score:3, Insightful)
The researchers also questioned the use of C++ for the original code, calling it an "unsafe language." Microsoft Windows is largely written in C++, and most UNIX systems are written in a combo of C and C++. It's not impossible to write good code in C++, but it's much harder than using modern code. "Modern code has features to help prevent you from making the most common mistakes," contended Wallach.
Modern code does what? Write the E-voting machines in assembly and make them run on the simplest RISC processor out there. Unless you plan on using the voting machines as public solitaire terminals during the off season there's no reason any complex OS or programming language should be involved in voting. The voting booth devices just need to add. The tabulation machine... adds some more. If you want pretty graphics make the system about as big and scary as an Amiga and leave it be.
And now time for... (Score:3, Informative)
St. Arbirix wrote:
If Diebold can't even keep their money machines running how can I trust their voting machines? Man, you've got to be able to keep your "stack" (or "grip" if you prefer) in chec
Nobody wants these machines. (Score:2)
Regardless of who "wins" (think about it, why is it even reasonable that I can put that word in quotes?) the election, with the roll out of these machines, it's the people who lose.
Elections ridiculous (Score:2)
It's ridiculous how unprofessional those elections are handled.
Once I thought the US were a mature democracy. That belief is gone now. I don't want to imagine the world in 10 years.
*shakes head*
YASAD (Score:1)
We thought if we threw tons of money at technology, it would solve the previous voting fiascos. At this point, another one seems imminent.
Thankfully (Score:2)
There have been reports in several places of campaigners trying to register as many people as possible to vote, then tearing up and throwing away the non-republican registrations at the end of the day.
Google news on "voter registration trash" [google.com]
Add to that, smaller, mostly republican states have up to 3 times the representation per population in the electoral college as larger, mostly democrat states. And greater per
Re:Thankfully (Score:3, Informative)
It may seem funny but it happens. Where I go to school there was a voter registration desk for one night. That night they took a measley 74 registrations out of say 1000 students.
I only wanted to change my address as I've moved into city limits and wanted to vote in the city council race (for once). Low and
Re:Thankfully (Score:2)
Re:Thankfully (Score:2)
Wrong problem? (Score:2, Insightful)
Suppose we were to place the burden of proof on the election supervisor to prove that the votes are counted honestly and accurately. If the election supervisor fails to prove this (in court, with adversaries, experts and a jury) then the election supervisor is executed for treason.
Re:Wrong problem? (Score:1)
Re:Wrong problem? (Score:2)
To the extent that Florida's 2000 Presidential election has spurred the implementation of electronic voting machines, the real problem is not whether vothes are cast freely, or reall whether or not votes are cast accurately. The real problem is that the margin of victory in Flordia was so small that the election was essentially a tie.
No matter what voting system is us
Mainstream (Score:1)
Obligatory Joke (Score:3, Funny)
Q: What will happen in the Presidential Election if another hurricane strikes Florida sometime around November 2?
A: Nothing; the Supreme Court is in Washington, D.C.
Was it BSOD? (Score:1)
Best voting ever - mark-sense ballots (Score:1)
Correctly marked ballots can be counted very quickly, leading to very fast early returns. Incorrectly-marked ballots can be returned to the voter for correction. If a voter insists he's correct, he can put the ballot in a "count by hand" box and be done with it.
It's also cheap. You only need 1 machine at each polling location. If you want, you can even do centralized counting, but you lose the "bad ballot, try
You should never go into a booth that is paperless (Score:2)
And yes, the "subject" is my answer to all this e-voting crap.
This is Sequoia crashing - again! (Score:2)
I don't know if the central "server" hardware is provided by Sequoia or not, but the central Windows vote-tally application that runs on it sure as hell does. In the eyewitness reports I've read from Riverside, it was the app that crashed four times but Windows itself didn't blow up...so the county claimed it "didn't crash".
Horsecrap.