Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Misleading Summary (Score 1) 283

IPv6 is only required for the VPN side. The Internet connection on both sides may still be IPv4 however. Read TFA for more details. I have a feeling Time Warner will be in no rush to upgrade my neighborhood to IPv6 no matter how many companies start using DirectAccess.

Comment Re:Not sure (Score 1) 253

They (Dell) are actually pretty friendly if you buy enough stuff from them as a mid-large business.

However Dell is quite different from the average teleco in that they actually have competition. Going off the example in the link, if Dell decided they didn't want to sell servers with virtualization solutions, I would leave and buy my stuff elsewhere. However, if Time Warner decided they didn't want to allow 3rd party VoIP I wouldn't have much choice but to accept it since I really need broadband and Time Warner is the sole provider in the area.

Comment Re:Cool (Score 1) 376

It certainly has a cost, but I wouldn't go so far as to call it retarded. On top of the cost it also has some very strong real world advantages such as write hole elimination(safer), variable block size (better performance), selective resilvering (faster recovery), in FS snapshots (snapshots are actually usable on a production system, unlike LVM).

Comment Re:Analysis of Miguel's article (Score 1) 747

If Office were written in pure .NET and all of the libraries were available everywhere, then it would run on the platform of your choosing. A Java application would have the same caveats. However Mono's primary goal is NOT portability to .NET applications. It's primary goal is to provide developers a top notch development platform on Linux (using native technologies like dbus, GTK, etc), which it does very well. Oh, and good luck making an office suite using nothing outside the POSIX standard.

Comment Re:No mention of X-platform (Score 1) 598

Have you actually used Qyoto? It's not very pleasant. At all.

Connect(m_ui.messageLineEdit, SIGNAL("textChanged(QString)"), this, SLOT("TextChangedSlot(QString)"));
Connect(m_ui.sendButton, SIGNAL("clicked(bool)"), this, SLOT("SendClickedSlot()"));
Connect(m_ui.actionChangeNickname, SIGNAL("triggered(bool)"), this, SLOT("ChangeNickname()"));
Connect(m_ui.actionAboutQt, SIGNAL("triggered(bool)"), this, SLOT("AboutQt()"));
Connect(qApp, SIGNAL("lastWindowClosed()"), this, SLOT("Exiting()"));

Magic strings galore. It's completely out of place in CLI land.

Comment Re:Why a process? Surely a thread would scale bett (Score 1) 383

That doesn't solve the stability problem. If one of those worker threads does something naughty, the whole process is going down.

Although process creation time on Windows is slow compared to other OSes its more than fast enough for spawning a process per tab. Chrome and IE8 have already proved this in the real world.

Comment Internet (Score 4, Funny) 45

...and trying to find a way to unify the gaming experience across mobile platforms, computers, and consoles.

I got it! We'll build a giant computer network that spans the entire globe. Then we can hook all of these mobile platforms, computers, and consoles up to it so they can communicate seamlessly. In fact, we can hook just about anything up to it. I propose we call this new invention "The Internet."

Slashdot Top Deals

The use of money is all the advantage there is to having money. -- B. Franklin

Working...