Re: Sandboxing die.die.die

2012-08-22 Thread Derek Chesterfield
Gatekeeper uses the Quarantine mechanisms. Installer does not set the Quarantine flag, so the installed app does not trigger Gatekeeper. Basically if you have explicitly installed an app, you are expressing that you trust it. Or, expressed along the lines of the intent-driven model... I've ins

Re: Sandboxing die.die.die

2012-08-22 Thread Derek Chesterfield
They can *expect* that you will do the right thing. But they can't be expected to *know* that you really are. On 22 Aug 2012, at 16:52, Alex Zavatone wrote: > > On Aug 22, 2012, at 11:40 AM, Kyle Sluder wrote: > >> On Aug 22, 2012, at 8:29 AM, Jayson Adams wrote: >> >>> >>> Ah, that expla

Re: Constructive Criticism

2009-10-07 Thread Derek Chesterfield
On 6 Oct 2009, at 22:48, Alastair Houghton place.net> wrote: Oh, and since I'm in the dot-syntax-is-evil camp, s/self.year/[self year]/g in Bill's code :-D :-D Just an aside, but does either syntax got optimised by the compiler (GCC or LLVM). Obviously it can't in all cases, but this see

Re: Changes in KVO behavior on SL?

2009-09-02 Thread Derek Chesterfield
On 2 Sep 2009, at 13:47, Kevin Brock wrote: Likewise, there's never been any guarantee that invoking - observeValueForKeyPath:ofObject:change:context: will provoke the receiver to call -valueForKeyPath: on the object whose property has changed. If the observer wants, it can rely totally on

Re: ViewControllers and window nibs

2009-05-08 Thread Derek Chesterfield
On 6 May 2009, at 21:01, jonat...@mugginsoft.com wrote: See the following for hints on binding across nibs. http://homepage.mac.com/mmalc/CocoaExamples/controllers.html I have a *vaguely* similar question: In IB, is it possible to connect an object in one NIB to an outlet in another NIB? Dr

Re: Which language to get started with cocoa development?

2009-01-05 Thread Derek Chesterfield
For an experienced C/C++ programmer, Obj-C is not difficult to learn at all. The main difference from C++ is the method-calling syntax. The rest of what you need to learn for Obj-C development is the Cocoa framework itself, but since that's what you want to learn anyway, you will need to di

Re: Wake up Reason

2008-12-10 Thread Derek Chesterfield
From my system.log: Dec 1 08:20:49 kernel[0]: USB caused wake event (EHCI) I assume different wake events are also logged. On 10 Dec 2008, at 11:11, sheen mac wrote: Is it possible to know the reason the MacBook wake from sleep? ___ Cocoa-dev ma

Re: Opening Ports in Leopard

2008-11-17 Thread Derek Chesterfield
There shouldn't be anything to open. The Leopard application firewall should automatically allow packets that are responding to your query. On 17 Nov 2008, at 12:40, Gerriet M. Denkmann wrote: I am trying to move a Cocoa app from Tiger to Leopard. This program wants to send and receive on po

Re: Why won't Gmail cooperate with authentication delegate methods? (Gmail RSS feeds do.)

2008-08-13 Thread Derek Chesterfield
On Wed, Aug 13, 2008 at 9:05 AM, Sumner Trammell <[EMAIL PROTECTED]> wrote: One can whip up a WebKit/Cocoa app, aim it at a Gmail URL like this: https://www.google.com/accounts/ServiceLoginAuth?continue=http://mail.google.com/gmail&service=mail&Email=YOUR_LOGIN&Passwd=YOUR_PASSWORD&null=Sign+in

Re: Cocoa can be used to execute arbitrary (privileged) code !

2008-06-19 Thread Derek Chesterfield
On 20 Jun 2008, at 05:10, Jerry LeVan wrote: On Jun 19, 2008, at 11:39 PM, Jens Alfke wrote: It might not be a bad idea to proactively disarm this vulnerability on your own machine(s), as I just did: sudo chmod -s System/Library/CoreServices/RemoteManagement/ ARDAgent.app/ARDAgent Tha

Re: WebView does not expose bindings in IB 3

2008-05-07 Thread Derek Chesterfield
2008, at 17:23, John Stiles wrote: This was actually in a WWDC WebKit demo when WebKit was first announced—they set up a web browser on stage with no code, IIRC. Derek Chesterfield wrote: I used to love that I could show off to my mates that I could create a web browser in no time at all, an

Re: WebView does not expose bindings in IB 3

2008-05-07 Thread Derek Chesterfield
I don't think it's a bug. I think Apple just decided they didn't want to expose WebView with all the useful bindings. I used to love that I could show off to my mates that I could create a web browser in no time at all, and with zero lines of code! On 6 May 2008, at 23:19, Adam Radestock wr