Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror

Comment Re:Could it be Micro$oft ... (Score 3, Informative) 112

Indeed you are correct. See my above reply to 'gronofer'. I mis-understood the original article. I worked on a related but separate system. I apologise for misleading you, even though it was unintentional.

The details of where you voted, when you voted and the type of your vote are attached to your ID. But, WHO you actually voted for remains completely anonymous... So don't fret. :)

My system was used (among other things) to determine if/when/how a given person attempted to vote more than once. The funny thing is a significant proportion of these offenders turn out to be elderly people who simply 'forgot' that they had already voted. Seriously.

Comment Re:Could it be Micro$oft ... (Score 1) 112

First of all, I wrote the previous post at work and, in the chaos of my office I think I misread the original post.

I worked on the software that tracks when and where a person votes.
ie: You walk into a polling station, present your ID and then get given a ballot form. The system records the time, location and TYPE of vote against your ID and synchronises that to a central database in near real-time. It does NOT record WHO you voted for. I'm sorry that I gave that impression. My bad.

I am not familiar with the software used to determine the outcome of votes. But, and this is speculation on my part, I can't imagine that it would be overly complex.

I'm honestly not sure why one wouldn't want to release the code. If nothing else, it might be nice to have a 'reference implementation' for a democratic vote tallying process. I assume a reasonable reason might be that it has not been audited for public consumption. Even a simple audit requires time and money. Both of which are in short supply at the AEC.

Comment Re:Could it be Micro$oft ... (Score 2) 112

The previous poster was me... For some reason it came through anonymously. Sorry about that. But, while I'm at it, I'd like to clarify that there are separate systems at play for 1) tracking votes and 2) tracking vote results. These are separate problems and you do not want the same system doing this. Why? Because there's something uncomfortable about a system that tracks who you are, where you are and how you voted. :)

Comment Re:without decent drivers (Score 5, Insightful) 188

A couple of problems with this statement:
- .Net is not a programming language. Your comparison is just silly.
- In case you meant to refer to C#, no part of this development process is "point-and-click". In this regard, it is no different to C++ (I develop in both).
- It is not interpreted. Nor has it ever been.
- I think you'll find that the simple programs of "a few dozen lines" that you mention would likely be smaller (3 of lines) in C# than C++. But, again, this is a silly comparison and shouldn't be used in any reasonable comparison. If things like this are a problem, you are just using the wrong libraries; in most cases it has little to do with the language directly.

Comment Re:Australian Banks Are Terrible (Score 1) 150

Hmmm... Yeah. That used to be true.
It's a lot better now, though.

My current bank (well, credit union. But they are aesthetically the same to me.) doesn't charge me any* fees on my normal accounts and offers ~5% interest on my online-only savings account**.

Though, I keep my savings and credit accounts with separate institutions because I'm paranoid...

--
*At my usage levels, which are pretty normal-use.
**Transferring between both accounts is free.

Comment Re:Not supprising (Score 3, Insightful) 150

Not just profits of 'Billions of Dollars', but RECORD profits year after year... During a financial crisis no less.

People aren't upset about the banks making a profit (that's what they're there for). They're upset because the banks continue to make huge profits and then hike fee/rates/etc all the while complaining that "It's getting more expensive to operate in this industry".

Boo hoo!

Comment Re:what is the state of ext4? (Score 1) 157

I'm neither agreeing nor disagreeing with you. But it's important to realise that this issue occurs with all other filesystems too, including ext2/3.

If the machine has suddenly lost power, then clearly something 'catastrophic' has occured. This is clearly outside the influence of the developers. Yes, they can insert measures to minimize losses and ext4 already does this -> The journaling will give you an intact older revision of the data.
What else would you suggest be done? I'm not trying to start a flame war. I'm genuinely curious. It's one thing to say that the user is expecting X but if a product is used outside of recommended guidelines, then X can not be guaranteed.

Here's a half-arsed analogy: If I crash my motorcycle because I fell asleep, is that the fault of the manufacturer? Realistically, no.

The answer here is, if your data is soooo important that you can't risk anything going wrong, do the following:
1) Turn caching off. ie: Write directly to the disk. This will kill performance. But at least you can be as sure as possible that the data is written. Alternatively you can manually narrow the cache dump window to something closer to ext3's defaults.
2) Buy a UPS. If the interuption of power is killing your data, just buy an Uninteruptable Power Supply. These things are cheap and, if your data is really that important, you have no excuse not to have one.

Comment Re:what is the state of ext4? (Score 3, Informative) 157

As I understand it, the issue is that the default time between cache dumps to disk is 4 seconds. This is much longer than ext2/3. So, if you yank the power cable during this time, on the next reboot ext4 will have no record of the event ever having occured and will use the previously journaled data instead. If this is actually the case, then I don't really consider this a bug. It's just a larger cacheing window. Someone please correct me if I'm wrong.

Slashdot Top Deals

FORTUNE'S FUN FACTS TO KNOW AND TELL: #44 Zebras are colored with dark stripes on a light background.

Working...