Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:Desparate Microsoft pulls a "Sun Microsystems" (Score 1) 525

It's not using Linq. It's using a set of extension methods and lambda expressions. Linq is a whole other DSL ("from x in myVehicles...") that I rarely see used.

Lambda expressions are simply syntactic sugar for anonymous methods.

It's distressing to me that you claim to be a C# developer and can't "wrap your head around" lambdas, which you also confuse with Linq. Hopefully you have an MSDN subscription and can take advantage of some of the new free PluralSight training, because you clearly need it. I wouldn't hire you.

Comment Re:Why so high? (Score 1) 223

You don't pick an account and guess passwords for it, you pick a password and guess accounts for it. That way, you don't risk locking out accounts. Because most people use one of the very common passwords, you have a shockingly high chance of finding an account that works with the (presumably common) password you've chosen.

Comment Re:gtfo (Score 1) 724

If you make it known you are a woman on an entire host of mic'd online-play games, you will almost always be harassed. The girls I know who are into those type of games only play them with the mic muted and using an androgynous user-name. More often, they will just stay away from those games, and stick to games that have a less negative social aspect. Similarly, you can easily get called the entire gamut of racial slurs and have your sexual preferences questioned and insulted. It might be true that most of the worst verbal assaults come from dorky 14 year olds, but that doesn't make it alright and that does very little to soften the pain it causes to be treated that way.

My wife plays mic'd games, makes it known she's female, and the worst "harassment" she's ever had is a World of Warcraft group wiping whenever she says anything over voice chat.

My anecdotal story is worth as much as your unsubstantiated claim, i.e. nothing.

Comment Re:Catching up with Fedora (Score 2) 644

C:\Program Files\7-Zip
$ ./7z

7-Zip [64] 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18

What's so complicated about that? Feel free to use the .exe as well if it makes you feel better:

C:\Program Files\7-Zip
$ ./7z.exe

7-Zip [64] 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18

If 7z.exe is in your path, no need to give it a directory:

D:\
$ 7z

7-Zip [64] 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18

Also, if you're into terseness, you can use the "gci" alias for Get-ChildItem, or the "dir" alias, or the "ls" alias.

Slashdot Top Deals

We are each entitled to our own opinion, but no one is entitled to his own facts. -- Patrick Moynihan

Working...