Borges on Poetry

I really enjoy the work of Jorge Luis Borges. If you have not heard of him, check out In Our Time - Borges. I found some audio of some wonderful lectures on poetry he gave at Harvard in the late 60s. The interesting thing about them is that he composes »

Krapp’s Last Tape

A few weeks ago I went to see Krapp’s Last Tape at the Duchess Theatre in London with some friends. I use “with” in a weak sense as as ever I was running late and had to get a jog on to arrive something like on time, just arriving as it started and pleading »

Powershell Reporting Trick

Here is a little trick I keep re-using to output csv files of data from vCenter. [powershell]$reportArray = @() foreach($cluster in get-cluster){ foreach($vm in get-vm -Location $cluster){ foreach($ds in get-DataStore -VM $vm.name){ »