Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Submission + - Ask slashdot: What's the best wireless headset for around $50-$75

Keybounce writes: What are good wireless headsets for around $50-$75?

This may seem strange, but the truth is, trying to find good descriptions of headphones is hard enough, let alone actual product reviews. The one that I found, that looked promising, turned out to only be stereo over a wire, and was mono over bluetooth.

Requirements:
1. Stereo audio playback.
2. Microphone (can be mono)
3. Wireless.

Desired: Sits on top of ear (so I can still hear the world around me)
Slightly negative: Envelopes ear.
Absolutely not: inserts inside ear.

Comment Re:Battery capacity (Score 1) 56

Their phone only has 1GB of memory and that works pretty well, so I think 2GB on tablet should be ok?

Anyway, with the price given this is in the cheap tablet category and not competing with the over twice more expensive iPads. I ordered it just because the phone has had regular software updates unlike the Samsung (tablet) and Nokia (phones) devices I have previously had.

Comment Re:3 to 5 Years (Score 1) 187

That really depends on what killed your father and grandfather. One of my grandfathers died pretty young because of an infection is his appendix. My father had his appendix removed a couple of years ago in an emergency operation after it got infected. Looks like I need to keep this is mind.

But now that doctors know what to do about this, it doesn't mean that my father gets to live "a little longer" - there is no way to know what the next problem is or whether it comes before he's 80.

Submission + - SpaceShipTwo cost a life, so why do we still use human test pilots? (suasnews.com)

garymortimer writes: Virgin Galactic has sold several hundred tickets for future flights to the edge of the atmosphere and there are proposals that SpaceShipTwo will be used to send research experiments briefly into space – all worthy endeavours.

But when we have advanced RPAs, why are we still testing new rocket motor and fuel combinations, with human pilots strapped just metres away from them flying at 45,000ft?

Combining spaceplanes with remote control and automation is not new.

Just a few weeks ago, a US Air Force robotic spaceplane came back to Earth after nearly two years in orbit. Its flight was either totally automatic or partially remote controlled; but we have no idea which, as it was a top-secret program.

In 1988, the former Soviet Union’s space program successfully flew their robotic space shuttle Buran, which performed two orbits of the Earth and landed back on a runway, just like the human piloted NASA space shuttles.

The reasons we still sometimes use human test pilots are complex. The SpaceShipTwo vehicle was inspired from SpaceShipOne. That vehicle won the US$10 million Ansari X-Prize in 2004 when Mojave Aerospace Ventures showed that it was possible to launch a non-government developed or funded spaccraft into space with a pilot onboard, twice within two weeks.

SpaceShipTwo’s core business will be to take passengers into sub-orbital space, so of course having human pilots onboard makes sense as eventually there will be human passengers. Would you be prepared to board a commercial jet now if you knew their were no human pilots onboard? Knowing that the pilot’s own safety is twinned with that of the passengers means we feel safer with experts at the helm.

But the SpaceShipTwo disaster was not a commercial flight – it was the first flight-test of a particular engine and fuel combination. Could the engine and fuel have been tested in a rocket first? Could SpaceShipTwo have been designed with an autopilot capability?

Submission + - EU Sets Goal To Cut Greenhouse Gas Emissions 40% by 2030 (reuters.com)

An anonymous reader writes: The 28 nations in the European Union agreed Friday to reduce greenhouse gas emissions 40% (going by 1990 levels) by the year 2030. The deal received widespread criticism; industry bosses said the 2030 targets were too extreme, while many environmental groups said the goals weren't ambitious enough. The deal requires each nation to achieve the goal independently — earlier targets could use international offsets to avoid or reduce action. EU officials hope the deal will encourage the U.S. and China to take a more aggressive stance on fighting climate change.

Submission + - Billionaire Agarwal Gets Inspired By Gates' Philantrophy (bloomberg.com)

jones_supa writes: Anil Agarwal, the billionaire founder of Vedanta Resources Plc, said he and his family decided to donate 75 percent of their wealth to charity after meeting Bill Gates. Agarwal said Gates and his wife, Melinda, discussed their philanthropic causes with him in Seattle last summer. "What we earn must be returned for the greater good of society," the 62-year-old said at an event yesterday to celebrate the 10th anniversary of Vedanta's (VED) listing on the London Stock Exchange. "Life is not only about wealth." Agarwal has a fortune of $3.3 billion that includes an almost 70 percent stake in his company.

Comment Re:Failure tolerance is a mortal sin (Score 2) 101

On the Play webserver the user "session" is a signed cookie. So if you have very little data, you can store it there and you always have it regardless of the server rendering the response. If you need more user specific data you can store keys in the cookie and get the session from a backend mongodb or memcached or akka cluster or something else that scales easier then an RDBMS. With the Plays ability to easily fetch data concurrently from multiple backend systems, this is actually a good way to go. Or you can just have all the user specific stuff fetched with ajax from some other servers to distribute the load.

Comment Re:Failure tolerance is a mortal sin (Score 4, Interesting) 101

I don't think it means what you think it means. Obviously the manifesto is so short on details that it can be interpreted in many ways. I think the failure tolerance is more about e.g. tolerance of losing machines or tolerance of overloading - and that seems to be working.

I have previous experience about J2EE/JEE application servers and they always seemed to have the problem that when overloaded with traffic they might do anything. And after being severely overloaded they often do not recover back to normal. Also people often did not use J2EE session replication, because it was considered a pain.

Now I'm building an app with Scala/Play framework and we don't have user sesssions or the web servers so scaling and server failures are not a problem. Also we just ran some performance / load tests and the servers work fine up to 100% load and then just start to lose some requests. This is much preferrable to the "all bets are off" that I have seen on Tomcat or other servlet containers. Another reactive benefit from the Play server is that it is super easy to use many threads for building a single http reply and this really helps in giving users timely replys.

So while the manifesto is of course marketing, there are some good things in the new ways of doing things.

Comment Re:and yahoo is not done paying yet (Score 2) 223

I work on business software projects in Finland. We'd like to use AWS on many of our projects, because it's very convenient and a lot of PaaS and other tools are provided on there. However, I have not met a single client that would allow us to use AWS or some other US based service for storing data. So we use the local clouds that only offer IaaS servers and not much else.

And this has changed a lot in just a couple of years.

Comment Re:I see a train wreck ahead! (Score 1) 94

In other words, don't bother with Scala just yet since we haven't made up our minds about the syntax and will probably start all over.

One of the links actually lists the changes they are thinking of. To me they all make sense and they won't change the language too much while making the life of the compiler easier - and the result more predictable to humans.

Let me know when you get that binary compatibility between versions of Scala figured out.

Just a few months ago I saw a project at work that could not migrate to Java 8 because some of the libraries in the project do not work with Java 8 libs. The problem is that the lib in question wants to do bytecode enhancement and fails with the new lib format. Scala is more complex, no question about it, but I don't need aspects or bytecode enhancement or reflection and all that reduces complexity quite nicely.

Comment Re:Simple is good (Score 3, Interesting) 94

I've been using scala for two years now and I think there is a simple trick to avoiding the problems you mention:

1. Many of the language features are best left to library designers so that application code is easy to understand. This is not a problem unless you make it one.
2. Carefully choose what libraries to use. Specifically avoid using all the esoteric stuff in github. Especially if the library is very "functional" and has lots of "operators". Just don't use them. Using Play and Akka and the stuff that typesafe uses I haven't really had too much trouble with migrations or code that is impossible to understand.

And, coming from 10 years of Java, I am loving Scala development. :-)

Slashdot Top Deals

"When it comes to humility, I'm the greatest." -- Bullwinkle Moose

Working...