NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Strongly, strongly disagree (Score:1)
You're way off base on this one.
I've been using Mac for Perl dev for about 6-7 years (whenever OS X 10.1 came out) and consider it first class. The Mac:: packages are largely irrelevant -- Carbon is a legacy API from the 90s, about as relevant today as a Win95-specific API would be I suppose. If you used a Win95:: library, you'd get similar complaints from users of a modern Windows OS.
The "flood" of Win32:: packages is because you need those platform-specific hacks to get anything done on Windows Perl. N
Re: (Score:1)
I see this most because of File::HomeDir.
So tell me this, without using any Mac:: modules, where is your documents directory?
Re: (Score:1)
~/Documents
Re: (Score:1)
Let me rephrase, where is everybody's documents directory?
Re:Strongly, strongly disagree (Score:1)
In Cocoa, the correct answer according to Stack Overflow is:
NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
Reply to This
Parent
Re: (Score:1)
No, not NSLibraryDirectory. It's NSDocumentDirectory. From XCode docs: