That statement prove's some of my points, doesn't it? But it's no problem to put up with anything Apple related because it's Apple, right?
Not sure what you're getting at. What am I putting up with?
That statement prove's some of my points, doesn't it? But it's no problem to put up with anything Apple related because it's Apple, right?
Not sure what you're getting at. What am I putting up with?
Many here wouldn't make construction criticism of Apple if their lives depended on it. Maybe you aren't putting up with anything, but the majority here bash anything and everything that isn't Apple or Steve, yet whenever there is an issue of any kind with Apple, they get all defensive and make up a mountain of excuses. That isn't normal.
From where I sit there's as much bashing apple as bashing not-apple.
Much of the bashing is unwarranted on both sides.
On that note: Windows sucks because it doesn't come with grep.
Yep, that makes it totally worthless.
Yep, that makes it totally worthless.
No different than if you game w/ Steam. Also the data, is absolutely no different than Office 365 and Google Docs/Gmail do right now. Everyone already does it.
No, it lags in these areas too - partitioning, package management, command line, performance, stability, interoperability, and security to name a few more reasons that makes it totally worthless.
like ical's ability to launch timed jobs, ...
Add no "less," no "tail," no "ps," poor built-in support for camera RAW formats (recently improved, though), nothing like OS X's global support of pdf, nothing equivalent to OS X's screen-shot capabilities, nothing like "automator," nothing like ical's ability to launch timed jobs, ...
VBScript. JScript.
You missed PowerShell - a modern object-oriented scripting language that shames all of the *NIX shells for capabilities.
http://en.wikipedia.org/wiki/Powershell
Cygwin. SFU. Snipping Tool. Actions. VBScript. JScript. PDF support coming in Windows 8.
It is there, it works - I do real work with it all day along. So is Services for UNIX - a Microsoft product.Cygwin is a kludge
"snipping tool?" I assume that's 3rd party software or something? On a mac copying any window, or any portion of a window, to the clipboard or to a file is easily done by built-in keystroke, and is one of the things I do a zillion times a day.
cmaier said:"VBScript" and "JScript" are awful to us unix guys who live on sed/awk/perl/etc.
It is there, it works - I do real work with it all day along. So is Services for UNIX - a Microsoft product.
Snipping Tool ships with Windows 7. There was always a dedicated Print Screen button before that.
ActivePerl , ActivePython, GnuWin32, PowerShell - lots of choices on Windows.
Frankly speaking none of these need a debate - there is so much software written for Windows you are bound to find something you can use.
It is not reliable and its capabilities are limited.[/B]"
http://helpdeskgeek.com/free-tools-review/windows-task-scheduler-alternative/
Very limited in what it natively supports as far as tasks, and the API is not nearly as easy to use as automator.
"snipping tool?" I assume that's 3rd party software or something? On a mac copying any window, or any portion of a window, to the clipboard or to a file is easily done by built-in keystroke, and is one of the things I do a zillion times a day.
The issue is not whether or not these things exist - the issue is that they are bolt-ons and they work like bolt-ons, and nothing from the greater UNIX world works without modification on them.
That discusses (and uses screen shots) from XP. My pic and the link are for "Task Scheduler 2.0" in Vista/2008 and later.
IOW, Windows is NOT UNIX. And that's not Windows' fault really. Point is that most things from UNIX world can be made to work on Windows - facilities exist to get that done, even if in a not-perfectly-ideal way. More importantly there are ways to achieve similar things using the Windows way - there isn't a widely used UNIX facility without a Windows counterpart - both *NIX based systems and Windows are pretty mature at this point.
That discusses (and uses screen shots) from XP. My pic and the link are for "Task Scheduler 2.0" in Vista/2008 and later.
How long has Windows 7 been out yet Windows XP still dominates Windows business PC's in enterprise?
http://www.itproportal.com/2011/06/...eals-windows-xp-still-dominates-business-pcs/
(Just try searching 10,000 files for lines that start with S or Q, end in . or ;, and contain a number greater than 999 in-between on windows,
Add-Type -Path C:\assemblies\PdfSharp.dll
Function Merge-PDF {
Param($path, $filename)
$output = New-Object PdfSharp.Pdf.PdfDocument
$PdfReader = [PdfSharp.Pdf.IO.PdfReader]
$PdfDocumentOpenMode = [PdfSharp.Pdf.IO.PdfDocumentOpenMode]
foreach($i in (gci $path *.pdf -Recurse)) {
$input = New-Object PdfSharp.Pdf.PdfDocument
$input = $PdfReader::Open($i.fullname, $PdfDocumentOpenMode::Import)
$input.Pages | %{$output.AddPage($_)}
}
$output.Save($filename)
}