Personal Icon and Nickname meaning

Friday, January 21, 2005 by Sleeping Dragon | Discussion: WinCustomize Talk

Well I gotta tell ya, some of these personal icons are awesome. Jinn Fizz and Stupendous Man are two of my favorites. I'm interested in the meaning behind them. To some it just looks cool, to some there may be some history. Also, I think I know why BoXXi's is a box, but I don't know why he's BoXXi. What makes Corky_O Corky? Why does butch have a 123 and a motorcycle? What's a Jafo? Why did sbgFX kill the Spyder?

So if you got a minute, tell us why you chose your nickname and what, if anything, your icon represents.

I won't go first this time. Someone else.
First Previous Page 2 of 14 Next Last
Bulletcatcher
Reply #21 Saturday, January 22, 2005 2:23 AM
my nick came from when i played that Counter-Strike game and all i had was a 166mhz computer and so until i got a new computer (and i guess even after some) i caught bullets in the game really well and i really liked the sound of it, but as i surf the net its not as originial as i once believed oh well... the avatar is a really simple graphic of my middle initials: A.M.A put together back while i was daydreaming in middle school and ive hung onto it as kinda a logo for myself
kona0197
Reply #22 Saturday, January 22, 2005 3:50 AM
As far as my nick:



And as for "0197" those were the last 4 numbers of my first cell phone.

What can I say? I'm a bicycle nut.
Old_Crab
Reply #23 Saturday, January 22, 2005 4:10 AM
If you can't quess why I'm called what I am then you can just go.....fish. Besides how many times must we go through all this....why there must be a 10001 threads dealing with peoples nicks and such ... why I never....never mind.
Fuzzy Logic
Reply #24 Saturday, January 22, 2005 5:28 AM

Do I have to do this again? Oh well, you asked for it

Fuzzy logic is a superset of conventional (Boolean) logic that has been
extended to handle the concept of partial truth -- truth values between
"completely true" and "completely false".  It was introduced by Dr. Lotfi
Zadeh of UC/Berkeley in the 1960's as a means to model the uncertainty
of natural language. (Note: Lotfi, not Lofti, is the correct spelling
of his name.)

Zadeh says that rather than regarding fuzzy theory as a single theory, we
should regard the process of ``fuzzification'' as a methodology to
generalize ANY specific theory from a crisp (discrete) to a continuous
(fuzzy) form (see "extension principle" in [2]). Thus recently researchers
have also introduced "fuzzy calculus", "fuzzy differential equations",
and so on (see [7]).

Fuzzy Subsets:

Just as there is a strong relationship between Boolean logic and the
concept of a subset, there is a similar strong relationship between fuzzy
logic and fuzzy subset theory.

In classical set theory, a subset U of a set S can be defined as a
mapping from the elements of S to the elements of the set {0, 1},

   U: S --> {0, 1}

This mapping may be represented as a set of ordered pairs, with exactly
one ordered pair present for each element of S. The first element of the
ordered pair is an element of the set S, and the second element is an
element of the set {0, 1}.  The value zero is used to represent
non-membership, and the value one is used to represent membership.  The
truth or falsity of the statement

    x is in U

is determined by finding the ordered pair whose first element is x.  The
statement is true if the second element of the ordered pair is 1, and the
statement is false if it is 0.

Similarly, a fuzzy subset F of a set S can be defined as a set of ordered
pairs, each with the first element from S, and the second element from
the interval [0,1], with exactly one ordered pair present for each
element of S. This defines a mapping between elements of the set S and
values in the interval [0,1].  The value zero is used to represent
complete non-membership, the value one is used to represent complete
membership, and values in between are used to represent intermediate
DEGREES OF MEMBERSHIP.  The set S is referred to as the UNIVERSE OF
DISCOURSE for the fuzzy subset F.  Frequently, the mapping is described
as a function, the MEMBERSHIP FUNCTION of F. The degree to which the
statement

    x is in F

is true is determined by finding the ordered pair whose first element is
x.  The DEGREE OF TRUTH of the statement is the second element of the
ordered pair.

In practice, the terms "membership function" and fuzzy subset get used
interchangeably.

