Re: [ANN] CoreParse

2011-06-06 Thread Philip Mötteli
Hi, Am 06.06.2011 um 00:12 schrieb Thomas Davie: > On 5 Jun 2011, at 18:22, Jens Alfke wrote: > On Jun 5, 2011, at 6:21 AM, Thomas Davie wrote: >> >>> I've just completed firming up the API and documentation for CoreParse. >>> CoreParse provides a powerful tokenisation and parsing engine, whic

Re: "-forwardInvocation:" like NSInvocation creation

2010-03-29 Thread Philip Mötteli
Am 29.03.2010 um 22:14 schrieb Jerry Krinock: > On 2010 Mar 29, at 12:53, Philip Mötteli wrote: > >> Am 29.03.2010 um 21:31 schrieb Jerry Krinock: >> >>> It handles all argument types > > Correction. I forgot one little limitation, per NSInvocation d

Re: "-forwardInvocation:" like NSInvocation creation

2010-03-29 Thread Philip Mötteli
Am 29.03.2010 um 21:31 schrieb Jerry Krinock: > On 2010 Mar 29, at 12:06, Philip Mötteli wrote: > >> I never said, it's not possible. But it's a huge task to re-implement a >> general method like this. If you understand, that you have to treat every >> d

Re: "-forwardInvocation:" like NSInvocation creation

2010-03-29 Thread Philip Mötteli
Am 29.03.2010 um 20:49 schrieb Jerry Krinock: > On 2010 Mar 29, at 11:15, Philip Mötteli wrote: > >> - someMethodWithArgument:(struct *)anArgument >> andSomeOtherArgument:(id)anotherArgument >> { >> // Here I want to create an NSInvocation, capturing the call

Re: "-forwardInvocation:" like NSInvocation creation

2010-03-29 Thread Philip Mötteli
Am 29.03.2010 um 20:36 schrieb Kyle Sluder: > On Mon, Mar 29, 2010 at 11:15 AM, Philip Mötteli > wrote: >> - someMethodWithArgument:(struct *)anArgument >> andSomeOtherArgument:(id)anotherArgument >> { >>// Here I want to create an NSInvocation, capturi

Re: "-forwardInvocation:" like NSInvocation creation

2010-03-29 Thread Philip Mötteli
Hi, Am 29.03.2010 um 18:52 schrieb A.M.: > > On Mar 29, 2010, at 11:07 AM, Philip Mötteli wrote: > >> I need to temporary save the invocation of a method. For that, I just need >> to put the stack frame into an NSInvocation. Unfortunately, Apple has >> remov

"-forwardInvocation:" like NSInvocation creation

2010-03-29 Thread Philip Mötteli
Hello, I need to temporary save the invocation of a method. For that, I just need to put the stack frame into an NSInvocation. Unfortunately, Apple has removed the -setStackFrame: from NSInvocation. Though they still use something like it, because they need it for -forwardInvocation:. Has anyb

Re: UML Diagramming or Other Helpful Software

2009-06-24 Thread Philip Mötteli
Am 24.06.2009 um 17:16 schrieb Dennis Christopher: Has anyone found a diagramming package that will "reverse engineer" Cocoa code and output a UML diagram from it? OmniGraffle, Xcode and Visual-Paradigm. ___ Cocoa-dev mailing list (Cocoa-dev@list

Re: UML Diagramming or Other Helpful Software?

2009-06-23 Thread Philip Mötteli
Hi, Am 24.06.2009 um 03:49 schrieb Brad Gibbs: I'm wondering if there are some tools commonly in use in the Mac software development community for diagramming an app, creating use cases and / or requirements, etc. I've seen OmniGraffle and ConceptDraw. I'm just wondering how other peopl

Re: Inverse Regex Library?

2008-07-18 Thread Philip Mötteli
Am 19.07.2008 um 02:13 schrieb Marcel Weiher: On Jul 17, 2008, at 14:11 , Philip Mötteli wrote: What I'm asking is, if you can identify everything that is not a too-many relationship, find them via a process of elimination (if it's not something I can identify, then it must be

Re: Inverse Regex Library?

2008-07-17 Thread Philip Mötteli
Am 17.07.2008 um 22:33 schrieb Hamish Allan: On Thu, Jul 17, 2008 at 8:49 PM, Philip Mötteli <[EMAIL PROTECTED]> wrote: I try to analyze objects, that have been serialized using keyed encoding. As long as there are only simple values, I have no problem. But the members of too-many

Re: Inverse Regex Library?

2008-07-17 Thread Philip Mötteli
Am 17.07.2008 um 20:57 schrieb Andy Lee: On Jul 17, 2008, at 2:34 PM, Philip Mötteli wrote: I'm actually in a lucky position, because 1. The strings are not complicated at all. When you say they are not complicated, do you mean they are relatively short, or that there is some regul

Re: Inverse Regex Library?

2008-07-17 Thread Philip Mötteli
Hi, Thanks for all the answers. Surely the following sequence of words would produce Word[1-9]{1,2} instead of Word[0-9]{1,2} because there is no representative 0 in the sample ? "Word1" "Word2" "Word5" "Word8" "Word11" "Word19" "Word23" "Word45" "Word77" how will the computer know t

Inverse Regex Library?

2008-07-17 Thread Philip Mötteli
Hi, Does anybody know of a library, that takes a bunch of strings and produces a regex-string from them? E. g: "Word1" "Word2" "Word5" "Word8" "Word11" "Word19" "Word23" "Word45" "Word77" should give "Word[0-9]{1,2}". Or I would even be more happy with "Word[0-9]+". I've heard of Grail+.