Winter in New York

Today, I went to look at some accommodation. I also visited Times Square and the International Center of Photography.

Post to Twitter Tweet This Post

Posted in Internship, Photos, Travel | Leave a comment

NYC: Day One.


The League of Nations United Nations Building

Good afternoon. A quick blog to let you know that I am alive, despite what was a hellish commute to New York City. By the time I emerged from JFK airport, I resembled Homer Simpson when he runs the Springfield marathon in that episode way back years ago. Big up to customs official ‘Mendoza’ for letting me into the country. I promise to be good.

I arrived at Jade and Gabe’s awesome apartment in Long Island City, which has great views on midtown Manhatten. I can see the UN builing, Chrysler Building and Empire State from their apartment. Awesome of them to put me up for a few days!


Long Island City – the place to be!

Despite hellish jetlag, I managed to do a bit of a tour of midtown east, taking in St Paddy’s Cathedral, Trump World Building, the UN building, Chrysler Building, New York Public Library. I wandered past the Empire State but due to my annoying sense of vertigo, I dare not go up there. Its bad, even the view from Mt Cooth-tha in Brisbane freaks me out.

I’m going to have a small kip before going to check out some apartments. I have a US ‘cell’ number now, which you can see on my facebook profile if you feel you want to text me (Mum, if you’re readin this, there is no need to text me things like “hi son, I’m on a bus, love mammy” – while I’m glad you’ve finally learned how to use SMS, I do not require to know your proficiency of Brisbane public transport, though I appreciate the thought, nor do I need to be woken up by such statements, there is 15 hours difference here).

Anyway, enough of my pointless rambling, it is sleep time.

Post to Twitter Tweet This Post

Posted in Internship, Travel | 2 Comments

Preparations complete.

Unfortunately, Pebbles, I’m not sure I’ll get you through customs.

Well. Not long now. For better or for worse, I am prepared. My baggage is probably about 5-6kgs overweight so looks like I’ll have to cull. I have all the important stuff including several new Nintendo DS games and a copy of Slaughterhouse 5 to read on the plane.

..So the next ten weeks living in New York city. Methinks it will be awesome.

I’ll be flying Korean Airways direct to New York via Seoul. From there it is a transit from JFK to Jade and Gabe’s place in Long Island City.

The plan is, once sleep has been acquired, to find some permanent accommodation prior to my ten weeks of work at the United Nations, which I start on the 18th of January.
And now for something completely different…..

Homer: Now what do you have to wash that awful taste out of my mouth?
Vendor: Mountain Dew or crab juice.
Homer: Blecch! Ew! Sheesh! I’ll take a crab juice…

Post to Twitter Tweet This Post

Posted in Internship, Travel | Leave a comment

In the beginning

Welcome friends and strangers, old and new. After what seems like an eternity of preparation, I’m almost ready to leave Brisbane for New York City this coming Thursday morning. I’m flying direct to New York via Seoul, hopefully avoiding North Korea’s Taepodong missile ‘tests’. I’m doing an internship at a certain international organisation for two months, starting next week. It’s a pretty big opportunity and I’m hoping to make the most of it.

I’ll be updating this blog with various tidbits from my experiences over the next two months, and hopefully making it a small resource for other current and future interns at the United Nations. While the organisation’s internship programme has some great general information, there is a want for practical real-life experiences for those travelling from so far away to settle briefly in New York City.

Pay attention, there will be something along during the coming week. In the meantime, if you feel like procrastinating, feel free to check out my other blog : Parallel Lines on a Slow Decline.

Alternatively, you can follow me on Twitter

Or add me on Skype. Username: dbmurray

Post to Twitter Tweet This Post

Posted in Internship, Travel, University | 2 Comments

Red Alert

Hi all. DM.com is changing. I’ve removed all the previous content excepting the tech tips. The old content will be edited and moved to a new home. This web page will get a face lift sometime in 2010 and serve simply as small place on the web with some information vaguely related to myself. More….soon.

Post to Twitter Tweet This Post

Posted in General | Leave a comment

Ever wanted to retreive the label information of a textbox control in Ms Access?

Been a while since I’ve written one of these things. Truth is, I haven’t been doing much Access databases in some time. However, I’m back in the fold, writing a small Access 2007 app and reacquianting myself with its nuances and idiosynchroses. In the process, I stumbled across a small little feature that, while obvious once you think about it, is not immediately apparent to the casual user.

Often on Access forms you’ll use a textbox control. Usually, unless you delete them, the textbox control comes with an associated label control. Lets call my example “txtGenericTextBox” with a label called “lblGenericTextBoxLabel” with the string “THIS IS A LABEL” in the caption property of the label.

Now, what if you want to get certain values of that label in your VBA code? For instance, lets write the caption of the textbox label to the screen. Easy-peasy!

MsgBox Me.txtGenericTextBox.Controls(0).Caption

This will display the caption of a label associated with txtGenericTextBox. As such, you can access a host of individual attributes of the textbox’s label using similar methods.

How is this useful? Well, in my case, I’m developing some field validation for a data entry form for a beforeUpdate event. I’m looping through all the controls on a form that have the word “Required” in their TAG property. An example of similar code is shown over at DatabaseDev.co.uk (article link here).

But I want nice ‘user friendly’ error messages. I don’t want the user seeing ‘you haven’t entered proper data in the field txtGenericData’ – I want it to use the nice clean label caption which reads much better.

There may be many more easier ways to do what I’m doing, but this seems pretty straightforward. Hopefully it is of some assistance.

Post to Twitter Tweet This Post

Posted in General | Leave a comment