Comment: Re:Android (Score 3, Informative) 351
Java has something C# lacks: a good IDE. Java has eclipse.
Wow, where did you get that opinion from? Using a beta version of VS2005? VS2001?. The team I'm in right now is coding Java for Android in NetBeans because Eclipse sucked hard. But coding in C# in Visual Studio 2008/2010 is way better, way more productive. Hell even coding Javascript / HTML in VS2010 is better than this.
Comment: Re:Opinion (Score 1) 611
Comment: Reason to get a 3D printer (Score 5, Interesting) 73
Comment: Re:Red light delay. (Score 1) 348
Years ago I was sitting at light. The light turns green and the driver in front of me starts going oblivious to the car that's sailing down the road and clearly not intending on stopping for the red. So this guy slams right into the guy in front of me.
In Taiwan the lights count down to when they turn green, so as it gets to 3,2,1 you look both ways and can see if anyone is going to run the opposing red light. Apparently this reduced the sort of accident you saw by 30% vs putting in red light cameras that increased rear-end accidents by 20%. So they don't have red light cameras. They do have big yellow and black painted speed cameras, that are sign posted so people can clearly see where they are, but these are just in areas where they really do need people to stick to the speed limit.
Comment: Re:Like the Novell agreement or beneficial to MS? (Score 1) 241
You make it sound like people WANTED Windows 7. They didn't and they don't. Even today, if Windows XP was an option, they would go with that
Ha! good one. This should be awarded Troll of the week! I wish there was an option on slashdot to count troll points as +ve rather than -ve, as I have to browse at -1 to read good stuff like this.
Comment: Re:Java is cool (Score 1) 292
I know the code you pasted was for C#, my comment was directed at your initial opening sentence...
.Net has both query form Linq (what you posted) and method form Linq (what the java version looks like), and the two are interchangeable.
I read your comment in the wrong context. Thanks for clarifying.
Comment: Re:Java is cool (Score 1) 292
Comment: Re:Java is cool (Score 1) 292
var filteredStrings =
from s in myStrings
from p in myPrefixes
where s.StartsWith(p)
select s;
I guess Java really is light years behind. In C# you can multithread this as well:
var filteredStrings =
from s in myStrings.AsParallel()
from p in myPrefixes.AsParallel()
where s.StartsWith(p)
select s;
Comment: Re:Azure (Score 1) 347
Awesome until you code in C++/CLI, which missed out on intellisense this time round, which is a total pain in the arse.
But Eclipse blows for C++ development.