Going The Wong Way I'm ALWAYS going the Wong way

Word Up

I don’t really find it too difficult that people can easily say one thing while doing another. While everyone thinks that they’re right, it seems like it’s getting easier (in this increasingly relativistic society) for people to change their mind after committing. They think that they’re right even when they go back on what they have previously said. They just rationalize away the facts.

A man is only as good as his word

This saying is often used, and it is one that has stuck with me over the years. Let’s face it, nobody appreciates someone who backpedals when the going gets tough. Neither friends, family, or employer will ever enjoy someone whose word is unreliable.

If you find that you’re in an untenable position because you overextended, perhaps you should have thought about it before you extended. When you are out there, you have to deal with the consequences. Next time remember to calculate the cost before giving your word. You just might be a better man (or woman, obviously) for it.

It seems like it is time to man up.

Talking To Strangers

It’s rather obvious that there isn’t anyone in the world that knows all of the other people in the world. It is therefore logical to conclude that each person will encounter strangers. Some people are good at talking to and interacting with them while others are completely unable to do it. Whether it is in line at the grocery store, waiting at the post office, going to a friend’s party (where there are some people that you know and some that you don’t), or sitting at a wedding banquet, it’s pretty easy to see how you handle strangers.

And I find it rather strange that sometimes it’s actually easier to talk to strangers than it is to talk to people that you already know, especially those that you have not interacted with in awhile, and it’s especially true for those that you only know superficially. With people that you knew before, it seems like it gets awkward after the initial greeting whereas (depending on the strangers) it can be much more enjoyable to find out about a person from the start as the conversation continues.

In my case, I often hope not to have to talk to people that I know superficially previously, especially in situations that will span a considerable time (like the aforementioned wedding banquet scenario). It is worlds less awkward to talk to strangers.

Although if the stranger is out to rob, punch, or otherwise do harm to me I reserve the right to prefer a person that I know superficially. And if the stranger is dull and uninteresting, then I also reserve the right to hate talking to the stranger.

Understanding Domains

If I could have your attention, I would rather like to quickly rant about something that I see all of the time.

  1. People pay for their own domain name
  2. Those same people want to get e-mail
  3. Those people proceed to register an e-mail address with some free webmail (e.g., Yahoo!, Google, etc)

Why does require a rant? Because they paid for their own domain! Instead of having to register [email protected], they could very well just decide that they want to get [email protected]. Doesn’t that seem more appealing? Isn’t that more professional and more enjoyable? Yes, yes I think that we can all agree to that.

The only argument that I can think of is that people want to be able to use the webmail clients to access their e-mail. I hear ya. But maybe more importantly, Google hears ya. I don’t want to be a Google salesman, but their standard edition of Google Apps is pretty free. And that will pretty much take care of you.

Together, we can combat annoying-to-remember e-mail addresses. We can do it!

Don't Say Yes

Why is “no.” short for the word number?

Interesting Dates Rule

I date to get married.

# Marriage_Dating.py
#
# A better way of dating with the purpose of getting married
#
    
too_long = 730 # days, which is 2 years

while you.engaged == False:
    # What state are you in?
    if you.dating == False:
        days_dating = 0
        if you.find('PERSON')
            you.dating = True
            other_person = person_of_opposite_sex()
    else:
        days_dating += 1

    # Date day, hooray!
    if you.have('DATE'):

        # Here's the juice
        if dating.purpose == 'MARRIAGE':
            result = you.go('DATE', 'INTERESTING', other_person)
            if days_dating >= too_long:
                you.dating = False
        else:
            result = you.go('DATE', 'BORING', other_person)

        # Process the result of the date
        if result == 'WELL':
            pass # Just keep on going on those dates!
        elif result == 'ENGAGED':
            you.engaged = True
        else:
            you.dating = False

    # Every other day of your (obviously) interesting life
    else:
        you.go('WORK')
        you.go('HOME')


you.go('WEDDING')
other_person.go('WEDDING')
you.married = True

other_person.married = True
you.celebrate()
other_person.celebrate()

README

Here’s some help for understanding this snippet of Python programming code. While you are unmarried, you are either dating someone or you are not. If you’re not dating and happen to find someone that you want to date, then lucky you! The next categorization is you are either actively pursuing marriage or you are not. If you are, I think that you should want to go on interesting dates.

Life isn’t dinner and a movie. Life is crazy and uncertain. It’s hard and difficult. Don’t you want to see how the person that you might spend the rest of your life with reacts? When they’re fording a river, do they get angry and upset with you? When you’re lost in the wilderness, do they get upset and frustrated? When you get frustrated with them, do they snap back? Find the worst in the person. Look for it as hard as you possibly can. Because if you can handle the worst, then you can definitely handle the best.

If you aren’t as actively pursuing marriage then enjoy your dinner and movie.

And if you’re not dating then good luck with being on your own and all of the issues entailed in CT’s The Case For Early Marriage.