AJAX and FPCGI

Bill Campbell bill at celestial.com
Tue Mar 31 08:50:58 PDT 2009


On Tue, Mar 31, 2009, Fairlight wrote:
>At Tue, Mar 31, 2009 at 01:05:41AM -0400 or thereabouts, 
>suspect John Esak was observed uttering:
>> 
>> > ... [...]  instantiating  ... [...]
>> 
>> ????
>> 
>> Maybe you meant "Instanitiating"???  I knew I read this list for a reason.
>> If this *isn't* a word yet.... I vote that it should be placed in the
>> lexicon immediately.  What a perfect combination of words and ideas.  I'm
>> stealing it for my own use and telling everyone I invented it.
>> 
>> I will accept its derivative form "insta-initiating" as a legal spelling, as
>> well.
>> 
>> :-)
>
>Well, I couldn't see you not knowing a non-gaming word I do, so I checked
>because I thought I was losing it...multiple people and I have used it many
>a time in that context.

The term ``instantiating'' is common in Object Oriented
Programming (OOP) where one creates instances of a class.  In
python one might have:

class People(object):
	def __init__(self, name, sex):
		self.name = name
		self.sex = sex

billc = People('Bill Campbell', 'male')
mark = People('Fairlight', 'male')
nancy = People('Nancy Jones', 'female')

print '%s is a %s' % (nancy.name, nancy.sex)

In this case, billc, mark, and nancy are instances of People.

Bill
-- 
INTERNET:   bill at celestial.com  Bill Campbell; Celestial Software LLC
URL: http://www.celestial.com/  PO Box 820; 6641 E. Mercer Way
Voice:          (206) 236-1676  Mercer Island, WA 98040-0820
Fax:            (206) 232-9186

There has been no greater threat to life, liberty, and property
throughout the ages than government. Even the most violent and brutal
private individuals have been able to inflict only a mere fraction of
the harm and destruction that have been caused by the use of power by
political authorities. -- Richard Ebeling


More information about the Filepro-list mailing list