That's a lot of mathematical baggage, so here's an example.  Let's
talk about people and "tallness".  In this case the set S (the
universe of discourse) is the set of people.  Let's define a fuzzy
subset TALL, which will answer the question "to what degree is person
x tall?" Zadeh describes TALL as a LINGUISTIC VARIABLE, which
represents our cognitive category of "tallness". To each person in the
universe of discourse, we have to assign a degree of membership in the
fuzzy subset TALL.  The easiest way to do this is with a membership
function based on the person's height.

    tall(x) = { 0,                     if height(x) < 5 ft.,
                (height(x)-5ft.)/2ft., if 5 ft. <= height (x) <= 7 ft.,
                1,                     if height(x) > 7 ft. }

A graph of this looks like:

1.0 +                   +-------------------
    |                  /
    |                 /
0.5 +                /
    |               /
    |              /
0.0 +-------------+-----+-------------------
                  |     |
                 5.0   7.0

                height, ft. ->

Given this definition, here are some example values:

Person    Height    degree of tallness
--------------------------------------
Billy     3' 2"     0.00 [I think]
Yoke      5' 5"     0.21
Drew      5' 9"     0.38
Erik      5' 10"    0.42
Mark      6' 1"     0.54
Kareem    7' 2"     1.00 [depends on who you ask]

Expressions like "A is X" can be interpreted as degrees of truth,
e.g., "Drew is TALL" = 0.38.

Note: Membership functions used in most applications almost never have as
simple a shape as tall(x). At minimum, they tend to be triangles pointing
up, and they can be much more complex than that.  Also, the discussion
characterizes membership functions as if they always are based on a
single criterion, but this isn't always the case, although it is quite
common.  One could, for example, want to have the membership function for
TALL depend on both a person's height and their age (he's tall for his
age).  This is perfectly legitimate, and occasionally used in practice.
It's referred to as a two-dimensional membership function, or a "fuzzy
relation".  It's also possible to have even more criteria, or to have the
membership function depend on elements from two completely different
universes of discourse.

Logic Operations:

Now that we know what a statement like "X is LOW" means in fuzzy logic,
how do we interpret a statement like

    X is LOW and Y is HIGH or (not Z is MEDIUM)

The standard definitions in fuzzy logic are:

    truth (not x)   = 1.0 - truth (x)
    truth (x and y) = minimum (truth(x), truth(y))
    truth (x or y)  = maximum (truth(x), truth(y))

Some researchers in fuzzy logic have explored the use of other
interpretations of the AND and OR operations, but the definition for the
NOT operation seems to be safe.

Note that if you plug just the values zero and one into these
definitions, you get the same truth tables as you would expect from
conventional Boolean logic. This is known as the EXTENSION PRINCIPLE,
which states that the classical results of Boolean logic are recovered
from fuzzy logic operations when all fuzzy membership grades are
restricted to the traditional set {0, 1}. This effectively establishes
fuzzy subsets and logic as a true generalization of classical set theory
and logic. In fact, by this reasoning all crisp (traditional) subsets ARE
fuzzy subsets of this very special type; and there is no conflict between
fuzzy and crisp methods.

Some examples -- assume the same definition of TALL as above, and in addition,
assume that we have a fuzzy subset OLD defined by the membership function:

    old (x) = { 0,                      if age(x) < 18 yr.
                (age(x)-18 yr.)/42 yr., if 18 yr. <= age(x) <= 60 yr.
                1,                      if age(x) > 60 yr. }

And for compactness, let

    a = X is TALL and X is OLD
    b = X is TALL or X is OLD
    c = not (X is TALL)

Then we can compute the following values.

height  age     X is TALL       X is OLD        a       b       c
------------------------------------------------------------------------
3' 2"   65      0.00            1.00            0.00    1.00    1.00
5' 5"   30      0.21            0.29            0.21    0.29    0.79
5' 9"   27      0.38            0.21            0.21    0.38    0.62
5' 10"  32      0.42            0.33            0.33    0.42    0.58
6' 1"   31      0.54            0.31            0.31    0.54    0.46
7' 2"   45      1.00            0.64            0.64    1.00    0.00
3' 4"   4       0.00            0.00            0.00    0.00    1.00

