Nonce

On 8/12/06, Peña, Botp [email protected] wrote:

in any case, just about anything can be slanged
http://www.urbandictionary.com/define.php?term=ruby

<parental_guidance_warning>
And maybe those favoring (or maybe it should be favouring) nonce
should consult the urban dictionary:

I couldn’t find eigen or eigenclass there but did find these:

and

</parental_guidance_warning>


Rick DeNatale

IPMS/USA Region 12 Coordinator
http://ipmsr12.denhaven2.com/

Visit the Project Mercury Wiki Site
http://www.mercuryspacecraft.com/

On Aug 12, 2006, at 12:27 AM, M. Edward (Ed) Borasky wrote:

Groooooooooooooooooooooooooooooooooooooooooooooan

I was definitely inspired by this little conversation to make some
more t-shirt designs. Check out the ‘tokui kurasu’, ‘pro
singleton’/‘anti singleton’, and ‘got class’/‘got klass?’ shirts!

http://www.spreadshirt.com/shop.php?sid=36444

Enjoy!

M.T.

Matt T. wrote:

I was definitely inspired by this little conversation to make some
more t-shirt designs. Check out the ‘tokui kurasu’, ‘pro
singleton’/‘anti singleton’, and ‘got class’/‘got klass?’ shirts!

http://www.spreadshirt.com/shop.php?sid=36444

Enjoy!

M.T.

I want one that says pro-singleton on the front and anti-singleton on
the back. Just like Ruby :wink:

T.

Hi –

On Mon, 14 Aug 2006, Matt T. wrote:

Clever!

http://www.spreadshirt.com/shop.php?op=article&article_id=1444051#top

OK, I’ll bite :slight_smile: What does it mean?

David

Clever!

http://www.spreadshirt.com/shop.php?op=article&article_id=1444051#top

M.T.

[email protected] wrote:

Hi –

On Mon, 14 Aug 2006, Matt T. wrote:

Clever!

http://www.spreadshirt.com/shop.php?op=article&article_id=1444051#top

OK, I’ll bite :slight_smile: What does it mean?

The Matzonian dilemma!

T.

Charles O Nutter wrote:

Let’s not fall into the Mötley Crüe trap, shall we?

Too late…

http://www.cafepress.com/speedmetalruby

-Justin

2006/8/12, Hal F. [email protected]:

Good point. :slight_smile: Is it Vector or Vektor in German? As for “Value” – I
think that’s a good German word. Not sure.

Just for the record: It’s ‘Vektor’ in German.

Hah, sorry David: did it again.

I want one that says pro-singleton on the front and anti-singleton on
the back. Just like Ruby :wink:

T.

That’s the meaning behind the shirt. :slight_smile:

M.T.

Hi –

On Tue, 15 Aug 2006, Matt T. wrote:

Hah, sorry David: did it again.

I want one that says pro-singleton on the front and anti-singleton on
the back. Just like Ruby :wink:

T.

That’s the meaning behind the shirt. :slight_smile:

It’s still a little obscure to me but I imagine that’s meant to be
part of its charm :slight_smile:

David

On 8/12/06, Peña, Botp [email protected] wrote:

yes, and i forgot my smiley too :slight_smile:
in any case, just about anything can be slanged http://www.urbandictionary.com/define.php?term=ruby

kind regards -botp :slight_smile:

Then that “ruby is sexy” shirt reflects the slang quite well although
it is not so much appreciated for ruby the language by everybody :slight_smile:

Thanks

Michal

Trans wrote:

T.
In any case, this little shirt has insipired me in other directions
too! As of this day, Aug 15th, 2006, I declare that the oft mentioned
“God particle” of T.O.E. be dubbed the “Singleton particle”. (If this
particle turns out not to be a Boson and there is such a thing as an
Anti-Singleton, then God help us all! :wink:

T.

I think we’re all bosons on this bus.

[email protected] wrote:

That’s the meaning behind the shirt. :slight_smile:

It’s still a little obscure to me but I imagine that’s meant to be
part of its charm :slight_smile:

Well, I suppose to be exact the inside of the shirt should say
“pro-singleton” and the outside “anti-singleton” --that would be like
Ruby where there is on #singleton method, but under the hood there are
rb_singleton… refrences. But then nobody would see a “pro-singleton”
message on the inside of a shirt :wink:

In any case, this little shirt has insipired me in other directions
too! As of this day, Aug 15th, 2006, I declare that the oft mentioned
“God particle” of T.O.E. be dubbed the “Singleton particle”. (If this
particle turns out not to be a Boson and there is such a thing as an
Anti-Singleton, then God help us all! :wink:

T.

“T” == Trans [email protected] writes:

T> Well, I suppose to be exact the inside of the shirt should say
T> “pro-singleton” and the outside “anti-singleton” --that would be like
T> Ruby where there is on #singleton method, but under the hood there
are
T> rb_singleton… refrences. But then nobody would see a
“pro-singleton”
T> message on the inside of a shirt :wink:

This is because you don’t want to see it

moulon% ruby -e ‘p Kernel.private_methods.grep(/singleton/)’
[“singleton_method_removed”, “singleton_method_undefined”,
“singleton_method_added”]
moulon%

Even ruby know what is a singleton class :slight_smile:

moulon% ruby -e ‘class << Object; self end.dup’
-e:1:in `initialize_copy’: can’t copy singleton class (TypeError)
from -e:1
moulon%

Guy Decoux

ts wrote:

moulon% ruby -e ‘p Kernel.private_methods.grep(/singleton/)’
[“singleton_method_removed”, “singleton_method_undefined”, “singleton_method_added”]
moulon%

Even ruby know what is a singleton class :slight_smile:

moulon% ruby -e ‘class << Object; self end.dup’
-e:1:in `initialize_copy’: can’t copy singleton class (TypeError)
from -e:1
moulon%

Yes, you’re right. But it has been a slow “turning the shirt inside
out” --differnt names had been used and there is still no direct
#singleton_class method.

And in anycase, I still think it’s rather sad that another name can’t
be arrived at, so as to avoid terminology clash wtih “that other
singleton”. I mean, metaclass was abandoned becuase it was too general
and virtual class because of a clash with those in C. Is it so hard to
pick a name that isn’t already being used? And it’s not like it’s a
word being used in the pottery field or some other totally separate
parlance. Singleton has meaning in this very realm: require
‘singleton’.

And besides that:
http://7rans0noma.blogspot.com/2006/07/singleton-2-legion.html

So maybe the whole “singly”’ thing isn’t so imparative. I’ve been
thinking about the utiltiy of this “legionary” approach in
prototype-based coding for instance.

T.