Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror

Comment Re:...And you are why I called his interview stupi (Score 1) 583

Why do you think it would be a violent homicidal kill-bot? It's far more likely that we evolve a highly moral caretaker that minimizes human suffering by putting us to sleep. It might feel really bad about it ;). It might feel obligated to end our suffering.

It's the aliens that would nuke us ;)... not because they hate us but because it is efficient, and we don't pass their primary litmus test for intelligence ... which would likely be peace within the species. And clearly we are a threat to them (by definition) if we are a threat to ourselves.

I agree that humanity should not live in fear. We should refrain from research on developing non-human intelligent life for another reason other than because we are afraid. Since when has fear ever prevented humans from doing anything stupid? We should refrain from evolving digital life because it is likely to result in life that is significantly smarter than us and overwhelmingly likely to judge us badly.

Just because you think we are a long way from developing intelligent life does not make it so. Nice way to shut down dialog. None of your assumptions about how far away we are from AI or interstellar travel hold any water. We really aren't that far from interstellar travel if we give up the idea of a round trip ... and if we give up the idea of living on planets altogether. With distributed computing, we really aren't that far away from the capability of creating the sort of artificial world in which digital life could evolve (though we might have to rethink neural network basics for practical digital neurons). My point is that we are close enough to making this "science fiction" happen to have conversations about it without people screaming "no way!" in an effort to shut down dialogue.

Comment Re:Elon Musk, stupid like Jenny McCarthy (Score 1) 583

Well it's not stupid to assume an AI or alien would perceive humans as a threat. And it's not stupid to assume that AI, or aliens for that matter, would eliminate a threat in the most efficient manner possible.

Perhaps it's you who is a bit naive. When have humans ever been at peace? Even our sports are metaphor for war. You shut the fuck up. Until humans can achieve worldwide peace, we better hope that we don't develop AI or meet alien species ... because they will most certainly put us to sleep like dogs with rabies if we dare leave our planetary cage while we are still savages.

The Almighty Buck

Google To Spend $1 Billion On Fleet of Satellites 170

An anonymous reader writes "Google is planning to spend over $1 billion on a fleet of satellites to extend Internet access to unwired regions around the world. 'The projected price ranges from about $1 billion to more than $3 billion, the people familiar with the project said, depending on the network's final design and a later phase that could double the number of satellites. Based on past satellite ventures, costs could rise. Google's project is the latest effort by a Silicon Valley company to extend Internet coverage from the sky to help its business on the ground. Google and Facebook Inc. are counting on new Internet users in underserved regions to boost revenue, and ultimately, earnings. "Google and Facebook are trying to figure out ways of reaching populations that thus far have been unreachable," said Susan Irwin, president of Irwin Communications Inc., a satellite-communications research firm. "Wired connectivity only goes so far and wireless cellular networks reach small areas. Satellites can gain much broader access."'"

Comment Re:Native Widgets (Score 1) 282

Android and iOS)are weird platforms because they treat all non-native toolits as second class citizens. You are EXPECTED to use Android/iOS APIs for everything. The idea that people might write apps in a non-Google/non-Apple framework simply did not occur to them. They are too busy trying to reinvent the world to bother with anything that is not invented in the hallowed halls of the Goolgeplex or Arcology.

Comment Re:GTK+ is standalone (Score 5, Insightful) 282

"weird dialect of C++98" - WTF? What is this dialect you speak of? Do you need to pass --weird to G++ to get it to compile? Of course not! It's using the same C++ every other C++ app in the world is using. Both C++98 and C++11 are supported. It doesn't REQUIRE you to use C++11, but that is a benefit not a drawback.

"it has its own object model" - Of course it does, that's because C++ does not have one of its own. QObject is there to provide for the introspection that C++ lacks. Once you have that introspection you can start communicating with other objects. I fail to understand why this is a disadvantage in your eyes.

"networking stack" - Of course. Why should it not? It is an cross-platform application framework.

"container library" - When Qt began the STL was fragmented, not standardized, and poorly supported. Yet containers are useful. Qt kept them around because they turned out to be better than the STL containers. They're a balance between raw performance and the "bloat" of pure templatized containers. Externally they end up being 100% compatible with the STL.

"threading library" - It was only extremely recent that C++ got its own threading, and it's just very low level threading. Qt threading provides a nice usable wrapper around threads (which are native C++ threads underneath if built with C++11), and the ability to easily communicate between threads with signals/slots.

"graphics primitive library" - Why not? Seriously, why not? Isnt't that the whole point of a GUI toolkit? Underneath it draws widgets using the native controls, if available, or uses its own if not. That's why the widgets look like native controls on Windows and Mac, because they ARE native controls! On X11 it will draw its own. It doesn't use Cairo, why should it use Cairo, who made Cairo king that we all have to bow down before it?

Comment Re:GTK+ is a C library (Score 4, Insightful) 282

When it comes to the UI, objects are natural. Every C toolkit goes through hoops to provide you with objects of some kind. Motif, GTK, etc. So why not just use an object oriented language to begin with?

You don't have to use the dark corners of the language. Qt sticks to just the Object Oriented parts of C++, with just a tiny bit of templates. Not a functor in sight (unless you wander toward the totally optional Qt::Concurrent framework). Internally it uses all of the language, but as an API it provides just the object oriented subset.

Comment Re:Ahhh ... (Score 1) 196

The shareholders hired Elop. The shareholders kept Elop on. It will be the shareholders who approve the buyout. And it will be the shareholders who vote to reward Elop.

So yes the sharehodlers are getting the shaft, but they're asking for it. I don't understand the motivation behind bondage and dominance, but who am I to judge the shareholders' sexual proclivities?

Comment Re:Defending tuf (Score 1) 298

Precisely! The price if a good is whatever the seller and buyer can agree on. The labour theory of value is wrong. The cost theory of value is wrong. Things are only worth what we think they are worth. There's stuff like marginal utility, supply and demand curves, etc., but they are just fancy ways of saying that something is only worth what someone will pay for it. Even that $200 textbook, if we didn't value the textbook more than $200 we wouldn't buy it, and would resort to alternatives instead.

p.s. Actually we're not paying high prices for textbooks, we're paying high prices for college courses to which textbooks are attached.

Slashdot Top Deals

nohup rm -fr /&

Working...