Re: WWDC 2016 direct download

2016-06-26 Thread Roland King
If you can’t run the WWDC app then go to developer.apple.com, find the videos section, find the WWDC videos section, find the one you want and on the Resources tab are links to the hi and sd def videos. > On 27 Jun 2016, at 14:47, tridiak wrote: > > Where do you download the 2016 WWDC video

Re: WWDC 2016 direct download

2016-06-26 Thread Quincey Morris
On Jun 26, 2016, at 23:47 , tridiak wrote: > > Where do you download the 2016 WWDC videos directly? Can you run the WWDC app on your iPod Touch? If so, you can download them from within the app. (Er, sry if it’s weird that I can’t remember what functionality iPods have any more. It’s actually

WWDC 2016 direct download

2016-06-26 Thread tridiak
Where do you download the 2016 WWDC videos directly? Or is that not possible (why)? I want to watch them on my iPod touch while on work breaks. TIA ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator co

Re: Security with Streams

2016-06-26 Thread Gerriet M. Denkmann
> On 27 Jun 2016, at 12:57, Jens Alfke wrote: > >> On Jun 26, 2016, at 8:13 PM, Gerriet M. Denkmann >> wrote: >> >> Assume that an evil entity has got hold of “MyServerCertificate.cer”, but >> has no access to my keychain and thus to the private key of >> MyServerCertificate. >> Could they

Re: Security with Streams

2016-06-26 Thread Jens Alfke
> On Jun 26, 2016, at 8:13 PM, Gerriet M. Denkmann wrote: > > Assume that an evil entity has got hold of “MyServerCertificate.cer”, but has > no access to my keychain and thus to the private key of MyServerCertificate. > Could they use this certificate to open a secure stream to a client? Or d

Re: Security with Streams

2016-06-26 Thread Keary Suska
> On Jun 26, 2016, at 9:13 PM, Gerriet M. Denkmann wrote: > >> >> >> Self-signed certificates can only offer encryption, but cannot offer trust >> because they are not verifiable. You can’t use the server certificate as a >> key since you pass that key out to anyone who wants it (in your app

Re: Security with Streams

2016-06-26 Thread Gerriet M. Denkmann
> On 26 Jun 2016, at 21:59, Keary Suska wrote: > > >> On Jun 25, 2016, at 8:44 PM, Gerriet M. Denkmann >> wrote: >> >> Following TN2326 I created a (self signed) Certificate Authority and a >> Digital Identity called "MyServerId". >> > > >>> We are now falling into the rabbit hole that i

Re: Security with Streams

2016-06-26 Thread Gerriet M. Denkmann
> On 27 Jun 2016, at 06:11, Jens Alfke wrote: > >> On Jun 25, 2016, at 7:44 PM, Gerriet M. Denkmann >> wrote: > >> Absolutely not sure whether the code above is correct, but it seems to be >> working. > It’s fine; the certificate is public and intended to be shared. It’s the > private key

Re: How do I get data out of NSRuleEditor?

2016-06-26 Thread Jerry Krinock
> On 2016 Jun 26, at 12:29, Jim Thomason wrote: > > I've been desperately trying to use NSRuleEditor for a while now, since it > presents exactly the type of interface I want to show to the users. NSRuleEditor and NSPredicateEditor give you a quite a boatload, but as you’ve discovered they are

Re: Security with Streams

2016-06-26 Thread Jens Alfke
> On Jun 25, 2016, at 7:44 PM, Gerriet M. Denkmann wrote: > > Following TN2326 I created a (self signed) Certificate Authority and a > Digital Identity called "MyServerId". You probably used the Keychain Access app for this? That works fine, but you’ll probably want every instance of the serv

Re: exposing only what you want - headers and Swift?

2016-06-26 Thread Thomas Wetmore
Jim, When you ship a Swift framework it does not contain source code. But if you want to give someone else the ability to build the framework (say because you don’t support a specific compiler version or specific ABI, or so unneeded parts can be left out), you must ship the source. Some softwar

Re: exposing only what you want - headers and Swift?

2016-06-26 Thread Jim Adams
Don’t you have to ship your Swift source code with a framework because of source incompatibility and ABI issues? On Jun 26, 2016, at 3:06 PM, Thomas Wetmore mailto:t...@verizon.net>> wrote: A framework does not include source. It as an opaque bundle that contains a public API and compiled code

How do I get data out of NSRuleEditor?

2016-06-26 Thread Jim Thomason
I've been desperately trying to use NSRuleEditor for a while now, since it presents exactly the type of interface I want to show to the users. But I can't figure out how to properly get data out of it. I can configure all of the delegate methods to build the interface, but then what? The data I'm

Re: exposing only what you want - headers and Swift?

2016-06-26 Thread Thomas Wetmore
A framework does not include source. It as an opaque bundle that contains a public API and compiled code as an integrated whole. > On Jun 26, 2016, at 2:48 PM, William Squires wrote: > > True, but they'd still have the source .swift file as the compiler would need > this to know what symbols,

Re: exposing only what you want - headers and Swift?

2016-06-26 Thread Quincey Morris
On Jun 26, 2016, at 11:48 , William Squires wrote: > > they'd still have the source .swift file as the compiler would need this to > know what symbols, identifiers, etc... there were, even if they were marked > private No, only the public symbols would be in the module/framework. All the inte

Re: exposing only what you want - headers and Swift?

2016-06-26 Thread William Squires
True, but they'd still have the source .swift file as the compiler would need this to know what symbols, identifiers, etc... there were, even if they were marked private. Whereas in ObjC, I can give someone the header and the framework, and they can't see the internals, and thus be tempted to pr

Re: Security with Streams

2016-06-26 Thread Keary Suska
> On Jun 25, 2016, at 8:44 PM, Gerriet M. Denkmann wrote: > > Following TN2326 I created a (self signed) Certificate Authority and a > Digital Identity called "MyServerId". > >> We are now falling into the rabbit hole that is peer-to-peer trust & >> identity. How is your server going to ide

Re: NSTask argument list

2016-06-26 Thread Graham Cox
> On 26 Jun 2016, at 4:58 PM, Sandor Szatmari > wrote: > > You can either asynchronously monitor the task's output with notifications, > or I have read about a new API, but never used it, > -setReadabilityHandler:^(NSFileHandle* file) > > Sandor > Thanks! I was able to set a readability

Re: Is windowControllerDidLoadNib used only when windowNibName is?

2016-06-26 Thread Daryle Walker
> On Jun 10, 2016, at 9:45 AM, Jerry Krinock wrote: > >> On 2016 Jun 10, at 06:16, Daryle Walker wrote: >> >> I replaced windowNibName with makeWindowControllers since I'm moving window >> management to a separate controller. I kept windowControllerDidLoadNib >> around. Now I wondered if it s

Re: NSTask argument list

2016-06-26 Thread Sandor Szatmari
Graham, > On Jun 26, 2016, at 01:29, Graham Cox wrote: > > >> On 26 Jun 2016, at 3:22 PM, dangerwillrobinsondan...@gmail.com wrote: >> >> If it helps, you can think of it as an object oriented wrapped around C >> system calls that keeps track of PID and all the other bits like stdout and >>