sneekula 969 Nearly a Posting Maven

Can you define the words "slowest inhabitant"

By your own definition it would be the fattest inhabitants.

sneekula 969 Nearly a Posting Maven

If you get too fat, then you become too slow

I wonder which part of the world has the slowest inhabitants?

sneekula 969 Nearly a Posting Maven

People that are always jealous.

sneekula 969 Nearly a Posting Maven

I decided to avoid all of the headaches associated with Wife 1.0 by sticking with Girlfriend 2.0. Even here, however, I found many problems. Apparently you cannot install Girlfriend 2.0 on top of Girlfriend 1.0.

You must uninstall Girlfriend 1.0 first. Other users say this is a long standing bug which I should have been aware of. Apparently the versions of Girlfriend have conflicts over shared use of the I/O port. You think they would have fixed such a stupid bug by now.

To make matters worse, the uninstall program for Girlfriend 1.0 doesn't work very well leaving undesirable traces of the application in the system.

One more thing that annoys, all versions of Girlfriend continually popup little annoying messages about the advantages of upgrading to Wife 1.0.

sneekula 969 Nearly a Posting Maven

One man to another: "I made the most embarrassing mistake yesterday. I went to the airport, and the woman behind the counter had such a big chest that I asked her for a ticket to Tittsburgh!"

sneekula 969 Nearly a Posting Maven

I have been to Zermatt in Switzerland. You get there be a gear train and they only allow electric cars in town. Climbed at least to the base of the Matterhorn.

sneekula 969 Nearly a Posting Maven

> Yes, Praise God. That's incredible.
Yes, praise the wheelchair.

Praise the workers that made this quality product.

sneekula 969 Nearly a Posting Maven

He who hesitates is probably right.

sneekula 969 Nearly a Posting Maven

Planning on sizzler steaks, mashed potatoes (with the skin) and green beans with cranberries.

sneekula 969 Nearly a Posting Maven

A small bag of "Goobers" (chocolate covered roasted peanuts)

Want to know more, check:
goobers.com

sneekula 969 Nearly a Posting Maven

If you drink a lot of beer then european.

sneekula 969 Nearly a Posting Maven

To succeed in politics, it is often necessary to dive below your principles.

sneekula 969 Nearly a Posting Maven

People that say "God bless you!" all the time, like they had any control over this.

Dave Sinkula commented: It's a request, not a command, intended to benefit you. -2
sneekula 969 Nearly a Posting Maven

Good News:
A busload of lawyers ran off a cliff. The bus was destroyed and there were no survivors.

Bad News:
There were three empty seats.

sneekula 969 Nearly a Posting Maven

If General Electric would purchase the airline Alitalia, would the new airline be named Genitalia?

sneekula 969 Nearly a Posting Maven

With time you will only remember the good things.

sneekula 969 Nearly a Posting Maven

A mother and son were walking through a cemetery, and passed by a
headstone inscribed "Here lies a good lawyer and an honest man."
The little boy read the headstone, looked up at his mother, and
asked "Mommy, why did they bury two men there?"

sneekula 969 Nearly a Posting Maven

<Hickup> I'll drink to that :) Happy New Year

Are you celebrating early this year?

No matter how hard you try, there are some things that rats won't do.

sneekula 969 Nearly a Posting Maven

Wow, Radio Gibraltar is bilingual, neat!

sneekula 969 Nearly a Posting Maven

Red wine from Spain or California goes well with a steak dinner.

sneekula 969 Nearly a Posting Maven

Could become a classic.

sneekula 969 Nearly a Posting Maven

For the Federal Morals Police "making love" is a very bad thing! Making kinky love is downright criminal. Are you sure it was just a dream?

sneekula 969 Nearly a Posting Maven

and...you...ate...it?

I keep my stash in the fridge.

Just had a toasted English muffin with Lemon Curd. Also some mint tea. Feels good when you have a cold.

sneekula 969 Nearly a Posting Maven

Dear Grandson Snee:

I have become a little older since I saw you last,
and a few changes have come into my life since then.
Frankly, I have become a frivolous old gal.

I am seeing five gentlemen everyday. As soon as I
wake up, Will Power helps me get out of bed. Then
I go to see John. Then Charlie Horse comes along,
and when he is here he takes a lot of my time and
attention. When he leaves, Arthur Ritis shows up
and stays the rest of the day. He doesn't like to
stay in one place very long, so he takes me from
joint to joint. After such a busy day, I'm really
tired and glad to go to bed with Ben Gay.

What a life. Oh yes, I'm also flirting with Al Zymer.

Love,
Grandma

P.S. The preacher came to call the other day. He said
at my age I should be thinking of the hereafter. I
told him, "Oh I do it all the time. No matter where
I am, in the parlor, upstairs, in the kitchen, or
down in the basement, I ask myself, "Now, what am I
here after?"

sneekula 969 Nearly a Posting Maven

Why would you wash your mouth with soap? With all those chemicals in there that could be dangerous.

My mother used to wash my hands with soap, I think that was much smarter.

sneekula 969 Nearly a Posting Maven

Thanks mawe, your Periodic Table program is sweet!

Thanks vegaseat, I will follow your advice for my simple MW calculator. When done, I will put it into the Python snippets.

sneekula 969 Nearly a Posting Maven

Take a look at this thread and then do your own thinking:
http://www.daniweb.com/forums/thread94059.html&highlight=five+click+house

I entered 'five click house' into the search option for this Python forum.

sneekula 969 Nearly a Posting Maven

It looks like fixed means that variable1 value has to come from dlist1 and is fixed to the Server and variable2 value comes from dlist2 and is fixed to the Client. At least that is the way I understand this.

