Ordering of Completion Handlers

2012-08-31 Thread Andreas Grosam
Hi All! I have a number of operations that will be received serially. Each operation can be processed concurrently with respect to each other. I would like to invoke the completion blocks for each operation in the order as they have been received. I'm searching a simple approach to achieve

Network and DarkWake

2012-08-31 Thread Gerriet M. Denkmann
When I close the lid of my PowerBook, my app runs every hour for about a minute. This probably is the DarkWake as mentioned in WWDC 2012 Power Management. There it was also stated that while in DarkWake the Network is available. But often (not always) my app (while in DarkWake) gets: Error

Re: Network and DarkWake

2012-08-31 Thread Alex Zavatone
I just notices that my MBP has a similar problem, but only after a day of using Xcode and leaving it and the simulator running. I'll shit the cover, it goes to sleep, I'll put it in my bag, take it home and when I take it out, it's hot and the fans are going full blast. When I open it, I'll

Re: Network and DarkWake

2012-08-31 Thread Steve Bird
On Aug 31, 2012, at 9:31 AM, Alex Zavatone wrote: I just notices that my MBP has a similar problem, but only after a day of using Xcode and leaving it and the simulator running. I'll shit the cover, it goes to sleep, I'll put it in my bag, I think I see the problem...

Re: Network and DarkWake

2012-08-31 Thread Alex Zavatone
On Aug 31, 2012, at 9:39 AM, Steve Bird wrote: On Aug 31, 2012, at 9:31 AM, Alex Zavatone wrote: I just notices that my MBP has a similar problem, but only after a day of using Xcode and leaving it and the simulator running. I'll shit the cover, it goes to sleep, I'll put it in my

Re: Network and DarkWake

2012-08-31 Thread Alex Zavatone
Hahaahaa. Shut. I meant SHUT. Ahh, at least it's Friday. Time for my English lessons. On Aug 31, 2012, at 9:39 AM, Steve Bird wrote: On Aug 31, 2012, at 9:31 AM, Alex Zavatone wrote: I just notices that my MBP has a similar problem, but only after a day of using Xcode and leaving it

Re: Network and DarkWake

2012-08-31 Thread Steve Sisak
At 9:42 AM -0400 8/31/12, Alex Zavatone wrote: Well, I've never seen Macs wake themselves from sleep before when closed. I'll make sure I keep my laptop open as I go on the commute (sarcasm). Taking the serious side of this -- I have had multiple generations of Mac laptops wake up in my bag

Re: Network and DarkWake

2012-08-31 Thread zav
Recently, I also disabled the if you drop me, park the HD head sensor since I noticed that the MBP would GSOD if turned on its side and placed down too quickly since I added one additional SSD to it. Still would wake itself and try to fry up its innards though. Do you think the lid sensor may

Crash in Mountain Lion

2012-08-31 Thread Georg Seifert
Hi, I get a lot crash reports that I can’t find anything about. It is completely in Apples code and only happens in MacOSX 10.8. A backtrace is attached. Can someone help me with this? Best Georg Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT)

Re: Crash in Mountain Lion

2012-08-31 Thread Mike Abdullah
Have you been able to reproduce this yourself? On 31 Aug 2012, at 15:41, Georg Seifert georg.seif...@gmx.de wrote: Hi, I get a lot crash reports that I can’t find anything about. It is completely in Apples code and only happens in MacOSX 10.8. A backtrace is attached. Can someone help me

How to insert a screen-only character in an NSTextView?

2012-08-31 Thread Koen van der Drift
Is it possible to insert character/glyphs in an NSTextView without changing the underlying NSTextStorage ? The goal is to have some special characters (eg a hyphen) at specific places in the string that is displayed in the view. So when the data is saved, the special characters are not part of

Re: Crash in Mountain Lion

2012-08-31 Thread Alex Zavatone
This reminds me a little of the SIGABRT diatribe that I just wrote about recently. It's unrecognized selector sent to instance. You're calling or passing a message that is unimplemented (or misspelled) to a class instance in your app. OC throws up its arms and bails in this case, throwing

Re: Network and DarkWake

2012-08-31 Thread Marco S Hyman
On Aug 31, 2012, at 6:04 AM, Gerriet M. Denkmann gerr...@mdenkmann.de wrote: But often (not always) my app (while in DarkWake) gets: Error getaddrinfo(time.apple.com, ntp) - nodename nor servname provided, or not known I believe its a race condition. NTP is trying to access the network

Re: Ordering of Completion Handlers