For those of you who only grok the metric system, here's a dandy
little conversion table:

  Feet+Inches = Meters
  --------------------
    3'   2"     0.9652
    3'   4"     1.0160
    5'   5"     1.6510
    5'   9"     1.7526
    5'  10"     1.7780
    6'   1"     1.8542
    7'   2"     2.1844

So there you have it. And as for the icon, a logical choice

Essencay
Reply #25 Saturday, January 22, 2005 6:17 AM
Essencay = my initials SNK. Avatar is a pic of my best hound Margaret "Queen Maggie May". She's a 80lb dobie & hound mix rescued from the streets of Manchester that had 101 bad habits, including sending one of my other hounds to the vets regularly for stitches. She just needed some hard lovin' and understanding to become the great dog she is today.
Matchbook
Reply #26 Saturday, January 22, 2005 6:20 AM
...meh ..
horiz0n
Reply #27 Saturday, January 22, 2005 7:43 AM
his spider is still there
NightTrainthedark
Reply #28 Saturday, January 22, 2005 9:06 AM
My motorcyle is a 2002 Harley Davidson Night Train http://www.geocities.com/nighttrainfxstb2002/

Avatar is a Happycat I pulled off the web somewhere. Cracks me up every time.
Lantec
Reply #29 Saturday, January 22, 2005 9:17 AM
I'm a Civil Engineer, specializing in Land Development (site planning, stormwater, roads, utilities, etc.) therfore a Land Tech. My main hobby has been fishin the coastal flats near my home on the Atlantic Ocean so I added the @ - @LanTec However the new site has a problem with non alphanumeric characters so I've settled for LanTec
RPGFX
Reply #30 Saturday, January 22, 2005 9:58 AM
Well, boring one here, but I guess I'll tell it. RPGuere is my first initial, middle initial and last name. My name is unique enough that it's never taken so I always use it for nicknames. "Guere" is french for war. The icon is self explainitory.

I wanted to use the name "MiNdCRiME" but it was not available. That is from the amazing Queensryche album "Operation Mindcrime".
47songs
Reply #31 Saturday, January 22, 2005 11:11 AM
Wizop Fuzzy Logic, can you explain that again? I'm a little fuzzy on the concept. Oh man!!!Heh!


Well, I just recently changed my nickname here at Wincustomize. When I registered a little over a year ago, I had no idea that I might someday become a part of the "community" as someone who might actually attempt creating anything here. I joined just to be able to customize my desktop. I get bored easily looking at the same old thing. I really don't know why, but I simply signed on using my first name and last initital. As I have become more involved I just decided that I wanted to use the nickname I've used in every other site I've registered at.

47songs

The first site I registereed at was a music site. I've been interested in guitars and music since I was ten years old. Although I have a passion for music and especially guitars, for me personally, it's always been my feeling that no matter the instrument, no matter the musician, no matter the performance, it all begins with the song. I've written a number of songs over the years, some I'm not too proud of, but some I am quite proud of. I still dream of someday writing that "perfect" song. Anyways, when I joined that first music site, I wanted to give myself a name that would describe where my priority lies in music. The site wouldn't accept just the word songs, so I put my age before it and 47songs is what I ended up with. That is the nickname I'm known for with friends I've made on those sites, so it's stuck ever since.

And my icon? I've collected numerous classic guitars over the years, but my newest is the 00028ec model that Eric Clapton used on his MTV Unplugged performance. It is a dream to play and my favorite guitar since I bought it 2 years ago. It's also the first icon I ever made. Therefore...


Donna
Corky_O
Reply #32 Saturday, January 22, 2005 1:08 PM
To measure degrees of truth -

We humans are truly "amazing animals".

Good one, Fuzzy.
Rutabaga64
Reply #33 Saturday, January 22, 2005 1:17 PM
The story behind my nickname is long and boring, and the name really doesn't mean a whole lot to me anymore, but it's the name I've always used since I started surfing in '99, so I'm sticking with it since it's always been my online ID.

