Forgot your password?

typodupeerror

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

by x0n (#38698080) Attached to: Windows Admins Need To Prepare For GUI-Less Server

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.

Comment: Re:More FUD (Score 1) 349

by x0n (#35457048) Attached to: Miguel de Icaza On Usability and Openness

This is FUD in and in itself. Tilt bits are signals orthogonal to the normal functioning of video and sound drivers. If you don't implement platform-level DRM, you don't need to care about them. Linux drivers have had stability issues long before the concept of "trusted computing" came out of some ass-hat's tiny brain.

-Oisin

Comment: Re:Just Sony? (Score 1) 254

by x0n (#35179784) Attached to: Sony Gets Geohot's Hardware, But Not YouTube/Twitter User Info

No defending Sony, but I'm putting this out there.

The person who takes the bribe (or campaign contributions) is much more morally bankrupt than the person offering. Joe and Orin could have said no.

The entire American system for funding political parties is based around mutual back scratching. No point jabbing your finger at individuals either. The problem is bigger than that. You need to replace your flag's stars and stripes with a loofah and dollar signs.

Music

Atari Loses Copyright Suit Against RapidShare 198

Posted by Soulskill
from the game-over-play-again? dept.
dotarray writes "Online copyright lawsuits aren't all about music. Video game publisher Atari Europe recently became concerned that copies of its game Alone in the Dark were floating around one-click file-hosting service RapidShare, so it took the hosting company to court. While they won the initial case, the decision was overturned on appeal, finding that RapidShare is doing nothing wrong."

Comment: Re:Could you please post your scores + H/W Specs? (Score 1) 163

by x0n (#34667430) Attached to: A Real World HTML 5 Benchmark

This test is a crock of shit. Everyone is so delighted that IE9 is running last that they don't bother to ensure their objectivity, something this "test" certainly does not have. Either that, or the test authors are morons.

DUH

[meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /]

END DUH.

-Oisin

Peace be to this house, and all that dwell in it.

Working...