2012-08-31 Thread Seth Willits
On Aug 31, 2012, at 1:08 AM, Andreas Grosam wrote: I have a number of operations that will be received serially. Each operation can be processed concurrently with respect to each other. I would like to invoke the completion blocks for each operation in the order as they have been received.

Re: How to insert a screen-only character in an NSTextView?

2012-08-31 Thread Kyle Sluder
On Fri, Aug 31, 2012, at 08:24 AM, Koen van der Drift wrote: Is it possible to insert character/glyphs in an NSTextView without changing the underlying NSTextStorage ? The goal is to have some special characters (eg a hyphen) at specific places in the string that is displayed in the view. So

Re: Crash in Mountain Lion

2012-08-31 Thread Jens Alfke
On Aug 31, 2012, at 9:36 AM, Alex Zavatone z...@mac.com wrote: This reminds me a little of the SIGABRT diatribe that I just wrote about recently. It's unrecognized selector sent to instance. Well yes, but that’s a very common, generic type of crash. Probably ⅓ of the crashes I run into

Re: How to insert a screen-only character in an NSTextView?

2012-08-31 Thread Ross Carter
Or a custom NSGlyphGenerator. There was a WWDC session on this a few years back. On Aug 31, 2012, at 2:21 PM, Kyle Sluder k...@ksluder.com wrote: On Fri, Aug 31, 2012, at 08:24 AM, Koen van der Drift wrote: Is it possible to insert character/glyphs in an NSTextView without changing the

Re: Sandboxing die.die.die

2012-08-31 Thread Jeffrey Oleander
From: davel...@mac.com davel...@mac.com To: cocoa-dev@lists.apple.com Date: Thursday, 2012 August 30, 18:26 On 2012 Aug 30, at 18:09, z...@mac.com wrote: From: Jeffrey Oleander jgo...@yahoo.com Thu, 2012 Aug 30 13:57:44 To: cocoa-dev@lists.apple.com Subject: Re: Sandboxing die.die.die

Re: How to insert a screen-only character in an NSTextView?

2012-08-31 Thread Koen van der Drift
Do you know what year? The videos for 2010, 2011 and 1012 are online. - Koen. On Aug 31, 2012, at 4:55 PM, Ross Carter rosscarter...@me.com wrote: Or a custom NSGlyphGenerator. There was a WWDC session on this a few years back. On Aug 31, 2012, at 2:21 PM, Kyle Sluder

Re: How to insert a screen-only character in an NSTextView?

2012-08-31 Thread Koen van der Drift
Was it session 114 from 2012? - Koen. On Aug 31, 2012, at 5:38 PM, Koen van der Drift koenvanderdr...@gmail.com wrote: Do you know what year? The videos for 2010, 2011 and 1012 are online. - Koen. On Aug 31, 2012, at 4:55 PM, Ross Carter rosscarter...@me.com wrote: Or a custom

Re: How to insert a screen-only character in an NSTextView?

2012-08-31 Thread Koen van der Drift
On Aug 31, 2012, at 7:23 PM, Graham Cox appt...@me.com wrote: Good luck reading THAT format! I think codecs involving monks with quills are needed. Hahaha, well spotted! I have my feather pen ready! - Koen. ___ Cocoa-dev mailing list

Re: How to insert a screen-only character in an NSTextView?

2012-08-31 Thread Graham Cox
The videos for [] 1012 are online Good luck reading THAT format! I think codecs involving monks with quills are needed. --Graham ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to

Cocoa - racoon - IPSec

2012-08-31 Thread koko
Any Cocoa samples using raccoon to do IPsec tunneling that you can point me to? -koko ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at

[Moderator] Re: Sandboxing die.die.die

2012-08-31 Thread Scott Anguish
This has gone far enough. The thread is closed. It is appropriate for this list. On Aug 31, 2012, at 5:29 PM, Jeffrey Oleander jgo...@yahoo.com wrote: From: davel...@mac.com davel...@mac.com To: cocoa-dev@lists.apple.com Date: Thursday, 2012 August 30, 18:26 On 2012 Aug 30, at 18:09,

Re: [Moderator] Re: Sandboxing die.die.die

2012-08-31 Thread Eagle Offshore
Did you mean INappropriate? Sent from my iPhone On Aug 31, 2012, at 21:11, Scott Anguish sc...@cocoadoc.com wrote: This has gone far enough. The thread is closed. It is appropriate for this list. On Aug 31, 2012, at 5:29 PM, Jeffrey Oleander jgo...@yahoo.com wrote: From: