Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Why the hate for VB (Score 1) 181

I'm not arguing that VB is good, but that's a pretty trivial example of what makes it bad. Here's a discussion of where DIM came from: http://stackoverflow.com/quest... You used to be able to just say "variablename = value" without a dim statement. That's improved in the current syntax for VB.Net. If you want an example or two of what makes VB bad look at some of the legacy VB6 and classic ASP code hanging around out there. PHP has some (most) of the same problems.

Comment Re:They do what they're paid to do... (Score 3, Interesting) 550

Actually, after my follow-up email pointint out the idiocy of the reply I got, a staffer sent me a *real* email asking if I'd like to call and talk to him about it. Not that it means that they're really listening, but at least they have enough sense to not just ignore it completely. Meh.

Comment Re:They do what they're paid to do... (Score 4, Interesting) 550

Worse...I requested a response, which I just got. It begins:

Thank you for contacting me to voice your opposition to the recently released regulations by the Federal Communications Commission (FCC). Having recently been elected to my second term in Congress, Iâ(TM)m honored to be able to represent the people of Ohioâ(TM)s 14th Congressional District...

Comment Re:They do what they're paid to do... (Score 4, Insightful) 550

...which is why I emailed Rep. Latta (co-sponsor) and Rep Joyce (my rep from Ohio) and let them know that I vote, I elected one of them, and I don't support any action to reverse the FCC's recent reclassification.

I know I don't represent big bags of money, but I do directly represent a ballot. I let both of them know that I am a US Army veteran, a long-time IT professional, and a proponent of net neutrality and classifying internet service under Title II.

Comment Because it's dangerous and breaks redundancy. (Score 1) 1

If you were talking about a spanned volume, I'd understand why you might be frustrated. With RAID, there's a physical relationship between the organization of the blocks of data, and the number and configuration of disks in the set.

If you have 4 disks in a stripe set, then the first 4 blocks of data go to each drive in sequence. The next 4 blocks do the same. Once you're on the billionth block, and you run out of space, you can't just add a new drive into the mix without having to rearrange all but the first 4 blocks.

For RAID levels that include mirroring, doing what you want would be technically possible.

It's certainly possible that someone could write code in the RAID firmware or software to take the mirrored drives out of the array, build a new array using them and 1 of 2 newly-added drives, copy the data from the original stripe set to the new larger one, switch to the new stripe set as the active one, add the second of the 2 newly-added drives to the old stripe set, and rebuild the updated original stripe set via mirroring, but there are more than a few potential disasters waiting to happen in that scenario.

While it might be technically possible to come up with a way to tack a disk on to a RAID 10 array, it would not be safe, and safety is one of the things that the letter R in RAID brings to the table (redundancy). If the process of adding the disks breaks redundancy (which it would have to, while it was happening), then that would be something that most folks would not be looking for as an option.

Slashdot Top Deals

No man is an island if he's on at least one mailing list.

Working...