On Jan 12, 2005, at 12:52, Rayme Jernigan wrote:
Hi,
I'm looking for a language to abuse for a project I'm working on. I
know a little Python, but I do not know if it can do this: I'd like to
define some class "N" that instantiates objects that can instantiate
fresh new objects of that same clas
Rayme Jernigan wrote:
I'm looking for a language to abuse for a project I'm working on. I
know a little Python, but I do not know if it can do this: I'd like to
define some class "N" that instantiates objects that can instantiate
fresh new objects of that same class... without external controller
c
On 11-jan-05, at 2:01, Bob Ippolito wrote:
On Jan 10, 2005, at 19:33, Neal Norwitz wrote:
I thought this might be of interest here. The PSF owns a license to
VISE. Jack knows the details.
I think that this is only really relevant to Mac OS9. I'm not sure if
Jack plans to make another release fo
Hi Benjamin,
I've done this sort of thing with linked lists in Python... by putting
all the nodes in a (Python) list, each with a unique ID, and using that
ID to link the nodes to each other, etc. But the important thing for me
to learn about here... "the goal"... is the self-instantiation aspe
Rayme,
This sounds like a Linked List system...
I was not able to find quickly a linked list module, but
searching by "trees" at the Vaults produced a R/B tree...
http://newcenturycomputers.net/projects/rbtree.html
I've been out of touch, I have not heard
Hi,
I'm looking for a language to abuse for a project I'm working on. I
know a little Python, but I do not know if it can do this: I'd like to
define some class "N" that instantiates objects that can instantiate
fresh new objects of that same class... without external controller
code.
You coul
Hi to all,
I've bundled an application with argv emulation (-a) , but when i start
the app this doesn't focus, and the "applicationDidFinishLaunching_"
only start when i clik on the icon on the dock.. all works fine but
i want the focus on my app when i open it =)
Someone can tell me someth