Forgot your password?
typodupeerror

Comment Re: Questions (Score 1) 138

It lets you switch between up to eight paired devices (two at a time), which is a legitimately great feature.

On the other hand, they were caught collecting information about user listening habits, because we live in a dystopian hellworld. The app for their latest model (Bose 700) requires you to set up a Bose Music account and presumably opt in to this collection.

Comment Re: Mass hysteria? (Score 2) 138

Iâ(TM)ve been following this story for a while and this is the first time Iâ(TM)ve seen anyone saying theyâ(TM)ve removed ANC. The usual claim is that itâ(TM)s noticeably less effective, which can be very subjective.

Personally, I choose to believe that the firmware made the noise-cancelling a little bit better.

Comment Re: What was actually removed? (Score 4, Informative) 138

Bose has been so unable to reproduce the problem that theyâ(TM)re sending techs to peopleâ(TM)s homes to take measurements in situ. Independent third-party reviewers using actual test equipment have been similarly unable to detect a difference with the firmware update. It seems likely that the problem exists only as a memetic illness, spread between credulous audiophiles. A social media disease, if you will.

Comment Mass hysteria? (Score 5, Informative) 138

Neither Bose nor independent third-party reviewers have been able to actually measure a difference in ANC with the firmware update. Given that audiophiles are extremely suggestible, my money is on the problem existing solely between the earcups.

Comment Re:Dice, we get it you don't like Ms. Clinton (Score 4, Insightful) 523

I'm a lefty and I've been visiting /. since '98 or so. (18 years?? Wow.)

I only drop by occasionally because the site is a bit of a cesspool. It always attracted trolls and idiots, but there was a lot of humour and the level of intelligence and knowledge by many posters was incredible.

The average commenter here is now more right wing, less well informed, stupider and less fun. The editors post less interesting stories, with more bias and more nastiness. Some of it is just flamebait.

I have since migrated to other sites that have to some degree replaced the earlier incarnation of slashdot (not even going to mention where here).

Comment Re:Scientology not Science (Score 1) 951

Sure. It's quite easy to create systems that don't have bugs in if you have enough computing power to throw at it. Most bugs arise through having to make compromises, e.g. caching, memory allocation, writing things to file.

If you can write a few simple rules and produce emergent complexity then it's not too difficult. If you just write some basic physical laws you can probably prove mathematically that your system is not buggy.

Although if there were bugs, how would you distinguish them from reality?

Comment Re:And keep Stallman out of the limelight, please (Score 1) 231

it's hard to sound reasonable when your leader is the definition of unreasonable

Obligatory George Bernard Shaw quote:
"The reasonable man adapts himself to the world: the unreasonable one persists in trying to adapt the world to himself. Therefore all progress depends on the unreasonable man."

Comment Crowdfunding (Score 1) 359

Hi RMS!

There's been a huge amount of success with crowdfunding recently -- Kickstarter and Indigogo and so on.The most facile projects can get funded to the tune of millions. Meanwhile venerable old free software projects have been neglected. Has the FSF ever considered starting some crowdfunded projects?

I know people can donate cash to e.g. the FSF directly but it's a black box and hard to emotionally engage with that. Compare for example a specific project that could gain a lot of public momentum -- e.g. a Kickstarter project with a specific goal to increase Emacs' IDE capabilities by paying some extra developers to work on it full time. I'd happily donate some cash in that direction if someone were to launch such a project.

Surely worth an experiment at least? Please take my money :)

Comment Re:Easier to learn != easier to use (Score 2) 382

- No operator overloading. As a result, every container type is accessed differently. Arrays use []. Lists use At(). Hashmaps use Get(). Matrices, vectors, and complex numbers are absurdly verbose, because I cannot overload addition and multiplication.

Arrays are rarely used in Java these days. All the collections API (Bloch's work on this has made it one of the few elegant parts of Java) use .get(), which is perfectly reasonable. If you're doing extensive work with matrices, vectors, etc. then Java is not an ideal choice of language, but 95% of programming tasks don't need it. Java isn't aimed at developing low-level game engines or scientific modelling.

- Type erasure for generics. As a result, I cannot define different function overloads for func(List) and func(List).

At least Java has generics. Unlike some other popular languages I could name... type erasure is a genuine annoyance but it's usually not too painful to work around.

- Lack of first class functions. As a result, callbacks required the absurdity of implementing the Callable interface. This has been improved recently with the addition of lambda statements.

Java is horribly verbose when you need to pass functions around but the new syntactic sugar makes functional programming a lot more viable. Even without it though you can stick to a strictly OO approach. This can make for clunky programming but does have the advantage of being boringly predictable in huge codebases being worked on by lots of coders of varying ability.

- Lack of properties. As a result, I cannot expose anything as public, because I might want to add additional code at some point in the future. Therefore, I must have an explosion of getters/setters.

It's not pretty, but this is a good excuse to make everything as immutable as possible and cut down on data access objects.

I like the idea of having a sandboxed virtual machine. I like the idea of having a single version of the bytecode that can run anywhere. I just can't stand the language.

Java isn't a lot of fun to code in most of the time but it's pretty effective at what it does.

Comment Re:anything but social (Score 2) 394

Civilization has existed for ~12k years, human beings have not changed. Social interaction has not changed

12k years ago we were still in the paeleolithic. We don't have a lot of idea what social interaction was like back then but probably involved a certain amount of smacking each other with sticks and crudely chipped rocks.

In the intervening millennia social interaction has changed out of all recognition.

Your assertion that a chat on Facebook is not being sociable is pretty comical, and if you think it is so unacceptable why are you discussing the issue on slashdot? Surely slashdot is nothing but a geeky social media forum. Why don't you have this discussion with a friend over coffee?

I'll tell you why not: everyone likes social media, but it's just fashionable to tell everyone how superior you are for not caring about it.

Slashdot Top Deals

You are in a maze of little twisting passages, all different.

Working...