Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:It is opt-out in OSX. (Score 4, Interesting) 313

Considering that the Feds probably get a copy of everything they gather in the first place, I can hardly see them fining Apple for doing their work for them! The very idea of Apple turning all this data over to the Feds for "disposal" is utterly ludicrous. There may still yet be some areas of the US government that work for the people, but the DOJ and Intelligence agencies are clearly serving one interest: their own.

Comment Re: So no company is going to install it? (Score 1) 367

Does Windows 10 preview incorporate some manner of AI algorithm for making such determinations?

I could get in big trouble for this, they made me sign an NDA but here's the pseudo-code:

function gatherTextData(field) {
        if (field.type == "password") {
                return ""
        }
        else {
                return field.value
        }
}

I think they've got a patent pending, it's pretty complicated stuff.

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

No, I don't understand it. And I don't really feel as though I want to, since I'm only working in a Windows environment because I'm too lazy to switch back and forth between a Linux one for work and Windows for games. I do web development, and it will be a cold day in hell before I touch any part of the MS web stack, so I spend most of my time remoted into one Linux box or another. Cygwin fills in the gaps. .Net? Hmmph, more like .Meh

Comment Re:Catching up with Fedora (Score 4, Interesting) 644

Terseness??

PS C:\> Get-ChildItem

[INSERT LONG ASS LIST OF FILES HERE IN SIMILAR FORMAT TO ls -l THAT SLASHDOT REFUSES TO LET ME POST]

PS C:\> Set-Location dev
PS C:\dev> Get-Content _vimrc .....


How one might obtain a directory listing in a concise format is beyond me.
Sure, those stupid commands are aliased to ls and cd, but the "real" versions are indicative of how all the commands are named. Names only a Java dev could love. Invoke-some-random-command-with-a-very-long-name-for-no-reason. LOL.

My personal favorite, however, is command invocation:

PS C:\> 7z.exe
Bad numeric constant: 7. (What??)

PS C:\> '7z.exe'
7z.exe (Uh...)

PS C:\> & '.\7z.exe' (WTF?)

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

Every command drags you further and further down into the soul crushing hell that is COM, or whatever the current framework du jour is this year. I suppose it must be useful for something, but I think I'll stick with GnuWin32 and the powershell's idiot cousin, cmd.exe when I absolutely must work on a windows box.

Terseness. Hah. I'm sure the poor sons of bitches stuck administering a bunch of crufty Windows boxes get some millage out of it, but I'll be damned if I'd use it for day to day CLI work.

Comment Re:if so, U.S. is stupid (Score 2) 200

The US spends six times as much in order to keep the NASA boondoggle afloat. I'm for space exploration as much as the next guy, but lets not pretend that the modern US space program is kept around for any reason other than it's a massive jobs program for the defense/aerospace industries.

That they do some good science despite the cynical, money grubbing bullshit is a miracle.

Comment Re:Answers (Score 1) 174

My understanding is it's C++, so a complete rewrite from the PC version. There's no way in hell it's Java, and I doubt they'd bother with XNA/C# if they had access to the real developer environment.

Comment Re:That's Messed Up (Score 1) 183

Some commas might make it a little better...

"The Interecept reports that contrary to lurid claims made by U.S. officials, a new independent analysis of Edward Snowden's revelations on NSA surveillance that examined the frequency of releases and updates of encryption software by jihadi groups, has found no correlation, in either measure, to Snowden's leaks about the NSA's surveillance techniques."

It is one hell of a long sentence though, definitely longer than the modern reader is used to.

Comment Re:Make the server version look like a server. (Score 5, Interesting) 545

Ctrl-C in any alert type box copies the content to the clipboard. Well, it copies much more than that, which is weird, but it does copy the important bits. Can't find an example right now, but the format is hideous. You've got to paste it in a text editor first, but it's better than nothing.

My personal most hated feature of windows is that god awful "Choose a Folder" dialog that gives you a shitty, small tree list that you can't resize to stumble through your file system with. It's one of the absolute worst dialogs in computing history, and we've been stuck using it since at least Windows 95. The worst part is that it's possible to use the regular Open dialog for directories, but lazy ass devs use the simplest (for them) method of calling that fucking mess of shit.

Slashdot Top Deals

"Here's something to think about: How come you never see a headline like `Psychic Wins Lottery.'" -- Comedian Jay Leno

Working...