sneekula 969 Nearly a Posting Maven

I want to make a small Molecular Weight calculator. If the user for instance enters the molecular formula for dichloro-benzoic acid as "C6H3Cl2COOH", I would like to split it into a list like so I can then combine all the carbons, chlorines, oxygens and hydrogens and go on to the calculation.

Any good ideas how to do the splitting?

sneekula 969 Nearly a Posting Maven

Try this small change:

import sys

class Person:

    def __init__(self):
        self.list = []

    def AddContact(self):
        fname = raw_input("First Name:> ")
        lname = raw_input("Last Name:> ")
        street = raw_input("Street:> ")
        self.list = [ fname, lname, street]

    def ListAll(self):
        print ""


    def DeleteContact():
        print ""


class NewPerson():

    def __init__(self):
        self.v = Person()   # change here
        self.option()

    def option(self):
        print "--------- Options ---------\n"
        print " |1) Add/Update |\n"
        print " |2) List All |\n"
        print " |3) Delete Contact |\n"
        print " |4) Exit |\n"
        opt = raw_input(":> ").lower()
        if opt == '1':
            self.v.AddContact()   # change here
        elif opt == '2':
            self.v.ListAll()   # change here
        elif opt =='3':
            self.v.DeleteContact()   # change here
        elif opt == '4':
            sys.exit
        else:
            print "Invalid choice."
        self.option()

if __name__ == '__main__':
    v = NewPerson()
    v.option()

Also, enclose your code in code tags to preserve the indents. Temporarily click on "REPLY W/QUOTE" to see how I did it.

sneekula 969 Nearly a Posting Maven

I am reading "Learning Python" by Mark Lutz and David Ascher, published by O'Reilly Books. I like it.

sneekula 969 Nearly a Posting Maven

Back to the topic, if you watch convulsed news presented by the likes of Nancy Grace, or Rita Cosby, your morals and your brains get damaged.

sneekula 969 Nearly a Posting Maven

My dream last night was goofy. I had to go to an important event, and was dressed up in my Sunday best. For some odd reason we took a shortcut through the woods and ended up at the Mississippi river. The river water was just filthy. We followed a dirt path along the river, walking for a long time, trying to avoid the many mud puddles. Everybody except me got covered with mud on their nice clothes. Then we got to the event, a funeral. The person who's funeral it was was still alive, it was me. I woke up.

sneekula 969 Nearly a Posting Maven

>> I love analysing dreams.
Analyse this:

I was (in my dream), in a pub that I go to every now and then. I was chatting to some friends and out of the corner of my eye I spot an elevator I didn't notice before. I tried to point it out to friends of mine but they were distracted by a beautiful lady who just walked in (she had a spotlight on her for some reason). Anyways I walk over to the elevator door and press the button outside it. It opens and I press another button inside. The elevator goes down for ages. Eventually it stops and I get out. I end up in an Inca temple, which is fantastically grand, golden and all. I walk around and then go up stairs (which appeared I guess. Wasn't quite as long as the elevator, guess my subconscious got bored after a few flights!), to tell my friends. I bring them down and a war begins in the temple (not between us, but the Incas which weren't there before), so we panic and want to leave but the elevator door and the stair case have disappeared but a second shaft appears on the opposite side of the room. We reach it easily enough and go up, but we end up in a lab in my building in my university...

Sounds like a Hollywood movie. I hope it was in Technicolor too. Maybe the elevator was some kind of time machine. …

sneekula 969 Nearly a Posting Maven

Nice educational toy, for grown-ups too. We had one around the house for years.

sneekula 969 Nearly a Posting Maven

It pays to be honest with yourself and not cheat. I used to help my teacher grade papers, some cheating was so obvious.

sneekula 969 Nearly a Posting Maven

My morals have declined since I mostly watch the news on TV. I need to take a vacation from all that biased news journalism.

sneekula 969 Nearly a Posting Maven

Thanks Dude!
You can find some interesting stuff on shortwave. Sort of an ear on what's going on globally.

sneekula 969 Nearly a Posting Maven

Flatulent people, particularly in the elevator. Then they look at you, like you were the offending party.

sneekula 969 Nearly a Posting Maven

I am taking the moral high ground.

sneekula 969 Nearly a Posting Maven

No idiot you suck. you moron

The forum rules tell you to keep things pleasant. Calling other posters names only exposes you as the one that watches too much TV.

sneekula 969 Nearly a Posting Maven

Looked through my Halloween stash and found an "Oh Henry" candy bar. A tasty mix of peanuts, caramel and fudge.

sneekula 969 Nearly a Posting Maven

I'm sorry, I didn't re-read all of this thread, but that sounds like a simpleton trying to "dumb things down".

There we go again, calling posters stupid! I though we had to keep things pleasant as a forum rule.

sneekula 969 Nearly a Posting Maven

Once in a while.

Serious with a grin.

sneekula 969 Nearly a Posting Maven

Argyle socks where not on my list, but I received them anyway.

My flat gets broken in a lot, but my collection of still unused argyle socks has never been stolen.

sneekula 969 Nearly a Posting Maven

Thanks Dude, this one is a good source of health info:
http://ehealthforum.com/health/health_forums.html

sneekula 969 Nearly a Posting Maven

Aren't all dentists like that?

sneekula 969 Nearly a Posting Maven

Almost like the real table soccer!

sneekula 969 Nearly a Posting Maven

Good find Dude, I best like:
http://www.rottentomatoes.com/

sneekula 969 Nearly a Posting Maven

Maybe we need to add Pakistan to the list. They have three times as many people as Iran, and they actually have nuclear weapons. The US has also given them plenty of loose money.