Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Horribly misleading summary (Score 1) 681

Believing that humans can control or ultimately break any paradigm in this planet's existence is pure nonsense and the ultimate hubris.

Well, we do have the power to nuke the absolute crap out of it, and we're making a whole bunch of species extinct. But I'm guessing those somehow doesn't count?

Comment Re:Audiophile market (Score 1) 418

Good job on the Internet rage, AC. With that level of maturity, it's little wonder you find yourself getting banned.

This thread is about a scam Ethernet cable. If you meant analog audio cabling, you should've said. You don't get to call everyone else stupid for failing to have guessed it.

Comment Re:Seagate (Score 1) 161

the company where I worked was fooled into buying one of these for my computer, when the program I was using required one of the higher-spec devices. That misleading advertising actually did real financial damage

What exactly did they lie about? It sounds like you needed a card with support for new graphics APIs, and it turned out it didn't have that support, correct? Surely that's the fault of the person who placed the order.

Creating a 'GeForce 4' that's actually less capable than a 'GeForce 3' is at worst a bit scummy (at worse.... it's not totally unreasonable to have a low-end GF4 be outperformed by a high-end GF3, imo). I wouldn't go as far as to say it was misleading advertising, unless they really lied on the check-boxes about supported graphics APIs.

Comment Re:Come on... (Score 1) 418

Timing may matter, but it's something I'd rather trust to a sensible logic and a big enough buffer to cover the "rough" times rather than spending a fortune on a cable that can't even sensibly promise this

If the cable actually helped with these unimportant 'rough times' (something that's actually measurable), I'm sure they'd be shouting about it.

Comment Re:Audiophile market (Score 0) 418

Well, a company that charges ten thousand US dollars for a network cable may easily pay very good money to have favorable "reviews"

Assuming people actually shell out thousands for the cables in the first place.

As a non-American I am surprised as you Americans allow criminals freely sell products that are clearly scams like this.

What's sold as 'alternative medicine' is a more worrying instance.

Comment Re:Who's surprised by this? (Score 1) 192

we already have the capability to cross-call from pretty much any language to any other (with varying degrees of difficulty)

It's that 'difficulty' which I'm referring to. Mapping C++ constructs onto Haskell (or vice versa) isn't trivial.

I imagine that the constraints of pure FP would obviate a lot of the incompatibilities, as you would be able to call FP subsystem from anywhere

What about lazy-evaluation vs eager? What about static vs dynamic type systems? It isn't the case that all functions are created equal.

I may be missing something, but concurrency and parallelism seem trivial for immutable items

But real-life C++ code doesn't tend to make extensive use of immutable objects, and for good reasons.

If you strip away all of the hacks that allow you to do things that are not appropriate to the paradigm, integration would be simplified

No. This isn't like Lego. The differences between the languages are considerable. If you want Java or C# to play nice with C++ objects, managed by C++ smart-pointers for reference counting, you have no choice but to reinvent C++ inside Java. (As I understand it this is kinda what 'Managed C++' does.) Likewise if you want Java objects to be accessible from C++, you either have to start pinning objects to block the Java garbage-collector from moving the object, or integrate C++ into the JVM's world.

There's a reason that nice bindings take some effort.

Slashdot Top Deals

All seems condemned in the long run to approximate a state akin to Gaussian noise. -- James Martin

Working...