Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Maybe he should consider learning a language (Score 1) 548

For those who aren't aware, an idiom is a group of words that have a meaning other than their literal interpretation.

And in this case, the idiom is "I couldn't care less." Most of the time it's not literally true, but it conveys the sense that the person using the idiom considers whatever it is being described as being at or near the very bottom of the list of things he cares about. So low on the list that in practical terms, he couldn't care less.

So when someone says the opposite of that ("I could care less"), it's not even a nod to the actual concept - it's just someone making sounds similar to the sounds in the idiom, without actually thinking about the words they're saying. By your thinking, "I wooden flare lens" would also be an idiom because if you mutter it badly enough it also sounds like the real idiom.

Comment Maybe he should consider learning a language (Score 2, Insightful) 548

Like, perhaps, English. So that he could - after all these years as a professional who types out strings of characters that very specific meaning - understand that when he says "could have cared less about my career," he means "could NOT have cared less about my career."

Maybe he's been working all these years in languages that don't incorporate the concept of "not" or " ! " in evaluating two values. Are there any? I couldn't care less. Grown-ups who communicate or code for a living should be able to handle that one correctly.

Comment Re:That's it? (Score 1) 611

While I agree that it's technically possible to prevent ad-blocking, it's not at all practical. With a few very rare exceptions, all the site stands to save by going to such lengths is the trivial cost of the network traffic. DRM isn't going to convert a significant number of ad-blocking casual visitors to paying customers, and the cost of implementing the system, not to mention loss of otherwise paying customers inconvenienced by the DRM, and even free word-of-mouth advertising from non-paying visitors, would be well in excess of any potential benefit.

Moreover, the users who block ads aren't really the ones you want to advertise to anyway. They're certainly not going to click on the ads and are less likely to be favorably influenced. I, for one, tend to keep track of the more obnoxious advertisers just so that I can be sure to avoid their products, so getting through the blocks will tend to hurt a brand more than it helps. Even if there was a foolproof way of ensuring that visitors see your ads, I suspect that over the long term it would only dilute the value of each ad rather than bringing in extra net income.

Going back to the article, they measured the cost of advertising by businesses in the U.K., but did they happen to check how much of that advertising was actually directed at U.K. residents?

Comment Re:Ethernet still the best (Score 1) 260

It still raises the question of exactly what you plan to do data-wise that will require 40Gbit Ethernet. While I admit nobody knows what the future holds, we can make reasonable extrapolations. Word and Excel documents aren't going to magically ballon in size. It's highly unlikely you run a 100TB database on your home server. MP3's and even FLAC audio files aren't magically growing in size, and even some new fangled HD audio format an order of magnitude bigger wouldn't stress GigE. Your Internet connection isn't going to be 40Gbit anytime soon (and even if it was, your ISP is unlikely to provide an upstream link that isn't woefully oversubscribed). Netflix 4K streaming already works fine over typical 20Mbit Internet service. And as I stated in earlier posts, even Blu-ray's, which are the higest definition standard media currently available for sale (with no real successor in sight) peak at 40Mbit/sec with average bitrates well below that.

The only conceivable thing that's even remotely close to logical would be uncompressed 4k video editing. And most people do that off high-speed local storage array or, if you're a big boy, a Fibre Channel array. If you've got the need for a FC array at home...well, my hat's off to you. You're unique.

Comment Re:Ethernet still the best (Score 2) 260

Seriously, unless you plan on having the need to stream uncompressed 4K video to every corner of your house, Cat6A is ridiculous overkill. The average Blu-ray video stream is well under 40Mbit/sec, and that's decent HD for almost anyone. 4K could maybe quadruple that (depends on codec) but you STILL have plenty of bandwidth for something like that in plain Gigabit Ethernet. Hell, you could put perhaps 6-8 4K streams on GigE and still be fine.

And there's really no logic in trying to future-proof your home network for something that's not going to be remotely affordable until maybe 10 years from now (have you priced 10Gbit gear lately???). In that time frame, lots of things can and will change and the likelihood of you still wanting AND being able to use that Cat6A for its original purpose is dubious.

Comment Re:BooksKindleAudiobooks (Score 1) 105

Say what you will about those old paper-and-board book things, at least you knew exactly where you were, and could get some mental image of the progression of the narrative arc.

Seems to me I get the same effect by glancing down to the bottom of my Nook's display and noting the "page ## of ####".

Seriously, if that's your only problem with a Reader....

Comment Re:The Compiler Knows... (Score 1) 102

You're entirely missing the point while getting hung up on 'repeating'.

Why should I have to write something like this:

std::map<std::string, std::map<std::string, foo_t>>::const_iterator ci = some_complex_map.begin()

...when the compiler already knows what the type of 'ci' has to be and in fact will bitch at me if I get it wrong (perhaps it's supposed to be bar_t instead of foo_t)? At that point you're just jumping through hoops to tick some box in the parser's innards.

A lot of the time, as in your example, you don't even care what the type is. You're just looking for a thing in a thing container.

Slashdot Top Deals

I've noticed several design suggestions in your code.

Working...