Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror

Comment Re:I don't understand (Score 0) 103

The forcing of critical updates on Windows users - who steadfastly delay updates for weeks - is for the betterment of everyone.

Your opinion is acknowledged and rejected. Sorry, but that is not Microsoft's or your decision to make.

Oh and by the way, no, it isn't. It makes everything worse. Less control over your possessions is always worse. There is absolutely no way you're going to be able to shill and spin crippleware and spyware as somehow being acceptable.

A shrewd technical analysis and firm rebuttal there, cheers. I can only assume you're not old enough to remember the days of unpatched windows boxes connected directly to the internet, spewing out thousands of connections per second across entire classes of networks, looking to spawn another copy of slammer/code red/etc. Windows on the desktop is not going away, but thanks to these update policies, the chances of another worm outbreak is pretty slim to none. Pragmatism is not always in the form you wish it would be.

Comment Re:I don't understand (Score 0) 103

Yes, Microsoft is changing for the worse. Never before did Microsoft try to force or sneak OS updates on to people. Never before did they embed spyware and adware into their operating systems. Never before did they make the OS crippleware and forbid the user/owner from controlling their own computers.

Satay Nutella is a scumbag and FAR worse than Ballmer or Gates.

The forcing of critical updates on Windows users - who steadfastly delay updates for weeks - is for the betterment of everyone. Part of the problem of having the broadest reach with a desktop platform is that you have a fair amount of morons to deal with who can't just save their work and let WU do its job. Without this, we'd be dealing with far more malware that we currently have to deal with. Unfortunately idiots clicking "yes, please run this EXE attached to my email" who hammer through UAC prompts (or who have turned it off) ignoring all warnings will always exist.

Comment Re:I don't understand (Score 1) 103

You're right. I quit reading /. over a decade ago because I couldn't get past the narrow-minded (I was one of them at one point) comments about any company trying to do the right thing. Came back here today to see if things had changed. Nope. The guy at the top wants change and it's been happening. Despite what a very small vocal and idiotic minority (on /.) and other websites think.

Amen, brother. All that's left now is the very worst dregs of whatever reasonably intelligent, cautious and open minded community that once belonged here. I only came over to see what sort of response I'd see -- I guess it's just a habit. It's been ten years since I bothered with this place either. This announcement is just good for everyone. There's been a seismic shift within Microsoft. It's fascinating to have lived through the transition. All this time I've continued to run Linux and Windows at home and work for different reasons. Now, I sit here with Windows 10 with WSL (ubuntu 18.04 embedded) on a single device (surface book 2), and can switch seamlessly between platforms with a single IDE (vs code) and write code that targets any platform. Even the Windows console is turning into xterm with the new conpty plumbing (a proper pseudo tty) and x3.64/ecma48 support. What world is this?

Submission + - Windows 10 TH2 (v1511) Console Host Enhancements (nivot.org)

x0n writes: As of Windows 10 TH2 (10.0.1058), the core console subsystem has support for a large amount of ANSI and VT100 escape sequences. This is likely to prepare for full Open SSH server/client integration, which is already underway over on github. It looks like xterm is finally coming to Windows.

OpenSSH was previously announced last year by the very forward looking PowerShell team: https://ancillary-proxy.atarimworker.io?url=https%3A%2F%2Fblogs.msdn.microsoft.c...

Comment Re: OpenSSH on Windows (Score 1) 265

Why the hell would I want to try to manage Windows - with its configuration management based on APIs (WMI, CIM etc.) - with a shell and tools designed to manage Unix, where configuration management is based around text files? SSH is a protocol for remoting a terminal. PowerShell is a terminal (console text mode) application. PowerShell is designed to manage Windows. Bash is a terrible shell for managing Windows. Just because I love my tennis racket doesn't mean I'm going to start using it to play soccer...

Comment Re:Why do I get the funny feeling that (Score 1) 265

I wouldn't go so far as call it a killer feature but SSH support on Windows is a welcoming feature indeed. Hopefully they will also some day throw out their power shell and replace it with BASH, that would be the day!

Why the hell would I want to try to manage Windows, with its configuration management based on APIs (WMI, CIM etc.) with a shell designed to manage Unix where configuration management is based around text files? Just because I love my tennis racket doesn't mean I'm going to start using to play soccer...

Comment Kodu (Score 3, Interesting) 315

Kodu from MSR is excellent.

http://research.microsoft.com/...

"Kodu is a new visual programming language made specifically for creating games. It is designed to be accessible for children and enjoyable for anyone. The programming environment runs on the Xbox, allowing rapid design iteration using only a game controller for input."

Comment Re:No doubt IE is losing share but.. (Score 1) 390

I ditched Firefox for Chrome when Firefox went off a cliff. Chrome is not heading in a good direction. Maybe it's time to give IE 11 a shot.

It's now the fastest browser on Windows:

http://blog.newrelic.com/2014/...

"Mozilla Gecko 11" is actually MSIE 11.0. See the small print under the chart, and also:

http://www.neowin.net/news/ie1...

Comment Re:No doubt IE is losing share but.. (Score 2) 390

It is the best data set to make Microsoft look bad- which is the point here.

And the real irony is that as of IE 11.0, it's actually a pretty solid browser. It's stable, fast, has a decent integrated web tool set and implements everything that is important (WebGL, HTML5, Offline, etc. etc.) Meanwhile, Chrome is slowly turning into a crashy, buggy piece of shit. Sigh.

Comment Re:OO shell is a POS (Score 1) 780

Microsoft may be taking a step forward by dropping the GUI, but they still don't get it.

I've been a Linux user since kernel 1.2.3, and a Windows L-user nearly as long. I assure you my friend, they get it.

What makes Unix so powerful isn't just the shell, it's the concept of pipes. The input and output of each program is text. You type the input at the keyboard, look at the output on the screen, that's what makes Unix so powerful.

Powerful, yes. Let's count all the files in the current directory that are bigger than 20mbs with a simple bash script:

~: find . -printf '%s %p\n'| sort -nr | awk '$1 > 20971520 {++c} END {print c}'

Why? Because that way you can pipe the output of one program to the input of another. By using binary objects each program gets two additional levels of complexity, you need a utility to inspect the objects and another to enter data.

Really? Here's the powershell equivalent of the above bash script:

ps> ls | where length -gt 20mb | measure | select -expand count
25

I'm looking at the output on the screen. I didn't need arcane awk/sed tricks. I didn't need a "utility to inspect the objects" nor "another to enter data." If you really want to defend unix, you should keep your friends close and your enemies closer. You're clearly standing in the middle of nowhere with your head in the sand.

Slashdot Top Deals

Work is the crab grass in the lawn of life. -- Schulz

Working...