As for the icon...I've loved Godzilla since I was a wee tot, there's just something about a guy in a rubber monster suit running around on a set and stomping cardboard buildings that entertains me, makes me laugh, and to me, is the epitome of coolness. I like how they've spiffed 'Zilla up over the years, and one of my favorite improvements is how his spines light up when he breathes fire. I stumbled across the photo last fall when I decided I needed a new icon at Rotten Tomatoes, and I've grown to like it so much I use it everywhere. Because Godzilla rocks.

Glad you like it, SD!
butch123
Reply #34 Saturday, January 22, 2005 1:26 PM
Well, then name Butch came from a little dog I had...loved that little guy, but got old and passed waway. He was a Boston Bull Terrier...sweetest little thing you could ever see, if you didnt mind looking at a pig face with puffy eyes..just sweet. And the Harley because thats what I had, and thats the only bike I consider to be a bike, and not for the status reason..I like the comfort...oh just everything about the bike. Hope this answers it.
ZubaZ
Reply #35 Saturday, January 22, 2005 1:28 PM
I haven't found an iccon yet an I have no skill in creating one. My profiel pic is my youngest daughter and I have been playing with stylizing something along those lines.

The nick is about 11 years old. I was working at a sporting good store and we had lost a pallet of Zubaz pantsLink. So our shipping guy is yelling over and over again "Zubaz! Zubaz!" I finally answered, "What?!?!?"

Lesson learned.
qrush
Reply #36 Saturday, January 22, 2005 3:26 PM
First, what my nick DOESN'T mean...

1) It's NOT the simpsons guy (i've never even seen the character)
2) And I'm not a doctor! (...yet!)

Where it really came from...6 years ago one of the girls in my class started calling me Doctor Nick, so the name just stuck.
aufisch
Reply #37 Saturday, January 22, 2005 3:30 PM
My nick is just a combination of Australia and Fischer (my family name). It comes from the times when there was no instant messaging and I (originally from Switzerland) had moved to Australia, while my sister had just moved to Mexico. Because I was a student and the phone-rates to and from Mexico where absolutely enormous, we made the decision to meet regularly in an public online chat-room. For easy recognition she was mexfisch, while I became aufisch.

My avatar is my real initials in combination with my profession (I am a marine-biologist).


Posted via WinCustomize Browser/Stardock Central
lovesblessing
Reply #38 Saturday, January 22, 2005 3:56 PM
Hi Mr. SD!

Okay, here goes....my real name means "gift of God" in the Greek, and since His Word says that (1 John 4:16b) "...God is love. Whoever lives in love lives in God, and God in him.", and since He has blessed me to be a blessing to others, I thought that "lovesblessing" was a good name to go with!

My icon, well, all my pcs are Gateways, so I call them Holy Cows.....and when I make cards on them for friends and such, the logo I used on the back was that pic I found of a cow with wings....if and when I ever get enough time to make something that is accepted here at WC it would be from my invisible company known as "Holy Cow Creations!" Yeah, I know, corny! Ah but the best cows are corn fed! Well, gee, what ya want me to do, Hallmark was already taken!!!!!!!

Blessings to you!

lovesblessing
Reppiks
Reply #39 Saturday, January 22, 2005 4:06 PM
My nick is a name my family used when I was a kid, I just spelled it backwards which is a long story by its self. My avatar is that elusive item in computer instructions "Press Anykey to continue" just a sick sense of humor I guess.
Koasati
Reply #40 Saturday, January 22, 2005 5:41 PM
Koasati is the true name of my fathers tribe (Native American). The tribe is now known as the Coushatta, but I've never figured out out you get Coushatta from Koasati. (Same way you get Japan from Nippon I suppose) Anyway, when I was signing up at skinz.org in 98, I suddenly needed a 'nick'. My friends call me Wolf, but I figured that would be taken, so I went with Koasati.

The icon..... it's a pencil... just something to use until I come up with a something else.

Please login to comment and/or vote for this skin.

Welcome Guest! Please take the time to register with us.
There are many great features available to you once you register, including:

  • Richer content, access to many features that are disabled for guests like commenting on the forums and downloading skins.
  • Access to a great community, with a massive database of many, many areas of interest.
  • Access to contests & subscription offers like exclusive emails.
  • It's simple, and FREE!



web-wc01