Skip to main content

Good Morning, USA!

A couple of days sleep does wonderful things for you. I woke up this morning feeling great. My luggage and I now co-exist at (approximately) the same part of space-time, which means I have clothes, toiletries and my ukulele - yay!

I had a great conversation with the housekeeping attendant, Alberto - my Spanish was better than his English, which is really sad, because my Spanish is pretty much completely non-existent. Still, it's nice to see that people really just relate to each other, no matter that they can't understand the higher concepts. We talked about music and children and the complexities of English. And he gave me lots of free coffee.

Maybe it's just too much coffee and years of childhood TV, but today I'm filled with this weird patriotic exuberance. Despite the bureaucracy, and the many strange things that I've encountered in America, (like injectable chicken marinade, and 3 pound bags of beef jerky for instance), I'm proud to be an American today. It just seems like anything is possible.

Only in America can you find "Injectable Butt' - Complete with Syringe...


In actual fact, what will probably happen is that I'll read up on the new sharepoint stuff, play some DS, watch the world cup (if I can figure out which of the 85 channels it will be on), and then head out to Kris and Mel's for what I think is supposed to be called a cookout, but when you have more Aussies than Americans, I think you can still call it a barbie. Even if there's no sausages (no, really...)

Oh and I saw fireflies last night! They are really cool. I can't wait till my kids get over here, because then I'll have an excuse to go and catch them..

Comments

Popular posts from this blog

Easter at Blackhead

Camping out on the headland, miles from anywhere. Big swell, off-shore winds, clear crisp nights and smoke from the wood fire. Sometimes it's so rewarding to get out from under the pressure of your life and just be a family of humans.

How to rename an XML Node in C#

This was driving me crazy - here's an easy cut and paste solution to not being able to use the DOM to rename a node for lazy developers like me: public static XmlNode RenameNode (XmlNode node, string namespaceURI,string qualifiedName) { if (node.NodeType == XmlNodeType.Element) { XmlElement oldElement = (XmlElement) node; XmlElement newElement = node.OwnerDocument.CreateElement(qualifiedName, namespaceURI); while (oldElement.HasAttributes) { newElement.SetAttributeNode(oldElement.RemoveAttributeNode(oldElement.Attributes[0])); } while (oldElement.HasChildNodes) { newElement.AppendChild(oldElement.FirstChild); } if (oldElement.ParentNode != null) { oldElement.ParentNode.ReplaceChild(newElement, oldElement); } return newElement; } else { return null; } ...

Democracy in Action...

I have to vote in the US Senate Election Tomorrow. Okay, I don't have to vote, but being an Australian American, voting is something we do. Australia has compulsory voting, which I am overwhelmingly supportive of. People often assume that the point of compulsory voting is to somehow educate people about politics - to force them to have an opinion. The reality has nothing to do with voters, and everything to do with ensuring good governance - By forcing politicians to care about every voter, rather than just the ones who can be bothered to go down to the poll both and vote, it means that politicians are consequently forced to address the needs of all the citizens in the country. Under a non compulsory voting system, it's mainly the wealthy and educated who vote. I was a little shocked to find out that part of the aim of the campaign advertisements that have been confusing me for the last month on TV is not to encourage voters to vote for one candidate or another, but to discou...