<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-31847281</id><updated>2011-07-28T17:11:14.991-07:00</updated><category term='CodeJam'/><category term='TCO'/><category term='..'/><category term='SIGGRAPH2006'/><category term='TCCC'/><title type='text'>Entropy always increases</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>76</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-31847281.post-4718358161958786469</id><published>2011-05-14T07:47:00.000-07:00</published><updated>2011-05-14T08:59:36.713-07:00</updated><title type='text'>The myth of "up" and "down" in computer graphics</title><content type='html'>Today is another of my rare technical rants, er, blog posts. It's a topic that I struggled with a number of years ago until I understood how to think about it properly, and which I still see people struggling with regularly.&lt;br /&gt;&lt;br /&gt;The OpenGL coordinate system causes a lot of confusion because it uses a "bottom-left" origin, which is seen as "upside-down" relative to other coordinate systems typically used in window systems. This leads to people putting in lots of extra code to "flip images over" to make them right, often in the wrong part of a pipeline and requiring further reflections elsewhere to correct for it; as well as mis-guided requests for features in various APIs.&lt;br /&gt;&lt;br /&gt;The way to stop your brain hurting is to stop labelling things as "up" or "down". Up and down are functions of an eyeball, and so it can only be directly applied to things that you see on a screen. Windows on a screen are visible, and this is the one place where OpenGL really is a bottom-up coordinate system. However, textures are &lt;span style="font-weight: bold;"&gt;not&lt;/span&gt; directly visible on the screen, either for normal sampling or for render-to-texture, so the use of up and down in the specification is purely a convenience for describing the behaviour. When uploading a texture, the first texel that is provided has texel coordinates (0, 0), and when this texture is treated as a rendertarget, that same texel has window coordinates (0, 0). This is true in both OpenGL and in Direct3D - there's no need to make any changes.&lt;br /&gt;&lt;br /&gt;Things get more complicated at interface boundaries with other formats that do specify an up and a down. For example, PNG files do not have a standard coordinate system, but they do have a well-defined top and a bottom. So if a PNG file is used as a texture, where should the coordinate system origin be placed? That's not obvious, and needs to be consistent for an entire toolchain e.g. if your 3D modelling package shows you previews in which texture coordinates of (0, 0) map to the bottom-left of your image, then you should probably do the same thing in an application that consumes those models. Note that not all image file formats work the same way: formats created specifically for use with textures (e.g. &lt;a href="http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/"&gt;KTX&lt;/a&gt;) may specify an origin rather than an up/down orientation (KTX also has an optional hint to tell viewer/editor applications how to display the image). The asset format may also provide a convention e.g. COLLADA explicitly indicates that (0, 0) corresponds to the lower-left corner of a texture image.&lt;br /&gt;&lt;br /&gt;So, to summarize:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Avoid using the terms "up" and "down" where they are not absolutely necessary. They'll just confuse you.&lt;/li&gt;&lt;li&gt;Correct applications never flip images "upside-down" - they just sometimes have to re-arrange pixels in memory to conform to an interface. An upside-down image is a bug.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;When defining interfaces between systems which have a defined "up" and "down" (e.g. a PNG file) and systems which have a defined coordinate system (e.g. OpenGL textures), make sure you know what the correspondence is (using precedent set by thirdparty tools or file formats where possible), then stick it to throughout your toolchain.&lt;/li&gt;&lt;/ul&gt;Hopefully this will reduce the amount of confusion in the world.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4718358161958786469?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4718358161958786469/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4718358161958786469' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4718358161958786469'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4718358161958786469'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2011/05/myth-of-up-and-down-in-computer.html' title='The myth of &quot;up&quot; and &quot;down&quot; in computer graphics'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-5575269013873713775</id><published>2011-03-27T12:57:00.000-07:00</published><updated>2011-03-27T13:07:10.631-07:00</updated><title type='text'>Going home!</title><content type='html'>Yes, after 3 years of cold, cloud, not quite so cold, travel, cloud, work, pub lunches, bad pizza, more cloud, rain, snow, more cloud, more work, more travel etc etc, I'M GOING HOME! That's right - as of 5 May, I'll be back in the Mother City, back to my old haunts with my old friends and enjoying and missing my Cambridge friends, instead of the other way around.&lt;br /&gt;&lt;br /&gt;I'll be doing a post-doc in the computer science department at UCT. When people ask me exactly what it is I'm going to do I find it hard to explain (possibly because I don't precisely know yet myself), but you can read the job advert &lt;a href="http://www.cs.uct.ac.za/news-and-events/2011/postdoctoral-fellowship-in-gpu-computing-and-computer-graphics"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I've decided that nanny states are a real pain. Time was, people just made sure they had something put away for when they couldn't work any more. Now governments have very complicated rules by which you get a tax break if you put money into a pension scheme which you then can't withdraw from and can only spend in certain ways, and it creates a huge amount of red tape. Frankly dealing with red tape is the most stressful part about moving back - the actual moving is stressful but a doddle by comparison.&lt;br /&gt;&lt;br /&gt;Anyway, if you're friend/acquaintance in the UK and want to see me before I leave, get in touch; and if you're a Cape Town friend/acquaintance I'll see you soon!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-5575269013873713775?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/5575269013873713775/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=5575269013873713775' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5575269013873713775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5575269013873713775'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2011/03/going-home.html' title='Going home!'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-7171185584234903086</id><published>2010-09-25T16:09:00.000-07:00</published><updated>2010-09-25T16:12:51.525-07:00</updated><title type='text'>Bored in Vegas</title><content type='html'>As usual, my advice on Vegas is, don't bother. This trip, I've gotten sick (something flu-like), been fed far too much, sucked in a lot of signature smoke, been too hot outside and too cold inside, and now my flight home is indefinitely delayed due to mechanical problems (I'm now in the airport).&lt;br /&gt;&lt;br /&gt;Unfortunately, I'm coming back in 2 weeks for the TopCoder Open. Oh well.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-7171185584234903086?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/7171185584234903086/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=7171185584234903086' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7171185584234903086'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7171185584234903086'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2010/09/bored-in-vegas.html' title='Bored in Vegas'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-8834481424155718517</id><published>2010-09-05T08:16:00.001-07:00</published><updated>2010-09-05T09:22:43.803-07:00</updated><title type='text'>Visualising sorting algorithms</title><content type='html'>This is another one of my rare technical posts, as opposed to news of which countries I've been visiting.&lt;br /&gt;&lt;br /&gt;If you're in computer science, you've probably seen an animation of sorting algorithms, maybe &lt;a href="http://www.youtube.com/watch?v=t8g-iYGHpEA"&gt;heard&lt;/a&gt; a rendition, or seen a &lt;a href="http://sortvis.org/index.html"&gt;visual&lt;/a&gt; representation. I have, somewhat by accident, discovered a different way to visualise a sorting algorithm: plot points for memory accesses, with address on the X axis and time (counted by accesses) on the Y axis, and different colours for reads and writes. It produces some rather pretty pictures. Note that these are not to scale relative to each other - the Y axis has been compressed to fit the entire sort into a fixed height.&lt;br /&gt;&lt;br /&gt;Ye olde bubblesort. Some of the patterns are an optical illusion due to aliasing, but the green spikes are a feature of the algorithm.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HsJN6XIoLiw/TIPAbGigsKI/AAAAAAAAAIU/SQV43G6LWNI/s1600/bubble_sort.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://2.bp.blogspot.com/_HsJN6XIoLiw/TIPAbGigsKI/AAAAAAAAAIU/SQV43G6LWNI/s320/bubble_sort.png" alt="" id="BLOGGER_PHOTO_ID_5513461940675981474" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Insertion sort - the version optimized for mostly sorted content. Although the data is random, you can see that in many cases it reduces the search distance.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HsJN6XIoLiw/TIPAbnrxGXI/AAAAAAAAAIk/K3kKb8le_HA/s1600/insertion_sort.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://1.bp.blogspot.com/_HsJN6XIoLiw/TIPAbnrxGXI/AAAAAAAAAIk/K3kKb8le_HA/s320/insertion_sort.png" alt="" id="BLOGGER_PHOTO_ID_5513461949573175666" border="0" /&gt;&lt;/a&gt;Shellsort, clearly showing the phases.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_HsJN6XIoLiw/TIPAbzsSjwI/AAAAAAAAAIs/qAmBdqzMLh8/s1600/shell_sort.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://3.bp.blogspot.com/_HsJN6XIoLiw/TIPAbzsSjwI/AAAAAAAAAIs/qAmBdqzMLh8/s320/shell_sort.png" alt="" id="BLOGGER_PHOTO_ID_5513461952796593922" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Selection sort:&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_HsJN6XIoLiw/TIPAbYfIMyI/AAAAAAAAAIc/H8fRGwOhOBc/s1600/selection_sort.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://3.bp.blogspot.com/_HsJN6XIoLiw/TIPAbYfIMyI/AAAAAAAAAIc/H8fRGwOhOBc/s320/selection_sort.png" alt="" id="BLOGGER_PHOTO_ID_5513461945493631778" border="0" /&gt;&lt;/a&gt;Heapsort: the solid lines at the top are the heap-building phase, while the rest shows the extraction. Note the very slight slope to the bottom-right line: as the heap gets smaller, the heap extraction gets faster, but only as O(log N).&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HsJN6XIoLiw/TIPAdM7_EZI/AAAAAAAAAI0/CJfDQV0QROQ/s1600/heap_sort.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://1.bp.blogspot.com/_HsJN6XIoLiw/TIPAdM7_EZI/AAAAAAAAAI0/CJfDQV0QROQ/s320/heap_sort.png" alt="" id="BLOGGER_PHOTO_ID_5513461976753181074" border="0" /&gt;&lt;/a&gt;Divide-and-conquer algorithms have a pretty fractal nature. This is quicksort - the perturbations in the fractal indicate the random selection of pivots (it just picks the middle, rather than median-of-3).&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HsJN6XIoLiw/TIPB5VMBgYI/AAAAAAAAAI8/G9LCfAXqhqc/s1600/quick_sort.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://4.bp.blogspot.com/_HsJN6XIoLiw/TIPB5VMBgYI/AAAAAAAAAI8/G9LCfAXqhqc/s320/quick_sort.png" alt="" id="BLOGGER_PHOTO_ID_5513463559515898242" border="0" /&gt;&lt;/a&gt; Mergesort: this diagram is twice as wide as the others because it uses temporary storage on the right.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HsJN6XIoLiw/TIPB5pXF_qI/AAAAAAAAAJE/rUncctSP59E/s1600/merge_sort.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://1.bp.blogspot.com/_HsJN6XIoLiw/TIPB5pXF_qI/AAAAAAAAAJE/rUncctSP59E/s320/merge_sort.png" alt="" id="BLOGGER_PHOTO_ID_5513463564931038882" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HsJN6XIoLiw/TIPB5VMBgYI/AAAAAAAAAI8/G9LCfAXqhqc/s1600/quick_sort.png"&gt;&lt;br /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HsJN6XIoLiw/TIPB5pXF_qI/AAAAAAAAAJE/rUncctSP59E/s1600/merge_sort.png"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-8834481424155718517?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/8834481424155718517/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=8834481424155718517' title='17 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8834481424155718517'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8834481424155718517'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2010/09/visualising-sorting-algorithms.html' title='Visualising sorting algorithms'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_HsJN6XIoLiw/TIPAbGigsKI/AAAAAAAAAIU/SQV43G6LWNI/s72-c/bubble_sort.png' height='72' width='72'/><thr:total>17</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-239203810032653447</id><published>2010-05-03T06:11:00.000-07:00</published><updated>2010-05-03T06:14:51.874-07:00</updated><title type='text'>Budapest (again)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HsJN6XIoLiw/S97L5Ub4wTI/AAAAAAAAAIM/5pwATIXTd50/s1600/20100502-154331.jpg"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://2.bp.blogspot.com/_HsJN6XIoLiw/S97L5Ub4wTI/AAAAAAAAAIM/5pwATIXTd50/s320/20100502-154331.jpg" alt="" id="BLOGGER_PHOTO_ID_5467031183273017650" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Yes, it's blog time again! Once again, it was the 24-hour Challenge in Budapest.&lt;br /&gt;&lt;br /&gt;Like last year, there were some very interesting and tough problems. This year they did a much better job of implementation, and there were far fewer issues with things crashing and so it was more enjoyable. Unfortunately we didn't do as well as last year, but we still managed to come 5th.&lt;br /&gt;&lt;br /&gt;After the contest, we finally got our cruise on the Danube. This time we came better prepared with info on where to catch the tourist boats. It turns out we were just looking in the wrong area, and if you go to the right place there are scores of them.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-239203810032653447?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/239203810032653447/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=239203810032653447' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/239203810032653447'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/239203810032653447'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2010/05/budapest-again.html' title='Budapest (again)'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_HsJN6XIoLiw/S97L5Ub4wTI/AAAAAAAAAIM/5pwATIXTd50/s72-c/20100502-154331.jpg' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-7709343443478381365</id><published>2010-04-16T07:34:00.000-07:00</published><updated>2010-04-16T07:37:58.563-07:00</updated><title type='text'>IT Challenge over</title><content type='html'>It ran smoothly, so not much to report. Stellenbosch won, UKZN came second and UCT third. Now I get a week of holiday in Cape Town; too bad half my friends have moved to other places.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-7709343443478381365?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/7709343443478381365/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=7709343443478381365' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7709343443478381365'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7709343443478381365'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2010/04/it-challenge-over.html' title='IT Challenge over'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4201808580955665459</id><published>2010-04-10T15:53:00.000-07:00</published><updated>2010-04-10T15:57:47.542-07:00</updated><title type='text'>IT Challenge 2010</title><content type='html'>I'm off to South Africa next week to help run the finals of the &lt;a href="http://graduate.standardbank.com/it_challenge.html"&gt;Standard Bank IT Challenge&lt;/a&gt;. This is a contest for teams of 4 university students. We've already run the heats to select one team from each of 9 universities; on Thursday the teams will meet at Standard Bank headquarters to do the final.&lt;br /&gt;&lt;br /&gt;It's been some crazy hard work (including just about every free moment for the last week or two), but it should be a really great contest. We're hoping to have live standings during the contest (although we'll stop them an hour before the end) at &lt;a href="http://sbitc2010.dyndns.org/"&gt;http://sbitc2010.dyndns.org/&lt;/a&gt; (yes, that link won't work right now, and probably won't after the contest either).&lt;br /&gt;&lt;br /&gt;After that it's off to Cape Town for a week of hard-earned relaxation.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4201808580955665459?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4201808580955665459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4201808580955665459' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4201808580955665459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4201808580955665459'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2010/04/it-challenge-2010.html' title='IT Challenge 2010'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-6143131814612603812</id><published>2009-11-18T12:07:00.000-08:00</published><updated>2009-11-18T12:32:47.680-08:00</updated><title type='text'>All Jammed up</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HsJN6XIoLiw/SwRYlH_GvQI/AAAAAAAAAHo/UwDt-iEG0q8/s1600/20091113-184737.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_HsJN6XIoLiw/SwRYlH_GvQI/AAAAAAAAAHo/UwDt-iEG0q8/s320/20091113-184737.jpg" alt="" id="BLOGGER_PHOTO_ID_5405542847573572866" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HsJN6XIoLiw/SwRXZx_Y9nI/AAAAAAAAAHQ/S2sfwZ7lMLM/s1600/20091113-184926.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://2.bp.blogspot.com/_HsJN6XIoLiw/SwRXZx_Y9nI/AAAAAAAAAHQ/S2sfwZ7lMLM/s320/20091113-184926.jpg" alt="" id="BLOGGER_PHOTO_ID_5405541553178998386" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HsJN6XIoLiw/SwRYunJ3mrI/AAAAAAAAAHw/d6qcQBQscCI/s1600/20091114-015219.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://4.bp.blogspot.com/_HsJN6XIoLiw/SwRYunJ3mrI/AAAAAAAAAHw/d6qcQBQscCI/s320/20091114-015219.jpg" alt="" id="BLOGGER_PHOTO_ID_5405543010559040178" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HsJN6XIoLiw/SwRZLzcrfTI/AAAAAAAAAH4/5mcKLPWDV5o/s1600/20091114-023649.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_HsJN6XIoLiw/SwRZLzcrfTI/AAAAAAAAAH4/5mcKLPWDV5o/s320/20091114-023649.jpg" alt="" id="BLOGGER_PHOTO_ID_5405543512075369778" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HsJN6XIoLiw/SwRZY0Y6DMI/AAAAAAAAAIA/aCT9vvvW_sI/s1600/20091115-002440.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://4.bp.blogspot.com/_HsJN6XIoLiw/SwRZY0Y6DMI/AAAAAAAAAIA/aCT9vvvW_sI/s320/20091115-002440.jpg" alt="" id="BLOGGER_PHOTO_ID_5405543735666281666" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Following my usual trend of only blogging when I travel and have some pictures I need to post, here's some photos from my last trip to the Googleplex for Google Code Jam. I was somewhat off form, but still managed to make 10th. If you want to see some seriously scary problems, take a look at &lt;a href="http://code.google.com/codejam/contest/dashboard?c=311101#"&gt;the site&lt;/a&gt;. There is also an article about it &lt;a href="http://googleblog.blogspot.com/2009/11/and-google-code-jam-2009-champion-is.html"&gt;here&lt;/a&gt;, including a video showing some of my ugly mug.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-6143131814612603812?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/6143131814612603812/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=6143131814612603812' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6143131814612603812'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6143131814612603812'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2009/11/all-jammed-up.html' title='All Jammed up'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HsJN6XIoLiw/SwRYlH_GvQI/AAAAAAAAAHo/UwDt-iEG0q8/s72-c/20091113-184737.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4919216698894643066</id><published>2009-08-16T12:25:00.000-07:00</published><updated>2009-08-16T12:32:42.652-07:00</updated><title type='text'>Photos from Bulgaria</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HsJN6XIoLiw/SoheyQOWATI/AAAAAAAAAGk/8kJpBsvjSQE/s1600-h/img_0401.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 240px; height: 320px;" src="http://2.bp.blogspot.com/_HsJN6XIoLiw/SoheyQOWATI/AAAAAAAAAGk/8kJpBsvjSQE/s320/img_0401.jpg" alt="" id="BLOGGER_PHOTO_ID_5370646773080916274" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_HsJN6XIoLiw/SoheekUe3wI/AAAAAAAAAGc/8SFqW5zGf40/s1600-h/img_0406.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://3.bp.blogspot.com/_HsJN6XIoLiw/SoheekUe3wI/AAAAAAAAAGc/8SFqW5zGf40/s320/img_0406.jpg" alt="" id="BLOGGER_PHOTO_ID_5370646434877988610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HsJN6XIoLiw/SoheLrDBz2I/AAAAAAAAAGU/ZwHGBF4YMZI/s1600-h/img_0397.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://2.bp.blogspot.com/_HsJN6XIoLiw/SoheLrDBz2I/AAAAAAAAAGU/ZwHGBF4YMZI/s320/img_0397.jpg" alt="" id="BLOGGER_PHOTO_ID_5370646110266314594" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HsJN6XIoLiw/SoheAXEgvVI/AAAAAAAAAGM/e_1RnMAeHG8/s1600-h/img_0394.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://4.bp.blogspot.com/_HsJN6XIoLiw/SoheAXEgvVI/AAAAAAAAAGM/e_1RnMAeHG8/s320/img_0394.jpg" alt="" id="BLOGGER_PHOTO_ID_5370645915925265746" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HsJN6XIoLiw/Sohd1C2qamI/AAAAAAAAAGE/hrDapM_EfS0/s1600-h/img_0393.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_HsJN6XIoLiw/Sohd1C2qamI/AAAAAAAAAGE/hrDapM_EfS0/s320/img_0393.jpg" alt="" id="BLOGGER_PHOTO_ID_5370645721519909474" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I'm back in England. The contest was great fun and I'm going to miss the Bulgarian warmth and sunshine.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4919216698894643066?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4919216698894643066/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4919216698894643066' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4919216698894643066'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4919216698894643066'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2009/08/photos-from-bulgaria.html' title='Photos from Bulgaria'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_HsJN6XIoLiw/SoheyQOWATI/AAAAAAAAAGk/8kJpBsvjSQE/s72-c/img_0401.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-8902595681009835797</id><published>2009-08-12T03:49:00.000-07:00</published><updated>2009-08-12T03:56:06.744-07:00</updated><title type='text'>How not to be seen</title><content type='html'>Don't turn up.&lt;br /&gt;&lt;br /&gt;That seems to be the view of most of the people I've talked to about the IOI planned excursion to the Black Sea. It apparently involves 4-6 hours on a bus. Each way. Not including the time you spend waiting around at the beginning until everyone gets on the bus. And leaving at 6am. When the time comes, I for one won't be found wanting. I won't be found at all, since I will be sleeping the sleep of the just, or possible just very tired.&lt;br /&gt;&lt;br /&gt;Apart from the attempt to inflict long periods of time on buses (which in my case normally consists of periods of boredom interspersed by vomiting), things have been going pretty well here - in fact far smoother than usual. The SA team also did pretty respectably on the first day, and the second day is finishing in a few minutes. I haven't been on any of the excursions so far (being on the scientific committee seems to involve lots of work, but it's all been fun), but I plan to take myself off to the old town tomorrow (hopefully with some other leaders to make it more fun).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-8902595681009835797?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/8902595681009835797/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=8902595681009835797' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8902595681009835797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8902595681009835797'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2009/08/how-not-to-be-seen.html' title='How not to be seen'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-3747069332942974646</id><published>2009-08-08T10:19:00.000-07:00</published><updated>2009-08-08T10:20:54.420-07:00</updated><title type='text'>Bulgaria, land of enormous hotel rooms</title><content type='html'>It's blog time again! As usual, it's because I'm travelling - this time to IOI again, in Bulgaria. Haven't been here long, but so far I've been blown away by the size of the hotel room. More news when I've actually been out and about more.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-3747069332942974646?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/3747069332942974646/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=3747069332942974646' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3747069332942974646'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3747069332942974646'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2009/08/bulgaria-land-of-enormous-hotel-rooms.html' title='Bulgaria, land of enormous hotel rooms'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-8472144970009541528</id><published>2009-06-24T11:38:00.001-07:00</published><updated>2009-06-24T11:43:11.568-07:00</updated><title type='text'>Fording the... ox?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HsJN6XIoLiw/SkJztIvEeOI/AAAAAAAAAF8/QgpA56Vhyvc/s1600-h/dsc02188.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_HsJN6XIoLiw/SkJztIvEeOI/AAAAAAAAAF8/QgpA56Vhyvc/s320/dsc02188.jpg" alt="" id="BLOGGER_PHOTO_ID_5350966526545787106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HsJN6XIoLiw/SkJzs7RFoLI/AAAAAAAAAF0/Wmp5aGjonns/s1600-h/dsc02185.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 240px; height: 320px;" src="http://1.bp.blogspot.com/_HsJN6XIoLiw/SkJzs7RFoLI/AAAAAAAAAF0/Wmp5aGjonns/s320/dsc02185.jpg" alt="" id="BLOGGER_PHOTO_ID_5350966522930372786" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;So, now that Tim is living in Oxford, I had a sufficiently good excuse to go and visit, and so I did so last weekend. The weather was rubbish, the company was good, and the town is quite pretty, in a more spread-out way than Cambridge. We went to see the science museum (which had lots of surveying stuff), and otherwise just wandered around the place. Um, not sure what else to add to that really.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-8472144970009541528?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/8472144970009541528/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=8472144970009541528' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8472144970009541528'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8472144970009541528'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2009/06/fording-ox.html' title='Fording the... ox?'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HsJN6XIoLiw/SkJztIvEeOI/AAAAAAAAAF8/QgpA56Vhyvc/s72-c/dsc02188.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-1887354357004155747</id><published>2009-05-04T00:33:00.000-07:00</published><updated>2009-05-04T00:36:47.019-07:00</updated><title type='text'>We came second!</title><content type='html'>I don't have photos to post yet, but there are more details and pictures at &lt;a href="http://www.challenge24.org/2009/blog"&gt;http://www.challenge24.org/2009/blog&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-1887354357004155747?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/1887354357004155747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=1887354357004155747' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1887354357004155747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1887354357004155747'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2009/05/we-came-second.html' title='We came second!'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-2534750861744986535</id><published>2009-05-03T02:43:00.000-07:00</published><updated>2009-05-03T02:48:18.954-07:00</updated><title type='text'>And the contest was... was... I still don't know!</title><content type='html'>There were technical problems (a fair number of them) during the contest, so the closing ceremony is only at 12. And since the scoreboard was one of the casualties, we still don't know how we did. But talking to one or two other teams, it sounds like we did reasonably well. Details to follow.&lt;br /&gt;&lt;br /&gt;Also, I have now been awake well over 24 hours, with more to come. If you feel yourself going a bit squiggly and turning into a 6-foot chicken, do not be alarmed - I am merely hallucinating.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-2534750861744986535?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/2534750861744986535/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=2534750861744986535' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/2534750861744986535'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/2534750861744986535'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2009/05/and-contest-was-was-i-still-dont-know.html' title='And the contest was... was... I still don&apos;t know!'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-7553946000649168335</id><published>2009-05-01T08:06:00.000-07:00</published><updated>2009-05-01T08:09:39.125-07:00</updated><title type='text'>Hungry in Hungary</title><content type='html'>I'm sitting in Budapest, in preparation for a &lt;a href="http://www.challenge24.org/"&gt;24-hour programming contest&lt;/a&gt;. And lunch on the plane was a small ham sandwich, so I'm feeling peckish. Um, I don't really have much to add to that for the moment - more news once we've actually done the contest and done some touristy stuff. Tonight we're just going to crash and get a good night's sleep.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-7553946000649168335?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/7553946000649168335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=7553946000649168335' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7553946000649168335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7553946000649168335'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2009/05/hungry-in-hungary.html' title='Hungry in Hungary'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4983746101486317746</id><published>2009-02-03T08:34:00.000-08:00</published><updated>2009-02-03T08:40:45.456-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='..'/><title type='text'>Don't let it snow...</title><content type='html'>... I want my flight to leave on time. So yes, life has been exciting, since yesterday England suffered about 10cm of snow, which apparently is the most in almost 20 years. So needless to say, they're totally unequipped for it, and large parts of the transport network including Heathrow ground to a halt. Fortunately, today had no snow that I've noticed and bright (if anemic) sunshine, so it looks like I'll be catching my flight in spite of the 3.5-hour journey from my house to Heathrow (normally it would be around 2.5).&lt;br /&gt;&lt;br /&gt;This seems like it's going to be the things-falling-apart trip. Apart from the transport system, I opened my suitcase up to put my warm things in it just before checkin, and when I came to lock it up again I found that my lock had turned into a collection of bits on the floor. All very educational, but not much fun right before flying into Joburg airport which is notorious for baggage theft. So, any luggage thieves reading this: &lt;span style="font-weight: bold;"&gt;there is nothing valuable in my luggage.&lt;/span&gt; I promise. Don't bother.&lt;br /&gt;&lt;br /&gt;Then after that, my watch started falling apart as I was checking in. Fortunately the pin didn't fall out and I was able to stick it back together.&lt;br /&gt;&lt;br /&gt;Let's hope nothing else falls apart, like the plane, or my presentation on Friday.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4983746101486317746?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4983746101486317746/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4983746101486317746' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4983746101486317746'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4983746101486317746'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2009/02/dont-let-it-snow.html' title='Don&apos;t let it snow...'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-6981675749852912490</id><published>2009-01-26T12:18:00.001-08:00</published><updated>2009-01-26T12:23:24.075-08:00</updated><title type='text'>The smallest park in the world</title><content type='html'>I've just got back from Portland, Oregon, from a business trip. I knew absolutely nothing about it before leaving, and I started with assumption of a typical American sprawl with end-to-end freeways and strip-malls. In fact the central part where I was a very pleasant surprise - good sidewalks, very short blocks, a river with a nice green bit next to it to walk along, etc.&lt;br /&gt;&lt;br /&gt;It also features the smallest park in the world (Mill Ends park), which I thought was suitably amusing:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HsJN6XIoLiw/SX4bJTPyuQI/AAAAAAAAAFs/okbFOFR9z1k/s1600-h/mill-ends.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://4.bp.blogspot.com/_HsJN6XIoLiw/SX4bJTPyuQI/AAAAAAAAAFs/okbFOFR9z1k/s320/mill-ends.jpg" alt="" id="BLOGGER_PHOTO_ID_5295700058433566978" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I only had one morning of free time (the rest of it being spent in the hotel eating too much food and trying not to get sucked into pointless arguments). Apart from the park, I went to Powell's book store, which is as large as the park is small. Just the SF/F section was about the size of a small public library, and I discovered a lot of books I'd never heard of, and bought a few for an insanely low price.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-6981675749852912490?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/6981675749852912490/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=6981675749852912490' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6981675749852912490'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6981675749852912490'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2009/01/smallest-park-in-world.html' title='The smallest park in the world'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_HsJN6XIoLiw/SX4bJTPyuQI/AAAAAAAAAFs/okbFOFR9z1k/s72-c/mill-ends.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-6975274061599031757</id><published>2008-12-28T01:51:00.000-08:00</published><updated>2008-12-28T01:57:01.422-08:00</updated><title type='text'>It burns us!</title><content type='html'>For those of you who don't already know, I've spent the last 11 days or so in Cape Town. The first morning I walked outside, squinted, and went "Ah, so that's what sunlight looks like." It made me realise just how sun-starved I've been in the UK winter.&lt;br /&gt;&lt;br /&gt;It's been a great time here, and I've been out or seen people almost every day. Sadly, tonight I return to the land of clouds, roundabouts, pubs and 700-year old architecture.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-6975274061599031757?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/6975274061599031757/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=6975274061599031757' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6975274061599031757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6975274061599031757'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/12/it-burns-us.html' title='It burns us!'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-6515616935893384393</id><published>2008-11-16T09:43:00.000-08:00</published><updated>2008-11-16T10:04:19.403-08:00</updated><title type='text'>Code Jam (like raspberry jam, but better)</title><content type='html'>Normally I blog about my trips while I'm on them (to kill time in airports), but this one was so short I didn't even both taking a laptop. In fact, I didn't even bother taking checked baggage, instead fitting everything for two days into a backpack. That sounds reasonably enough until you realise that it includes a keyboard and sufficient warm weather gear to stand around waiting for a bus in Cambridge. On the way back I think the backpack was about 99% of its theoretical maximum capacity.&lt;br /&gt;&lt;br /&gt;The &lt;a href="http://code.google.com/codejam"&gt;Code Jam&lt;/a&gt; itself is a contest run by Google. I've been to a previous one that ran on the TopCoder engine, but this time they've made a new format which really suits me. It's a lot less time-pressured than TC, and also more forgiving of mistakes. Having won my regional and finished in the top 3 in every round, I thought my chances were pretty good, but unfortunately I panicked near the end (partially because I forgot the contest started late and so I had more time than I thought), and so ended up third. Nevertheless I'm fairly happy since I didn't screw anything else up.&lt;br /&gt;&lt;br /&gt;Pictures to follow - unfortunately not many or very exciting, since I didn't take my camera to the Googleplex on the assumption that they wouldn't allow photography (and indeed they didn't allow it inside the buildings).&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HsJN6XIoLiw/SSBf-QvWsQI/AAAAAAAAAFk/oVZz_dcz9CU/s1600-h/img_0316.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://2.bp.blogspot.com/_HsJN6XIoLiw/SSBf-QvWsQI/AAAAAAAAAFk/oVZz_dcz9CU/s320/img_0316.jpg" alt="" id="BLOGGER_PHOTO_ID_5269317087273595138" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-6515616935893384393?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/6515616935893384393/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=6515616935893384393' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6515616935893384393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6515616935893384393'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/11/code-jam-like-raspberry-jam-but-better.html' title='Code Jam (like raspberry jam, but better)'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_HsJN6XIoLiw/SSBf-QvWsQI/AAAAAAAAAFk/oVZz_dcz9CU/s72-c/img_0316.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-951703061362955930</id><published>2008-10-13T13:44:00.001-07:00</published><updated>2008-10-13T14:06:23.651-07:00</updated><title type='text'>How I learnt to stop worrying and love AMD's shader compiler</title><content type='html'>Normally I just post about travel and other daily trivia here, but I feel the need to get some good old tech ranting in. So, normal people (i.e. non-nerds), feel free to stop reading now :-)&lt;br /&gt;&lt;br /&gt;I've been trying to do some OpenGL development at home, with the ATI X1600 in my laptop, and I've managed to find 3 serious bugs within about an hour. Firstly, my program would just crash while trying to compile a shader. After tinkering with my program for a while to try and eliminate anything I might have broken, I started removing bits of the shader. And guess what? If you index an array with a ternary expression, it crashes the driver.&lt;br /&gt;&lt;br /&gt;Ok, I can work around that by moving the ternary into a temporary variable. Fix a few genuine compilation errors, and get to this message:&lt;br /&gt;&lt;br /&gt;Fragment shader failed to compile with the following errors:&lt;br /&gt;&lt;br /&gt;Well, that's helpful. Would be more helpful if it was followed by a list of errors, as is traditional in such cases. However, by again randomly removing pieces of code, I determine that a loop with an indeterminate number of iterations will cause this. Some hardware doesn't actually support loops (it just unrolls them), so fine, I'll run up to the maximum number of iterations I might need, and just early-out once I hit the number I actually need. Even when unrolling, such hardware normally supports forward branches, since it can just conditionalise the instructions hit by the branch. But not this sorry excuse for a compiler, it just gives me the same error. However, if I wrap the loop body in an "if" statement, it's happy to forward branch there.&lt;br /&gt;&lt;br /&gt;Now, I finally have both my shaders compiled, I'm ready to link! It's much harder to make linker errors than compiler errors, although I did accidentally end up not writing to a varying that I was reading and which the linker helpfully complained about. I fix that, and is was well. And if you believe that, you haven't been paying attention. Of course it isn't. In spite of the cheery "Fragment shader was successfully compiled to run on hardware" from the compiler, the linker now asserts that "Fragment Shader not supported by HW". Why not? Well, remember that ternary expression? It turns out that while refactoring it fixed the crash, it's still not supported. It appears that the fragment shader can't do dynamic indexing, at least on varying arrays. So, some more refactoring, to move the array lookup inside each branch of the ternary, and now it all compiles and links.&lt;br /&gt;&lt;br /&gt;I haven't tried running it yet, of course. I'm not sure I want to.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-951703061362955930?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/951703061362955930/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=951703061362955930' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/951703061362955930'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/951703061362955930'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/10/how-i-learnt-to-stop-worrying-and-love.html' title='How I learnt to stop worrying and love AMD&apos;s shader compiler'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-5512120544750503983</id><published>2008-10-04T05:24:00.001-07:00</published><updated>2008-10-04T05:33:49.413-07:00</updated><title type='text'>Photos from Montreal</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HsJN6XIoLiw/SOdh4zatVzI/AAAAAAAAAFE/l3Lz9MOWOwE/s1600-h/img_0272.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_HsJN6XIoLiw/SOdh4zatVzI/AAAAAAAAAFE/l3Lz9MOWOwE/s320/img_0272.jpg" alt="" id="BLOGGER_PHOTO_ID_5253275118853773106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_HsJN6XIoLiw/SOdh5HNl1lI/AAAAAAAAAFM/cH51clM_gE4/s1600-h/img_0281.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_HsJN6XIoLiw/SOdh5HNl1lI/AAAAAAAAAFM/cH51clM_gE4/s320/img_0281.jpg" alt="" id="BLOGGER_PHOTO_ID_5253275124167464530" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_HsJN6XIoLiw/SOdh5Q4I2DI/AAAAAAAAAFU/6UVClri1H98/s1600-h/img_0282.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_HsJN6XIoLiw/SOdh5Q4I2DI/AAAAAAAAAFU/6UVClri1H98/s320/img_0282.jpg" alt="" id="BLOGGER_PHOTO_ID_5253275126761838642" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HsJN6XIoLiw/SOdh5edDTBI/AAAAAAAAAFc/7YELCTVdt40/s1600-h/img_0285.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_HsJN6XIoLiw/SOdh5edDTBI/AAAAAAAAAFc/7YELCTVdt40/s320/img_0285.jpg" alt="" id="BLOGGER_PHOTO_ID_5253275130406325266" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;As usual, I'm happy enough to take photos, but very lazy about getting them off my camera. I've finally got a round tuit, so here are some photos.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-5512120544750503983?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/5512120544750503983/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=5512120544750503983' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5512120544750503983'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5512120544750503983'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/10/photos-from-montreal.html' title='Photos from Montreal'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_HsJN6XIoLiw/SOdh4zatVzI/AAAAAAAAAFE/l3Lz9MOWOwE/s72-c/img_0272.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-8763726545092542962</id><published>2008-09-22T18:59:00.000-07:00</published><updated>2008-09-22T19:14:02.048-07:00</updated><title type='text'>The South African who went up a hill and came down... a hill?</title><content type='html'>So, Sunday was see-Montreal day with Neil. A friend of his loaned us his bike, so we were able to cycle around town. Montreal has some great cycle lanes - unlike Cambridge, where it's usually just a demarkated cycle lane, these are actually separate to the road, blocked off by a concrete ridge so that motorists can't park in the cycle lane or cut you off or anything (and you don't have to share it with pedestrians either).&lt;br /&gt;&lt;br /&gt;Montreal is named after the local "mountain", Mont Royal. which Wikipedia tells me stands at a whopping 233m above sea level. It's covered in trees and has a very pleasant gravel road that winds its way gently up, which we spent some time going up (on our bicycles), and of course going down. I'll post some pictures when I get the motivation to get them off my camera.&lt;br /&gt;&lt;br /&gt;Today until Friday is basically meetings, so I won't have much more to post for a while.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-8763726545092542962?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/8763726545092542962/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=8763726545092542962' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8763726545092542962'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8763726545092542962'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/09/south-african-who-went-up-hill-and-came.html' title='The South African who went up a hill and came down... a hill?'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-5358737309680373774</id><published>2008-09-20T16:49:00.000-07:00</published><updated>2008-09-20T17:03:34.219-07:00</updated><title type='text'>Pass the fish, it's raining frogs!</title><content type='html'>Yes, it's another Bruce update! Hasn't happened for a long time, because frankly I haven't done much terribly exciting for a while. Ok, Mike and Carl both came to visit and went punting, but since nobody fell in I didn't make another post (it was close though - Mike nearly lost a right-of-way argument with a bridge, and during a collision Carl fell forward and managed to gets his hands down onto the other punt and push himself back up again).&lt;br /&gt;&lt;br /&gt;So, as usual, the update is because I'm travelling. This time it is to Montreal. It's my first business trip, so I'm enjoying being able to use taxis and hotels and so on rather than trying to penny-pinch - in fact I was slightly offended that the room wifi appears to be free :-). Of course, the downside is that I'm not going to see much of the predicted sunny days here since I'll be sitting in meetings. But tomorrow I'm going to meet Neil, a friend studying at McGill, so it's not all bad.&lt;br /&gt;&lt;br /&gt;Right, now my body thinks it's 1am, so I'm going to bed. Good night.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-5358737309680373774?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/5358737309680373774/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=5358737309680373774' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5358737309680373774'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5358737309680373774'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/09/pass-fish-its-raining-frogs.html' title='Pass the fish, it&apos;s raining frogs!'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-8778409275455540254</id><published>2008-08-02T06:45:00.000-07:00</published><updated>2008-08-02T06:51:19.489-07:00</updated><title type='text'>Random mutterings</title><content type='html'>Well, it's been a few weeks since I posted, and nothing really significant has happened, but I though I'd post anyway. It's been a warm few weeks - in fact last week was somewhat unpleasantly muggy (I guess like Durban but 10 degrees cooler). Of course, I then made the mistake of suggesting that friends from London should come to visit, and it promptly started poring with rain, and the train lines closed for maintenance.&lt;br /&gt;&lt;br /&gt;After getting back from Cape Town, the next weekend was a mad one in London with Carl for the 72-hour ICFP programming contest. This year the problem was to control a Martian rover as it navigated around boulders and craters and 14-fingered Martians. It was a great time, although I didn't enjoy the problem as much as last years, and there was absolutely no feedback on how we rated compared to other teams.&lt;br /&gt;&lt;br /&gt;Since then it's mostly just been slogging away at work (although I did get promoted) and doing programming contest stuff. The Google Code Jam is running at the moment, which is an interesting new format.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-8778409275455540254?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/8778409275455540254/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=8778409275455540254' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8778409275455540254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8778409275455540254'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/08/random-mutterings.html' title='Random mutterings'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-1741176143080846600</id><published>2008-07-07T06:38:00.000-07:00</published><updated>2008-07-07T06:45:00.578-07:00</updated><title type='text'>I came, I saw, I got rained on</title><content type='html'>The good news: I spent a week in Cape Town and saw some people I hadn't seen for months (unfortunately not as many I would have liked). The bad news: it's rained almost the entire time, and I barely saw the sun. Everyone accuses me of bringing the bad weather with me, but actually it was a glorious few days in Cambridge just before I left. Worse news: it looks like I will, however, be bringing bad weather back with me.&lt;br /&gt;&lt;br /&gt;No pictures, unfortunately - there wasn't much picturesque, what with being inside out of the rain the whole time.&lt;br /&gt;&lt;br /&gt;In other news, Terminal 5 is pretty much as I expected: well planned out in terms of being quick and pleasant to check in and minimal hassle at security (apart from the first metal detector I've been through that considered my wrist-watch a threat to world safety), but shops aimed more at the jetsetter than a low-budget geek like me.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-1741176143080846600?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/1741176143080846600/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=1741176143080846600' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1741176143080846600'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1741176143080846600'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/07/i-came-i-saw-i-got-rained-on.html' title='I came, I saw, I got rained on'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4459287898293276499</id><published>2008-06-27T12:08:00.000-07:00</published><updated>2008-06-27T12:43:34.593-07:00</updated><title type='text'>The Java Embassy</title><content type='html'>Today at work somebody mentioned seeing that somebody at Sun had the job title "Java Ambassador". This lead us to thinking about whether there is a Java Embassy in London, and if so, how it would work. I've expanded on that to bring you an alternative to that old classic, &lt;a href="http://burks.bton.ac.uk/burks/language/shoot.htm"&gt;how to shoot yourself in the foot&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;Java embassy: let's say you work in the embassy and want to adjust the height of your chair. Chairs are immutable, so instead you order a completely new chair, which is higher than your old chair. When it arrives, you leave the old chair lying around. Eventually, when the building is too full of chairs, work stops for the day while the garbage collectors go around and throw away all the chairs that aren't in use. Visitors to the embassy are not scanned for weapons or cameras; instead, they are put in straitjackets and blinkers to make it impossible for them to do anything illegal.&lt;br /&gt;&lt;br /&gt;C embassy: you're supposed to obtain forms from the central office, complete them, and return them. However, if you forget about a form, it will lie around the embassy forever, and will never be touched just in case you're coming back to finish it. Eventually, the embassy will collapse under the weight of the incomplete forms.&lt;br /&gt;&lt;br /&gt;C++ embassy: similar to the C embassy, except that some forms will self-destruct if you leave the embassy, making it easier to prevent space shortages.&lt;br /&gt;&lt;br /&gt;Python embassy: every single item (including a pen) has a big piece of paper attached to say what it is and how many people are using it. Every time you want to use a pen, you have to order a new pen, use it to write something down, then throw it away. When it was discovered that this is inefficient, management decided to keep around pens for a few common colours. Also, the staff tend to dress strangely and say things like "this passport has expired and gone to meet it's maker. It's bleeding expired."&lt;br /&gt;&lt;br /&gt;Functional programming embassy: this embassy does not maintain any long-term records at all. However, it's very simple to find your way around: every embassy is either empty, or consists of one office and another embassy.&lt;br /&gt;&lt;br /&gt;Perl embassy: this is the ugliest embassy in the neighbourhood, with all kinds of bits glued on and strange corridors that don't always go to the same place. In spite of this, it's usually possible to get things done. If you ask for directions, you're probably be told, "well, the simplest way is to go up three flights of stairs, to the end of the corridor, then take the lift. Or, you could walk around the outside, in the unmarked door at the back, then left. Or if you know how to read this map, you can look around for something that matches it. Or, ..."&lt;br /&gt;&lt;br /&gt;Ok, that's all my ideas for now, but add comments!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4459287898293276499?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4459287898293276499/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4459287898293276499' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4459287898293276499'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4459287898293276499'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/06/java-embassy.html' title='The Java Embassy'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-1986437823320764126</id><published>2008-06-09T12:16:00.000-07:00</published><updated>2008-06-09T12:27:28.031-07:00</updated><title type='text'>It burns us!</title><content type='html'>Wow, time flys. Then again, so does a banana, if you throw it hard enough.&lt;br /&gt;&lt;br /&gt;So, things have been happening. I've been to two formal halls in Cambridge. One was quite large and had a high table way up at the front where they muttered some Latin at each end of the meal. The other was crazy-small - just our group of about seven plus about three others, and none of the ceremonial stuff.&lt;br /&gt;&lt;br /&gt;Yesterday the weather turned out beautiful. One thing about the English weather is that being generally crummy, you really appreciate it when it's nice. We went punting for about 5 hours, had a picnic on the punt (wasn't anywhere that nice to get out at the time), and I managed to get sunburnt.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-1986437823320764126?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/1986437823320764126/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=1986437823320764126' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1986437823320764126'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1986437823320764126'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/06/it-burns-us.html' title='It burns us!'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-6056851506549462943</id><published>2008-05-13T21:02:00.000-07:00</published><updated>2008-05-13T21:12:25.531-07:00</updated><title type='text'>Down and out</title><content type='html'>Semifinal: I wasted lots of time on a 950 (means that it should be easier than the usual 1000, but wasn't), and didn't have quite enough time to discover the bug in my 550, and as a result went into the wildcard instead of advancing directly.&lt;br /&gt;&lt;br /&gt;In the wildcard, I got shafted by another poker problem, which took me ages just to understand and longer to debug, and I went in with the wrong structures for the 1000, so I'm out of that too.&lt;br /&gt;&lt;br /&gt;Las Vegas is the same as last year: gawdy and not much to do unless you're a gambling addict, and I'm stuck here for two days after the TC stuff ends. As you can guess, I'm not in the best mood at the moment. The single cloud on the horizon is that I'm spending a lot of what's going to be left of my prize money on going to see Spamalot on Friday.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-6056851506549462943?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/6056851506549462943/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=6056851506549462943' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6056851506549462943'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6056851506549462943'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/05/down-and-out.html' title='Down and out'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4099140726936078174</id><published>2008-05-13T08:36:00.001-07:00</published><updated>2008-05-13T08:44:42.778-07:00</updated><title type='text'>Down in the park</title><content type='html'>If a year ago you'd told me I'd get sunburnt in England, I would have laughed at you. Not any more. As the first leg of getting to Las Vegas for the TCO 2008, I stopped off in London and spent the day with Carl. The weather in England has glorious (which means 25° plus). We spent the afternoon just picnicking in Richmond Park, which is absolutely huge and, unlike Cambridge, has some geography. Somehow we managed to meet up with some friends of Carl's, starting from instructions like "we at a pond".&lt;br /&gt;&lt;br /&gt;After that it was off to the Las Vegas. The transatlantic flight was heavenly, since it was basically empty and I could get 3 seats to a row to myself for some shuteye. And even though it was late, I still have enough time to make my connection without panic, and all my luggage arrived. So it's a good start all round.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4099140726936078174?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4099140726936078174/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4099140726936078174' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4099140726936078174'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4099140726936078174'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/05/down-in-park.html' title='Down in the park'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4439377374783536657</id><published>2008-05-04T04:50:00.000-07:00</published><updated>2008-05-04T05:01:59.535-07:00</updated><title type='text'>Birthdays and things</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_HsJN6XIoLiw/SB2kM5_d7zI/AAAAAAAAADY/gnqLLYgA5X4/s1600-h/20080427-001818.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp3.blogger.com/_HsJN6XIoLiw/SB2kM5_d7zI/AAAAAAAAADY/gnqLLYgA5X4/s320/20080427-001818.jpg" alt="" id="BLOGGER_PHOTO_ID_5196490086687829810" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Last weekend I had a birthday party, which I try to do approximately once a year. Carl and Mike came up from London, and Much Fun Was Had By All. We ended up playing Jenga (or rather, a knockoff Eastern European copy my parents brought back from their trip), and we succeeded in building a maximal tower, shown right.&lt;br /&gt;&lt;br /&gt;This weekend is a bank holiday weekend, so various people invited friends from London to visit Cambridge, and the weather was nice enough to go punting. I'd been once before, but didn't actually do the punting. This time everyone took a turn, including me. It looks pretty precarious standing on the back of a wobbly punt, but it's actually surprisingly hard to fall in. At one point I got too close to the bank and was nearly taken out by an overhanging tree, but still managed to keep my balance.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_HsJN6XIoLiw/SB2lGp_d70I/AAAAAAAAADg/GD5ZeB_Mcu8/s1600-h/20080503-162428.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_HsJN6XIoLiw/SB2lGp_d70I/AAAAAAAAADg/GD5ZeB_Mcu8/s320/20080503-162428.jpg" alt="" id="BLOGGER_PHOTO_ID_5196491078825275202" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4439377374783536657?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4439377374783536657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4439377374783536657' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4439377374783536657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4439377374783536657'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/05/birthdays-and-things.html' title='Birthdays and things'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_HsJN6XIoLiw/SB2kM5_d7zI/AAAAAAAAADY/gnqLLYgA5X4/s72-c/20080427-001818.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-6653914257487174392</id><published>2008-04-18T12:26:00.000-07:00</published><updated>2008-04-18T12:42:52.187-07:00</updated><title type='text'>A stitch in time saves how many? ... London.</title><content type='html'>The title is a reference to Father Ted, which of course everybody should watch. It's also appropriate since this post is about 2 weeks late, and I forgot to take my camera to boot.&lt;br /&gt;&lt;br /&gt;Yes, a trip to London on a Saturday. This turns out to be an expensive proposition, considering that it takes as long to get from Cambridge to London as it does to get from there to the other side of London. I only went for the day, since day returns are about half the price of other tickets. It started off with a visit to the British Museum, which those who know me will know is not my usual cup of tea. But Carl wanted to go see the Terracota Army, so he paid for a ticket for me too (after queueing for 3 hours), and it was rather good. If you haven't read Pratchett, then to fill you in: the first Emperor of China had serious issues with death, and he was buried with 7000 terracota people to run his empire in the afterlife: footsoldiers, archers, cavalry, wrestlers, acrobats, civil servants, the works.&lt;br /&gt;&lt;br /&gt;After that it was the London Eye, to look around and go "what's that big building? I don't know." It was nice to just chill out and do nothing for a while. Then we headed off to Carl's shared house in Wimbledon (one of his housemates and her boyfriend where with us for the day). I've been told how Wimbledon is basically Little South Africa, and it didn't take much to convince me when I get off the train and in the station, where you'd normally except to see a M&amp;amp;S or a pie shop, there is a South African shop selling biltong and boerewors rolls. It made me positively homesick.&lt;br /&gt;&lt;br /&gt;Dinner was homemade pizza, preceeded briefly by some writing collaboration with Carl (together with Marco we submitted a description of the South African Computer Olympiad to a programming contest conference). Then back to Cambridge, a long, slow process: first an overland train to Farringdon station (the English have such, well, English ways of naming things), then a tube to Liverpool Street, then wait around half an hour because the incoming train from Cambridge is late (apparently there was a "security alert" in Cambridge), then an hour or so on that train, then stand around for 10 minutes because I'd missed the bus I'd been planning for, then about 20-30 minutes on the bus home.&lt;br /&gt;&lt;br /&gt;Since then, not a whole lot of news, although I have booked flights home (and back) for early July.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-6653914257487174392?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/6653914257487174392/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=6653914257487174392' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6653914257487174392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6653914257487174392'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/04/stitch-in-time-saves-how-many-london.html' title='A stitch in time saves how many? ... London.'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-3426823098033718939</id><published>2008-03-30T11:31:00.000-07:00</published><updated>2008-03-30T11:41:40.927-07:00</updated><title type='text'>Junk to the left of me, junk to the right of me</title><content type='html'>and everywhere there was junk. By which, of course, I mean that my shipping arrived, and now I need to figure out where it is all going to go, and I can barely move for all the stuff lying around in piles.&lt;br /&gt;&lt;br /&gt;Apart from all the stuff I shipped over that is probably going to go straight under the bed or into the cupboard under the stairs, there is of course some useful stuff. Strangely, it's the little things that I've been missing the most, like having a bed-side lamp so that I can read in bed and then just turn it off without having to get out of bed again.&lt;br /&gt;&lt;br /&gt;This weekend I also had my cousin visiting from the USA. Yesterday was typical English weather, grey and cold and windy and dreary and depressing, but today was just perfect. I was walking around in just my tracksuit (which as you may know, is also about what I wear in Cape Town in summer), and very little wind. We just wandered around town looking at things and had lunch at a nice Italian place right on the Cam.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-3426823098033718939?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/3426823098033718939/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=3426823098033718939' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3426823098033718939'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3426823098033718939'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/03/junk-to-left-of-me-junk-to-right-of-me.html' title='Junk to the left of me, junk to the right of me'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4766271700510630634</id><published>2008-03-24T03:19:00.000-07:00</published><updated>2008-03-24T03:27:00.927-07:00</updated><title type='text'>My God, it's full of snow!</title><content type='html'>On Saturday when Mike came to visit and it snowed, I thought that would be it for the year. It turns out that was just a warmup (if that's the right word) for the real thing on Sunday:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_HsJN6XIoLiw/R-eB1WuQpoI/AAAAAAAAADQ/n51h9g0k-6M/s1600-h/snow3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_HsJN6XIoLiw/R-eB1WuQpoI/AAAAAAAAADQ/n51h9g0k-6M/s320/snow3.jpg" alt="" id="BLOGGER_PHOTO_ID_5181252649945704066" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_HsJN6XIoLiw/R-eBF2uQpnI/AAAAAAAAADI/Y0Zl2D67mn8/s1600-h/snow4.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_HsJN6XIoLiw/R-eBF2uQpnI/AAAAAAAAADI/Y0Zl2D67mn8/s320/snow4.jpg" alt="" id="BLOGGER_PHOTO_ID_5181251833901917810" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4766271700510630634?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4766271700510630634/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4766271700510630634' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4766271700510630634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4766271700510630634'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/03/my-god-its-full-of-snow.html' title='My God, it&apos;s full of snow!'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_HsJN6XIoLiw/R-eB1WuQpoI/AAAAAAAAADQ/n51h9g0k-6M/s72-c/snow3.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-1722008622784709280</id><published>2008-03-22T12:18:00.000-07:00</published><updated>2008-03-22T12:33:42.078-07:00</updated><title type='text'>Timing</title><content type='html'>So, Mike came to visit for the day, and managed to pick the one day this year that it actually snowed. We started off looking around town a bit, came back to my place for lunch, and ended up watching TV all afternoon because the weather just looked too dicey.&lt;br /&gt;&lt;br /&gt;This is what the view out my window looked like:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_HsJN6XIoLiw/R-VdgmuQpkI/AAAAAAAAACw/nDeGXM0LyuA/s1600-h/snow2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_HsJN6XIoLiw/R-VdgmuQpkI/AAAAAAAAACw/nDeGXM0LyuA/s320/snow2.jpg" alt="" id="BLOGGER_PHOTO_ID_5180649761091397186" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;And here's me earlier in the day in front of King's, bundled up against the weather:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_HsJN6XIoLiw/R-VelmuQplI/AAAAAAAAAC4/XCbptTQh3r8/s1600-h/kings2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_HsJN6XIoLiw/R-VelmuQplI/AAAAAAAAAC4/XCbptTQh3r8/s320/kings2.jpg" alt="" id="BLOGGER_PHOTO_ID_5180650946502370898" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;And no, we didn't go out and make snowmen or throw snowballs. It was a rather soggy, unpleasant sort of snow, not to mention the howling winds. A bit of a disappointment really, but I guess one should except such things from the English weather.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-1722008622784709280?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/1722008622784709280/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=1722008622784709280' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1722008622784709280'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1722008622784709280'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/03/timing.html' title='Timing'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_HsJN6XIoLiw/R-VdgmuQpkI/AAAAAAAAACw/nDeGXM0LyuA/s72-c/snow2.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-2106570591521875294</id><published>2008-03-18T14:26:00.000-07:00</published><updated>2008-03-18T14:39:28.097-07:00</updated><title type='text'>Craziness in America</title><content type='html'>Craziness in America item #1: flights to the Topcoder were going to require me to leave Heathrow at 8.30am. Subtract 3 hours that you need to be there before your flight: 5.30am. Subtract 1 hour on the train from Cambridge and 1 hour on the tube: 3.30am (assuming the tube runs that time of day, otherwise it's a bus). Subtract 15 minutes to get to the train station, 30 minutes to get ready at home, and another 15 minutes slack time, and it's not even worth going to bed.&lt;br /&gt;&lt;br /&gt;The good news is that I've managed to get it changed to an 11.15am flight. That's still not great, but it's sane, and if I spend a night with a friend in London it starts to look downright decent.&lt;br /&gt;&lt;br /&gt;Craziness in America item #2: NVIDIA are making sure they stay in touch and had one of their managers talk to me just to touch base. He said it took him ages to figure out how to dial my number because he never makes international calls. Somehow that's just so stereotypically American I had to laugh.&lt;br /&gt;&lt;br /&gt;In more topical news: no plans to go away for Easter (unlike just about everyone else I know), but Mike is coming up from London to visit for a day, and then a cousin of mine from the US is coming to visit the following weekend as part of a business trip. And my shipping has arrived in a warehouse somewhere, but I can't get at it yet because I have to pay more money due to some weasel-words in the contract about currency fluctuations and the fact that the rand has lost about 15% of its value since I left.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-2106570591521875294?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/2106570591521875294/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=2106570591521875294' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/2106570591521875294'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/2106570591521875294'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/03/craziness-in-america.html' title='Craziness in America'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-3993098631429510639</id><published>2008-03-08T15:44:00.001-08:00</published><updated>2008-03-08T15:59:20.449-08:00</updated><title type='text'>Las Vegas (again)</title><content type='html'>So, for those of you who wonder what mischief I've been getting up to on Saturday nights since arriving in the UK, the answer is... trying to take over the world. No, wait, I mean... programming. In fact, taking part in the 2008 &lt;a href="http://www.topcoder.com/tc?module=Static&amp;amp;d1=tournaments&amp;amp;d2=tco08&amp;amp;d3=about"&gt;TopCoder Open&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I had a less than stellar round today, but still managed to place 19th, which is enough to put me through to the semi-finals in Las Vegas in mid-May. If you've read my previous posts, you'll know that I found Vegas to be as tacky, lurid, and gambling-obsessed as it looks in the movies, so I'm not so keen on the location, but the contest itself is always fun. They've expanded it again this year (48 to 72 algorithm finalists), which I think might be a mistake as even with 48 you don't really get to know everyone, especially since difficult language groups tend to form cliques (Russian, Polish and Chinese for example - in fact there are precious few native English speakers (looks like probably one English, one Aussie, one or two American and me this time), although the Dutch are usually fun and this time it looks like there will be at least four of them.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-3993098631429510639?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/3993098631429510639/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=3993098631429510639' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3993098631429510639'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3993098631429510639'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/03/las-vegas-again.html' title='Las Vegas (again)'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-6994702274918111863</id><published>2008-03-06T15:56:00.000-08:00</published><updated>2008-03-06T16:06:19.199-08:00</updated><title type='text'>I can't be bothered to think up a title</title><content type='html'>Right, I couldn't be bothered to think up a clever title, because it's almost midnight on a week night. The reason I'm still up at midnight is that I've just been to see The Bank Job. It doesn't have anything terribly surprising in it (people rob a bank then run into problems afterwards), but a decent way to pass an evening. There was one line I liked particularly, when they were digging a tunnel into the vault:&lt;br /&gt;&lt;br /&gt;"I've just got one question. What are we going to do with all the dirt we dig out?"&lt;br /&gt;"That's all planned for. We're going to dig another hole over there and bury it."&lt;br /&gt;&lt;br /&gt;So, go see it if you have a chance.&lt;br /&gt;&lt;br /&gt;Other news? I bought a HDD/DVD recorder, although I probably won't have much to record because I don't have a decent TV guide like the one that comes with DSTV in SA. Even on the internet I can't see more than about 2 hours on a page, when actually what I want is a list of all the movies and series that are on for the month. But at least now I can play DVDs on the TV instead of my laptop. And in theory the ship with all my stuff should have made port around today, so in a week or two I should have lots of furniture. And Saturday is the last online round of the Topcoder Open, so assuming I do okay there I'll be off to Vegas again in mid-May.&lt;br /&gt;&lt;br /&gt;Right, I need a cup of tea and then SLEEP.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-6994702274918111863?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/6994702274918111863/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=6994702274918111863' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6994702274918111863'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6994702274918111863'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/03/i-cant-be-bothered-to-think-up-title.html' title='I can&apos;t be bothered to think up a title'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-5208514050566479931</id><published>2008-02-27T10:59:00.000-08:00</published><updated>2008-02-27T11:40:01.296-08:00</updated><title type='text'>It still moves</title><content type='html'>Well, know we know why the Tower of Pisa falls over: it's made of spaghetti. Well, that sounds really confusing, so allow me to explain. The last two days of work have been further induction, covering such necessary and also riveting topics as training, the employee handbook, health and safety, and IT policies. To try to liven it up, they had one of those silly yet sometimes entertaining "team-building" exercises, in this case, to built as tall a tower as possible from spaghetti and marshmallows, within a limited "budget". Our team had the tallest tower:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_HsJN6XIoLiw/R8W1w6XsXVI/AAAAAAAAACg/liN9a2hEqYw/s1600-h/tower1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_HsJN6XIoLiw/R8W1w6XsXVI/AAAAAAAAACg/liN9a2hEqYw/s320/tower1.jpg" alt="" id="BLOGGER_PHOTO_ID_5171739599011863890" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Unfortunately, by the end of the competition it was looking more like this, so we didn't win.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_HsJN6XIoLiw/R8W1xqXsXWI/AAAAAAAAACo/Bq_2GZfrE4c/s1600-h/tower4.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_HsJN6XIoLiw/R8W1xqXsXWI/AAAAAAAAACo/Bq_2GZfrE4c/s320/tower4.jpg" alt="" id="BLOGGER_PHOTO_ID_5171739611896765794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;And for those who might want to know, yes I did feel the earthquake, just as a slight vibration which woke me up, after which I couldn't get back to sleep.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-5208514050566479931?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/5208514050566479931/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=5208514050566479931' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5208514050566479931'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5208514050566479931'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/02/it-still-moves.html' title='It still moves'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_HsJN6XIoLiw/R8W1w6XsXVI/AAAAAAAAACg/liN9a2hEqYw/s72-c/tower1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-1200438671495337973</id><published>2008-02-19T10:05:00.000-08:00</published><updated>2008-02-19T10:12:21.977-08:00</updated><title type='text'>And... here it is</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_HsJN6XIoLiw/R7sbvqXsXUI/AAAAAAAAACY/dYT69ouEnLs/s1600-h/montypython.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_HsJN6XIoLiw/R7sbvqXsXUI/AAAAAAAAACY/dYT69ouEnLs/s320/montypython.jpg" alt="" id="BLOGGER_PHOTO_ID_5168755502979243330" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I'm normally a cheapskate who never buys anything even if I can afford it, but to celebrate my new job, what better extravagance than this?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-1200438671495337973?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/1200438671495337973/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=1200438671495337973' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1200438671495337973'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1200438671495337973'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/02/and-here-it-is.html' title='And... here it is'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_HsJN6XIoLiw/R7sbvqXsXUI/AAAAAAAAACY/dYT69ouEnLs/s72-c/montypython.jpg' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-1552206663731538212</id><published>2008-02-15T11:28:00.000-08:00</published><updated>2008-02-15T11:40:24.681-08:00</updated><title type='text'>Random photos</title><content type='html'>I've taken the odd photo with my cell-phone camera when the opportunity has arisen, and have finally gotten around to extracting them. This was always a pain, and it's become even more painful since it appears that something I've upgraded broke the program I used to use (it now tells me that there was an error, namely, "Success"). My N-formats memory card reader doesn't deal with it either.&lt;br /&gt;&lt;br /&gt;So, here's one of my house again (the one on the left). Note the ice on the car windscreen. I don't think I'm in Cape Town any more...&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_HsJN6XIoLiw/R7XqRaXsXRI/AAAAAAAAACA/m7GjG48OolQ/s1600-h/house.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_HsJN6XIoLiw/R7XqRaXsXRI/AAAAAAAAACA/m7GjG48OolQ/s320/house.jpg" alt="" id="BLOGGER_PHOTO_ID_5167293732334886162" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Second one is something crossing the road. Looks like it might be a hedgehog or something similar.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_HsJN6XIoLiw/R7XqRqXsXSI/AAAAAAAAACI/TQaUWE7zrqU/s1600-h/hedgehog.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_HsJN6XIoLiw/R7XqRqXsXSI/AAAAAAAAACI/TQaUWE7zrqU/s320/hedgehog.jpg" alt="" id="BLOGGER_PHOTO_ID_5167293736629853474" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-1552206663731538212?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/1552206663731538212/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=1552206663731538212' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1552206663731538212'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1552206663731538212'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/02/random-photos.html' title='Random photos'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_HsJN6XIoLiw/R7XqRaXsXRI/AAAAAAAAACA/m7GjG48OolQ/s72-c/house.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-8064347534855730863</id><published>2008-02-11T10:06:00.000-08:00</published><updated>2008-02-11T10:13:49.695-08:00</updated><title type='text'>It's off to work we go</title><content type='html'>So, things have been a bit quiet on the blog front for me since I've settled in and started a job. It's gone pretty well, much better than my first week at NVIDIA, I think because I'm working on a small self-contained project rather than a million-lines-of-code driver. It's also OpenGL-related so I walked in with most of the knowledge I need to do the work, so I'm already rewriting big chunks of code.&lt;br /&gt;&lt;br /&gt;This week is going to be a bit different: I'm doing an ARM-internal training course on the ARM architecture, which should be fun because I know a reasonable amount about the x86 architecture (not enough to write an OS, but the basic instruction set and registers performance characteristics), but pretty much zero about the ARM architecture.&lt;br /&gt;&lt;br /&gt;Other than that, I didn't do much last weekend. Saturday I pottered around for the morning because I'd made a mix-up with my contact lens cleaning which meant I couldn't wear them for 6 hours, and in the afternoon I bought a scarf. Sunday I took part in the worst-run international programming contest I've ever seen (some Indian thing called Bitwise) which ran for 12 hours, but at least I managed to place well enough to win a 4GB flash drive, which I've been debating buying for a while.&lt;br /&gt;&lt;br /&gt;And maybe, finally, I'll actually have my ATM card and be able to use the bank account I opened months ago other than by debit order and internet banking.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-8064347534855730863?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/8064347534855730863/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=8064347534855730863' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8064347534855730863'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8064347534855730863'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/02/its-off-to-work-we-go.html' title='It&apos;s off to work we go'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-7734987945738422101</id><published>2008-02-01T03:20:00.000-08:00</published><updated>2008-02-01T03:41:55.620-08:00</updated><title type='text'>Washing... but not as you know it</title><content type='html'>Well, I'm in my new house, which doesn't come with a microwave, but does come with a combination washer-dryer (I'm not implying that they're interchangeable in any way, although I guess you could try microwaving your clothes dry or reheating your leftovers in the dryer). However, it seems that the American obsession with safety has reached Britain. Unlike normal dryers, which are kind, and clever, and fun to be around... no wait, that's a quotation which isn't relevant. Unlike normal dryers, where you can just open the door, check on progress and pull out things that are dry and close the door on the rest, this one protects you from (gasp!) warm clothing. The door will lock while you're drying your clothes &lt;span style="font-style: italic;"&gt;and for two minutes afterwards&lt;/span&gt;. This is even after having the last 10 minutes be a no-heat spin, so the clothes are already cool by the time you get them out. And it can't get very hot in the first place, because I had some clothes in there for about 2 hours and they still weren't 100% dry.&lt;br /&gt;&lt;br /&gt;Other than that, there are about 8 wireless networks here, all encrypted. My laptop automatically picked up an unencrypted network for a few minutes and was able to tell me I had new mail, after which I lost the connection again.&lt;br /&gt;&lt;br /&gt;Virgin Mobile are a bit useless. When I called the first time to arrange to get a bundle on my phone, they insisted they had to send me a new SIM card. It arrived today... and has a totally different phone number. So I call up to complain, and this time they tell me they can add it to my existing account, and within minutes its active. Now I just have to decide whether it's worth the effort to harangue them to get back my £10 on the new and unopened one. On the plus side, I've been pleasantly surprised to find that I haven't had to&lt;br /&gt;wait in a long queue to get service.&lt;br /&gt;&lt;br /&gt;UPDATE: I'm now posting this from home on my shiny new 2Mbps broadband connection. Here are some pictures of my house:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_HsJN6XIoLiw/R6ME5TU0JMI/AAAAAAAAABY/UqvnH02Mnus/s1600-h/img_0211.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_HsJN6XIoLiw/R6ME5TU0JMI/AAAAAAAAABY/UqvnH02Mnus/s320/img_0211.jpg" alt="" id="BLOGGER_PHOTO_ID_5161974980383352002" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_HsJN6XIoLiw/R6ME5zU0JNI/AAAAAAAAABg/qA5PFxwSPU0/s1600-h/img_0212.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_HsJN6XIoLiw/R6ME5zU0JNI/AAAAAAAAABg/qA5PFxwSPU0/s320/img_0212.jpg" alt="" id="BLOGGER_PHOTO_ID_5161974988973286610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_HsJN6XIoLiw/R6ME6jU0JOI/AAAAAAAAABo/eHo0RyQvTyY/s1600-h/img_0213.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_HsJN6XIoLiw/R6ME6jU0JOI/AAAAAAAAABo/eHo0RyQvTyY/s320/img_0213.jpg" alt="" id="BLOGGER_PHOTO_ID_5161975001858188514" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_HsJN6XIoLiw/R6ME7TU0JPI/AAAAAAAAABw/WVSMPckE5Cc/s1600-h/img_0214.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_HsJN6XIoLiw/R6ME7TU0JPI/AAAAAAAAABw/WVSMPckE5Cc/s320/img_0214.jpg" alt="" id="BLOGGER_PHOTO_ID_5161975014743090418" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_HsJN6XIoLiw/R6ME7jU0JQI/AAAAAAAAAB4/EEksIEbDqzQ/s1600-h/img_0215.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_HsJN6XIoLiw/R6ME7jU0JQI/AAAAAAAAAB4/EEksIEbDqzQ/s320/img_0215.jpg" alt="" id="BLOGGER_PHOTO_ID_5161975019038057730" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-7734987945738422101?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/7734987945738422101/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=7734987945738422101' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7734987945738422101'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7734987945738422101'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/02/washing-but-not-as-you-know-it.html' title='Washing... but not as you know it'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_HsJN6XIoLiw/R6ME5TU0JMI/AAAAAAAAABY/UqvnH02Mnus/s72-c/img_0211.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-7808981775556879682</id><published>2008-01-25T07:32:00.000-08:00</published><updated>2008-01-25T07:41:18.162-08:00</updated><title type='text'>In-sewer-ants</title><content type='html'>Good news. I've signed the lease, and I've organised insurance, which surprisingly isn't really cheaper than in South Africa (for household insurance at least). That might be because its covers more though - it seems they assume you have at least £10,000 worth on stuff, and there are various things they cover like legal fees. They didn't include a nude lady though.&lt;br /&gt;&lt;br /&gt;The bad news is that the bank is causing me grief. They didn't send a debit card (which is also an ATM card), so the only way I can get money out is through electronic transfers. First they said it was in the process of being issued (almost a month after I'd opened the account?), now they say they don't have the application form from me. So I've had to go and fill in the form, and it'll take another week before I get it.&lt;br /&gt;&lt;br /&gt;Next week I'm moving in, and I'll need to organise broadband. That's probably the last thing that I'm really stressed about, especially since it's a 1 year contract so if I make the wrong choices I'm rather stuck with it. It also means that from Tuesday you might find me slow on replying to emails if I don't get it set up right away.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-7808981775556879682?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/7808981775556879682/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=7808981775556879682' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7808981775556879682'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7808981775556879682'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/01/in-sewer-ants.html' title='In-sewer-ants'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4626212075145214049</id><published>2008-01-23T09:49:00.000-08:00</published><updated>2008-01-23T10:12:52.828-08:00</updated><title type='text'>Sitting around</title><content type='html'>Well, today was not terribly exciting. I collected my bicycle this morning (yes I did actually do some exercise, don't get a heart attack). Hopefully it hasn't been stolen yet: the guy at the bike shop seemed to indicate that they'd steal pretty much any part of your bike that wasn't locked to something, including your lights and your pump. Makes my feel like I never left home :-)&lt;br /&gt;&lt;br /&gt;Other than that, I'm just waiting to get the lease to sign (was supposed to be last night, now supposedly tonight). I also looked at broadband options today, and if you thought this could be confusing in South Africa, you haven't seen anything. I'm planning on going with Virgin (they do cable, which I've heard from two different people is better than ADSL). They have options for TV (depending on how many channels you want), internet (speed), phone (free calls), and an option to get free minutes on Virgin mobile. However, ONLY&lt;br /&gt;the phone options can be taken on their own. Everything else is either "costs X when you also have Y" or is part of a bundle. And you can't combine bundles. So you can get low-grade TV free with the phone line, or broadband for £4.50 with the phone line, but not both. And you can't have both low-grade TV and the phone line.&lt;br /&gt;&lt;br /&gt;Once I've signed the lease I can start looking into things like insurance, and actually ordering the broadband, and planning what to ship, join the library, etc etc.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4626212075145214049?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4626212075145214049/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4626212075145214049' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4626212075145214049'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4626212075145214049'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/01/sitting-around.html' title='Sitting around'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-3169489000398188082</id><published>2008-01-22T05:25:00.000-08:00</published><updated>2008-01-22T05:34:07.461-08:00</updated><title type='text'>The House of Merry</title><content type='html'>So, without mucking about too much, I have obtained accommodation for the next six months (well, I will have once I've received the lease and signed it and paid a deposit etc). It's a one bedroom house in Lucerne Close. And if you thought South Africa had some crazy road naming, go look up "Lucerne Close, Cambridge" in Google maps and zoom right in. It's not a road, it's a tree of roads with 7 dead-ends.&lt;br /&gt;&lt;br /&gt;This afternoon I intend to buy a bicycle, if the weather holds up.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-3169489000398188082?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/3169489000398188082/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=3169489000398188082' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3169489000398188082'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3169489000398188082'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/01/house-of-merry.html' title='The House of Merry'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-8287457315336321718</id><published>2008-01-21T07:00:00.000-08:00</published><updated>2008-01-21T07:11:55.223-08:00</updated><title type='text'>Hectic in Cambridge</title><content type='html'>Right, the flight was relatively uneventful, apart from the obligatory screaming infant. The bus to Cambridge ended up taking 3 hours, which wasn't much fun, but on the other hand my room was ready for me when I arrived.&lt;br /&gt;&lt;br /&gt;So far I've been to collect my mail from Blaise (banking stuff) and have lunch with him in St Johns. I don't know if it's just because this is an offshore account, but banking seems worryingly slow here. My mail included various things including detail for getting on to online banking, but apparently the debit card could still take a few days. A little worrying when that is what I was planning to use for spending round here.&lt;br /&gt;&lt;br /&gt;Sigh... I've just got a phone call to cancel one of the viewings I had planned for tomorrow. That leaves me with basically two at the moment (one I must confirm now), and one of them only actually opens later in February. So I'll be doing lots of flat-hunting this week.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-8287457315336321718?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/8287457315336321718/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=8287457315336321718' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8287457315336321718'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8287457315336321718'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/01/hectic-in-cambridge.html' title='Hectic in Cambridge'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4642347636649137143</id><published>2008-01-20T10:02:00.000-08:00</published><updated>2008-01-20T10:03:32.106-08:00</updated><title type='text'>Off to Cambridge</title><content type='html'>I'm off to Cambridge to earn my living, until I get sick of the weather. I'm in the departure lounge in Cape Town, Firefox on Linux doesn't want to start, and I'm expecting my flight to be called any minute. I'll write more later.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4642347636649137143?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4642347636649137143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4642347636649137143' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4642347636649137143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4642347636649137143'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2008/01/off-to-cambridge.html' title='Off to Cambridge'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-3063019527101826143</id><published>2007-11-04T10:26:00.000-08:00</published><updated>2007-11-04T10:31:20.593-08:00</updated><title type='text'>Free stuff</title><content type='html'>Despite having finished my PhD, I haven't graduated yet, which means I'm still required to hold to the post-graduate code: grab anything that's free. Today I'm grabbing the free wireless internet at Orlando International Airport. Very nice, since every other airport I've used in the US requires you to pay for it.&lt;br /&gt;&lt;br /&gt;I've taken the opportunity to upload all my photos to &lt;a href="http://people.cs.uct.ac.za/%7Ebmerry/photos/tccc2007/"&gt;http://people.cs.uct.ac.za/~bmerry/photos/tccc2007/&lt;/a&gt;. There aren't that many, since one programming contest looks pretty much like another, and I didn't spend a lot of time in the parks.&lt;br /&gt;&lt;br /&gt;That's probably all I'll be posting until my next jaunt overseas, which is probably when I move to Cambridge to start work.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-3063019527101826143?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/3063019527101826143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=3063019527101826143' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3063019527101826143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3063019527101826143'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/11/free-stuff.html' title='Free stuff'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4056890446754904348</id><published>2007-11-01T09:12:00.000-07:00</published><updated>2007-11-01T09:16:25.179-07:00</updated><title type='text'>You win some, you lose some</title><content type='html'>And, today I lost. The round was just a disaster for me. The hard problem (normally 1000) was worth 900, which sucked me into thinking it would be an easy problem. In the end, my approach was not sophisticated enough, and I had to abandon it. That left me without enough time to work on the medium. I was a few minutes away from putting the finishing touches on by the end.&lt;br /&gt;&lt;br /&gt;So, the TCCC07 is basically over for me. But as somebody pointed out, that also means I can relax and enjoy the rest of it instead of stressing.&lt;br /&gt;&lt;br /&gt;So far I haven't felt motivated to take any pictures. When I've been outside there hasn't really been time, and the contest area looks basically the same as every other time.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4056890446754904348?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4056890446754904348/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4056890446754904348' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4056890446754904348'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4056890446754904348'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/11/you-win-some-you-lose-some.html' title='You win some, you lose some'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-6190196494192569831</id><published>2007-10-31T11:41:00.000-07:00</published><updated>2007-10-31T11:50:11.167-07:00</updated><title type='text'>They put a man WHERE?</title><content type='html'>Well, I am now less than impressed with America. This is the nation that &lt;span style="font-style: italic;"&gt;invented&lt;/span&gt; fast food and instant service. But on arriving in Washington, along with roughly 1000 other people, we find that the number of INS offices available is... 4. 3 of which are only serving US citizens. Fortunately, somebody there realised the situation, took decisive action, and increased the number to... 5 (2 for non-US). I was in that queue for an hour, and if it had been much longer I might even have missed my next flight.&lt;br /&gt;&lt;br /&gt;Now I know why foreigners who wants to take a tour up to the ISS goes to Baikonur rather than on the shuttle. I can just picture the scene:&lt;br /&gt;Tourist: My shuttle leaves in 15 minutes and I have to be on it! I paid $20 million and I have command duties.&lt;br /&gt;INS: I'm sorry sir, you haven't completed item 16 on your INS form. You'll have to go to the back of the line. You'll be booked onto the next shuttle.&lt;br /&gt;&lt;br /&gt;But, here I am in Disneyworld, and it's just as packaged and tinkly and glitzy and fake and horrible as I expected, except that driving through it, all you see is trees and grass and canals.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-6190196494192569831?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/6190196494192569831/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=6190196494192569831' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6190196494192569831'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6190196494192569831'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/10/they-put-man-where.html' title='They put a man WHERE?'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-205138959421945567</id><published>2007-10-30T05:12:00.000-07:00</published><updated>2007-10-30T05:37:19.307-07:00</updated><title type='text'>Going nowhere really ****ing fast</title><content type='html'>So, SAA did not, in fact, manage to take me to Washington yesterday. This is in spite of assurances that&lt;br /&gt;&lt;ul&gt;&lt;li&gt;the plane from Cape Town would leave at 3 (the TV screens), or at 3:15 (announcement), or at 3:30 (what another passenger was told when asked), it in fact left at 4:15.&lt;/li&gt;&lt;li&gt;the outgoing plane to Washington would be delayed and we'd have time to get on it.&lt;/li&gt;&lt;/ul&gt;So, I'm well cheesed off. I spent the night in Johannesburg, and to make things more fun, the flight to Washington was held just long enough for them to rush my luggage on board. So I'm wearing mostly the same clothes as yesterday and until whenever I succeed in meeting my luggage, while my luggage is going round and round a carousel in Washington, or possibly it's in the baggage enquires office, or possibly it's been blown up as unattended baggage (hopefully not). Of course, nobody tells me any of this when I go to the transfers desk. It's back and forth, out through passport control and customs, over to domestic, back to international, upstairs, downstairs, back into international baggage hall, find this out, then back through customs again.&lt;br /&gt;&lt;br /&gt;Hopefully the next post will be a little more positive and from a little further away...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-205138959421945567?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/205138959421945567/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=205138959421945567' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/205138959421945567'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/205138959421945567'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/10/going-nowhere-really-ing-fast.html' title='Going nowhere really ****ing fast'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-8300211558477044080</id><published>2007-10-29T04:51:00.000-07:00</published><updated>2007-10-29T04:57:40.312-07:00</updated><title type='text'>And for my next trip...</title><content type='html'>Actually, I missed blogging about my last trip: a quick hop over to Cambridge for a job interview with &lt;a href="http://www.arm.com/"&gt;ARM&lt;/a&gt;. I'll post some photos at some stage, since Cambridge is a rather pretty and historical place. For those not in the loop, I've accepted the job and will be moving there indefinitely in January.&lt;br /&gt;&lt;br /&gt;However, this trip is the next TopCoder tournament, the &lt;a href="http://www.topcoder.com/tc?module=Static&amp;amp;d1=tournaments&amp;amp;d2=tccc07&amp;amp;d3=about"&gt;TCCC 2007&lt;/a&gt; in Disneyworld. So far I'm still sitting in Cape Town, because my flight to Joburg has been delayed an hour. It should be an interesting time in Joburg because I'll have very little time to make the connection, and getting from domestic to international requires negotiating a maze where all the signposts are lies.&lt;br /&gt;&lt;br /&gt;More to following, but probably not from Joburg...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-8300211558477044080?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/8300211558477044080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=8300211558477044080' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8300211558477044080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8300211558477044080'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/10/and-for-my-next-trip.html' title='And for my next trip...'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-3033786408804113248</id><published>2007-06-30T10:38:00.000-07:00</published><updated>2007-06-30T10:48:58.436-07:00</updated><title type='text'>A tragedy of errors</title><content type='html'>The final was quite disappointing, at least partially because I came 7th out of 8 and lost over 100 rating points. In the end, everybody solved the easy problem and nobody solved anything else, so the winner (Jan Kuipers) was simply whoever saw the solution to this problem the fastest. The tragedy is that tomek and I both solved the medium and darnley solved the hard, but all of us had teeny tiny errors: tomek thought that a certain case wasn't worth worrying about so he disabled a check for it (enabling it makes it right), I got a second root from an equation and thought it wouldn't matter if I just tried both (a one-character change disables the bogus root and fixes it), and darnley had some tiny error too.&lt;br /&gt;&lt;br /&gt;The closing reception was a dinner at the next-door hotel/casino, Treasure Island. It turned out to be outside by the pool, which was rather warmer than I was hoping for, but at the end of the evening we went inside to the Ben &amp; Jerry's (ice-cream shop). On returning to the hotel to go to bed I had a surreal if somewhat typically Vegas experience: two men and a woman get into the elevator with me, looking a bit drunk; one of the guys then starts telling me how they have hookers in their room and wants me to come and watch.&lt;br /&gt;&lt;br /&gt;Today I plan to try to see a few things (there's supposed to be tigers on show near a side entrance to the casino, and if I have the energy I'll go to the Bellagio to see the fountains this evening), but mostly catching up on email and blogging and work and reading and so on. Also I'll be trying to figure out how to use the iPod shuffle that I apparently won in the Verisign trivia competition. Unfortunately all the music on my laptop is in Ogg, which the Shuffle won't play, so I'm converting it all to AAC.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-3033786408804113248?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/3033786408804113248/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=3033786408804113248' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3033786408804113248'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3033786408804113248'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/06/tragedy-of-errors.html' title='A tragedy of errors'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-5721119991664126600</id><published>2007-06-29T07:04:00.000-07:00</published><updated>2007-06-29T07:18:38.329-07:00</updated><title type='text'>I see blue people</title><content type='html'>First up: the wildcard round. tomek failed 2 of the 3 problems, but was fast enough on the remaining one (the medium) to take second place and advance to the final. That is going to significantly increase the level of competition.&lt;br /&gt;&lt;br /&gt;The Blue Man Group was more or less as I expected, i.e., a heck of a lot better than the Tournament of Kings. Some amazing visual comedy and mime (not something I'd usually see, but which I really enjoyed), some music, mainly drumming (looked skilled but didn't excite me), and some just plain weird stuff (some of it pretty amusing). At one point they had TV screens suspended from the roof in front of each guy's face, with the face on the TV screen. There was amazing synchronisation: one guy would squirt some shaving cream onto another's face (with the cream appearing on his TV-screen face). Then he changed the third TV to an advert for the razor, plucked the razor out of the add (with the hand on the TV screen perfectly synched with his real arm), and proceeded to shave the second guy. Oh, and actually only two of them were on stage at this point - the third guy was just the head on the TV. Sorry, no photos allowed, but I do have some other random pictures I'll post later.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-5721119991664126600?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/5721119991664126600/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=5721119991664126600' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5721119991664126600'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5721119991664126600'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/06/i-see-blue-people.html' title='I see blue people'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-6786736856830473988</id><published>2007-06-28T13:34:00.000-07:00</published><updated>2007-06-28T13:50:16.977-07:00</updated><title type='text'>Wootness</title><content type='html'>This post is written by the #2 ranked TopCoder in the world, until at least 5:40pm. I won my semi-final room, so I'm advancing straight to the finals, and a minimum of $1000, along with darnley. As a result, it also boosted my rating to 3366, just ahead of tomek (and still way behind the #1 Petr with 3753).&lt;br /&gt;&lt;br /&gt;The final is tomorrow, at 1:30pm PDT. There will be a live web-cast on &lt;a href="http://dev.aol.com"&gt;http://dev.aol.com&lt;/a&gt; (sorry South Africans, you may well not have enough bandwidth), and if you're already a TopCoder, you can watch the action in the arena applet. Not much more to say at this point; more info after the wildcard round.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-6786736856830473988?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/6786736856830473988/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=6786736856830473988' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6786736856830473988'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6786736856830473988'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/06/wootness.html' title='Wootness'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-3384194090338818483</id><published>2007-06-28T06:29:00.000-07:00</published><updated>2007-06-28T07:17:07.399-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TCO'/><title type='text'>Between our quests we sequin vests and impersonate Clark Gable</title><content type='html'>Firstly, the second semifinal: tomek, the highest-ranked coder in the contest, came third, and will therefore have to compete in the wildcard round for a place in the final. He was unlucky in having a silly bug in his easy problem and also failing the hard problem (along with everybody else) - he only made the wildcard because there were a lot of failures, and only one person got even two problems right.&lt;br /&gt;&lt;br /&gt;Now, for the non-geeks reading my blog: last night we went to see "Tournament of Kings" at Excaliber, which is, wait for it... a casino! Not only is it a casino, but it's done up in a very fake garish Disney-esque castle with garish colours that probably didn't exist in the middle ages, or indeed before 1960. The actual show featured a bunch of "knights" (who were at the same time kings of assorted countries) doing jousting and sword-fighting and stuff, along with some plot involving some evil lord with demonic laughter, all of which played very loose with history, culture and mythology (it was supposedly King Arthur in charge of it all, and for some reason the kings from these other countries were the Knights of the Round Table, hence the title). The whole thing was excessively loud and seemed aimed at 10-year olds. There was also a bit tacked on the end with a bunch of acrobats, who climbed on top of each other a lot, although not in any depraved way.&lt;br /&gt;&lt;br /&gt;The plus side of the whole adventure is that I actually got to see a genuine Vegas casino wedding chappel. Folks, this is not a mythical stereotype, it really exists. You can see it directly behind me, next to the Pizza Hut.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_HsJN6XIoLiw/RoPClWKSd7I/AAAAAAAAAAs/SFNol_mefCM/s1600-h/chappel.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_HsJN6XIoLiw/RoPClWKSd7I/AAAAAAAAAAs/SFNol_mefCM/s320/chappel.jpg" alt="" id="BLOGGER_PHOTO_ID_5081118751463733170" border="0" /&gt;&lt;/a&gt;Tonight is The Blue Man Group, which I suspect will be a bit arty for my taste, but will hopefully have a degree of intellectual engagement more appropriate to the generally intelligent people at the TCO. Also, I compete in my semifinal in just over 3 hours. Since I still have jet-lag, it's currently 6:40am and I'm drafting this entry to kill time, and also sitting in the dark so as not to disturb my roommate.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-3384194090338818483?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/3384194090338818483/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=3384194090338818483' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3384194090338818483'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/3384194090338818483'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/06/between-our-quests-we-sequin-vests-and.html' title='Between our quests we sequin vests and impersonate Clark Gable'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_HsJN6XIoLiw/RoPClWKSd7I/AAAAAAAAAAs/SFNol_mefCM/s72-c/chappel.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-8992301894391089113</id><published>2007-06-27T14:52:00.000-07:00</published><updated>2007-06-27T14:57:49.251-07:00</updated><title type='text'>Upset in first semi</title><content type='html'>Most of the readers probably don't know the structure of the algorithm contest at the final. The 48 contestants are split into 3 semifinals with 16 competitors each. The top 2 from each semi advance to the final. There is also a wildcard round, with positions 3-6 from each of the semis, and the top 2 from there also advance to the final.&lt;br /&gt;&lt;br /&gt;The first semi was this morning. ACRush, the top seed remaining in the tournament (after Petr, who is miles ahead of everybody else, made a mistake in the last online round), has been knocked out completely. That leaves tomek as the most likely favourite; he will be competing this afternoon. I'm on tomorrow, so fortunately I don't have to go up against him, although there are plenty of scary people in my semifinal. Wish me luck!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-8992301894391089113?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/8992301894391089113/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=8992301894391089113' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8992301894391089113'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/8992301894391089113'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/06/upset-in-first-semi.html' title='Upset in first semi'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-5809818839683887633</id><published>2007-06-26T14:34:00.000-07:00</published><updated>2007-06-26T15:18:09.494-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TCO'/><title type='text'>Wear sunscreen</title><content type='html'>This morning I walked for a couple of kilometres into Vegas, partly to see the place and stretch my legs, and mostly to go to Barnes and Noble to look for books that are either expensive or unobtainable in South Africa. If I'd known&lt;br /&gt;&lt;ol&gt;&lt;li&gt;How far it was&lt;/li&gt;&lt;li&gt;How hot it was outside (it's apparently 40 degrees right now)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;How small the B&amp;N was, especially the SF section&lt;/li&gt;&lt;/ol&gt;I don't think I would have bothered. In the end I didn't buy any books, although I did buy a DVI cable from the Best Buy next door. But I do have some photos, which I'll paste in here just as soon as I figure out how MacOS works, which I'm using because the WiFi driver seems to handle weak signals better than the Linux one. Actually iPhoto looks pretty nice.&lt;br /&gt;&lt;br /&gt;Ok, here's the lobby. It has this amazing mini-rainforest in a dome, and then on the left you can see bits of the casino, which completely ruins the effect.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_HsJN6XIoLiw/RoGLkMOowUI/AAAAAAAAAAc/SIki6XVPe7A/s1600-h/IMG_0007.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 414px; height: 310px;" src="http://bp3.blogger.com/_HsJN6XIoLiw/RoGLkMOowUI/AAAAAAAAAAc/SIki6XVPe7A/s320/IMG_0007.jpg" alt="" id="BLOGGER_PHOTO_ID_5080495308524798274" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;And here's the hotel from the outside:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_HsJN6XIoLiw/RoGNCcOowVI/AAAAAAAAAAk/lYvLSnInGFs/s1600-h/IMG_0008.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_HsJN6XIoLiw/RoGNCcOowVI/AAAAAAAAAAk/lYvLSnInGFs/s320/IMG_0008.jpg" alt="" id="BLOGGER_PHOTO_ID_5080496927727468882" border="0" /&gt;&lt;/a&gt;There was also an amusing moment at the Subway yesterday, apart from it being in a casino. I order a small drink and start trying to put Pepsi in it, but only fizzy water comes out. The guy says to use the other dispenser machine, and also gives me a new cup that isn't half-full of fizzy water. But since he's already feeling bad for accidentally putting mayo on my sub, he replaces my normal-sized cup with a &lt;span style="font-weight: bold;"&gt;bucket&lt;/span&gt;, or at least that's what it looked like. So, I've got a nice, fresh, healthy low-fat sub (apart from the unwanted mayo)... and a bucket-full of sugary crap. And people wonder why America has an obesity problem.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-5809818839683887633?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/5809818839683887633/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=5809818839683887633' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5809818839683887633'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5809818839683887633'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/06/wear-sunscreen.html' title='Wear sunscreen'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_HsJN6XIoLiw/RoGLkMOowUI/AAAAAAAAAAc/SIki6XVPe7A/s72-c/IMG_0007.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-1596129786891785497</id><published>2007-06-25T19:04:00.000-07:00</published><updated>2007-06-25T19:23:57.720-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TCO'/><title type='text'>On second thoughts, let us not go there. It is a silly place.</title><content type='html'>And Vegas is just as silly as all the TV and stereotypes led you to believe. The hotel part of the Mirage is build as three wings on top of the casino, which meet at a bank of elevators. But the elevators are nowhere near the lobby. They actually make you walk past hundreds of slot machines to get to the elevators. The lobby is actually really tasteful and impressive though (maybe some pictures tomorrow), it's a pity to spoil it with the tacky, garish, noisy casino nonsense.&lt;br /&gt;&lt;br /&gt;That I was kind of expecting. The surprise came when I went to Subway to eat dinner. I'd already found one from Google Maps that was about 500 metres from the hotel, on the Strip. What it turned out to be in practice is a casino with a Subway stuffed into one corner - if I hadn't spotted the signature subway decor I would have thought I'd walked into the wrong place.&lt;br /&gt;&lt;br /&gt;Anyway, now I must try to convince my body clock that it is 7pm, which is in fact too early to go to bed. If I get really desperate I could always work on my thesis, but in the meantime I have the remaining half, or about 600 pages, of Peter Hamilton's &lt;span style="font-style: italic;"&gt;The Reality Dysfunction&lt;/span&gt; - when he writes a space opera, he doesn't muck about. If you're into space operas it's not half bad (in spite of his somewhat disturbing obsession with sex), although so far not as good as &lt;span style="font-style: italic;"&gt;Pandora's Star&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;Judas Unchained&lt;/span&gt;,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-1596129786891785497?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/1596129786891785497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=1596129786891785497' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1596129786891785497'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1596129786891785497'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/06/on-second-thoughts-let-us-not-go-there.html' title='On second thoughts, let us not go there. It is a silly place.'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-4003403387370706254</id><published>2007-06-24T23:40:00.000-07:00</published><updated>2007-06-25T19:30:00.395-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TCO'/><title type='text'>The horror, the horror</title><content type='html'>Well, not a good start to the trip. I start off in Jhb trying to find the VAT office to register my new laptop and camera for re-importation. I made the mistake of asking the first warm body I found, who cheerfully told me that it was after security. So I go through security, don't have to wait for too long at passport control despite the strike, and find... a VAT refund office for tourists, who cheerfully inform me that the place I wanted was before security. At this point I have insufficient time to fight my way back through security twice and stand in a queue to have my goods inspected, so I guess I'll just have to hope that the customs officials on my return are either friendly or on strike.&lt;br /&gt;&lt;br /&gt;Next I arrive in Frankfurt, my least favourite airport. The only free places to sit are full of stale cigarette smoke, but that part only comes later. I arrived in a terminal full of signs to places like A19-26 but nothing actually helpful and couldn't find a Condor Airlines checkin in the international area, so I went through passport control to navigate the maze to find a Condor checkin.  "This isn't an eticket," they say, "you need to collect a paper ticket". So I get directed off the Condor ticket desk, who say they don't have it, but since it was booked through Lufthansa, they might know. So I tootle over to Lufthansa, in a different part of the airport, who tap some keys and tell me that the ticket was issued to the travel agent, and the only thing they can do is treat it as a lost ticket, for which privilege I may pay E100. Wishing to get on the flight, I have now done so. Two passport controls (thank goodness for an EU passport!), three counters and a security check later (and by the looks of things, possibly a second security check???), I'm slightly cheesed off, and am getting on to the coffee and biscuits.&lt;br /&gt;&lt;br /&gt;Oh, and the internet isn't free either. I'm sure I somehow got on free last time I was in Frankfurt, but apparently it is not to be.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-4003403387370706254?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/4003403387370706254/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=4003403387370706254' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4003403387370706254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/4003403387370706254'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/06/well-not-good-start-to-trip.html' title='The horror, the horror'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-7195103625735224837</id><published>2007-06-24T04:41:00.000-07:00</published><updated>2007-06-25T19:30:00.395-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TCO'/><title type='text'>How the other half live</title><content type='html'>I'm posting on my blog, which means it must be time for me to go gallivanting again. This time it is time for the &lt;a href="http://www.topcoder.com/tc?module=Static&amp;d1=tournaments&amp;amp;d2=tco07&amp;amp;d3=about"&gt;TopCoder Open 2007,&lt;/a&gt; to be held in Las Vegas, Nevada. Not only do TopCoder fly everyone out, they are also putting us up and holding the contest in the Mirage! If you're going to follow the contest, I'm in Semifinal room 3 (on Thursday), and the final is on Friday.&lt;br /&gt;&lt;br /&gt;This time I have new perks. I've now done so much flying with SAA and partners that I've been upgraded to Silver class, which gets me into the business class lounge even though I'm flying economy. I'm sitting in the lounge in Cape Town now. I think I'll go and get myself a cup of tea, while I can still get it made right (see my previous posts for rants about how Americans can't make a cup of tea to save their lives).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-7195103625735224837?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/7195103625735224837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=7195103625735224837' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7195103625735224837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7195103625735224837'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/06/how-other-half-live.html' title='How the other half live'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-7451555505407620772</id><published>2007-05-04T01:13:00.000-07:00</published><updated>2007-05-04T01:29:53.418-07:00</updated><title type='text'>The wonderful world of corporate sponsorship</title><content type='html'>Yes, I'm travelling again, this time to Johannesburg, where the weather is nice but incredibly dry. The event is the &lt;a href="http://www.itchallenge.standardbank.co.za/"&gt;Standard Bank IT Challenge&lt;/a&gt;, a programming contest which Standard Bank throws insane amounts of money at. They put us in the Park Hyatt (where a room for the night is more than my rent), flew judges out from England business class, and handed out MacBook Pros as prizes.&lt;br /&gt;&lt;br /&gt;The regional (to determine which team advances from each university) was on Saturday, and was actually the tougher part. UCT fielded some very impressive competition, and we (myself, Carl Hultquist, Chris de Kadt and James Gray) only just won in the last ten minutes. If the results from all the regionals were merged, UCT took the top 5 places. Us and one other UCT team solved 4, the next other university was Stellenbosch with 2.&lt;br /&gt;&lt;br /&gt;With that out of the way, the finals felt almost like taking candy from babies. We solved all 6 questions with about an hour to spare (much to the annoyance of the judges, who thought they'd upped the difficulty to challenge us) and we somehow did it without a single wrong submission; Stellenbosch came in second with only 3. So, the moral of the story is that UCT rocks at programming, and us old dogs can still show the young guys a thing or two. Also, MacOS X is shiny, but I don't think it will be too long before I'm installing Gentoo as well (about the first thing I did was download Firefox for Mac so that I could actually have TABS).&lt;br /&gt;&lt;br /&gt;So, as may be inferred, I'm now sitting in the hotel playing with my shiny new MacBook Pro, killing time until it's time to go to the airport. After that the hard work starts, since we're going straight from this to coach at an olympiad training camp.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-7451555505407620772?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/7451555505407620772/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=7451555505407620772' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7451555505407620772'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7451555505407620772'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2007/05/wonderful-world-of-corporate.html' title='The wonderful world of corporate sponsorship'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-1300000698790044372</id><published>2006-11-19T23:21:00.000-08:00</published><updated>2006-11-19T23:38:06.128-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TCCC'/><title type='text'>Bad tea</title><content type='html'>Firstly, the TCCC final: it sucked. The "easy" problem took forever to get working, a stupid bug killed the medium, and all this left me without time to do the hard, so I ended up stone last. Oh well, at least I made the finals.&lt;br /&gt;&lt;br /&gt;The more I go to the USA, the more I agree with Douglas Adams that tea is not part of American culture (the way it is in British culture) simply because they don't drink proper tea. I actually had some decent tea in New York with the Google Code Jam finals, but this time it was back to the rubbish. To start with, it seems that herbal stuff is now fashionable, instead of good old British-style Ceylon tea. Then, they don't know how to make it. To make a proper British cup of tea, the water has to be boiling when it hits the teabag. An insulated container with a tap, filled with water that was boiling half an hour ago, just doesn't cut it. Apparently there is also a nation-wide shortage of plastic spoons, because both at the hotel and on United Airlines, the only implement provided to stir the tea was a short, thin plastic straw. Think about this: the larger the cross-section, the better the stirrer. A thin plastic straw is almost completely useless. My finger would be more effective.&lt;br /&gt;&lt;br /&gt;I had a wonderful cup of tea on SAA and a spoon with which to stir it, which just proves that it can be done right even in a low-pressure environment where water boils at a lower temperature.&lt;br /&gt;&lt;br /&gt;Anyway, I'm posting this from back in South Africa, which means that this is the last I'm likely to post until either I go away again (nothing planned at the moment) or something annoys me enough to write about it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-1300000698790044372?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/1300000698790044372/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=1300000698790044372' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1300000698790044372'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/1300000698790044372'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/11/bad-tea.html' title='Bad tea'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-6788427167018810187</id><published>2006-11-16T14:57:00.000-08:00</published><updated>2006-11-16T15:01:13.650-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TCCC'/><title type='text'>The Enigma</title><content type='html'>No, not an enigma, the Enigma. As an advertising stunt, the NSA has borrowed a genuine working WWII German Enigma machine. These were used to encode a lot of German military signal traffic, and was broken by the Allies - quite possibly changing the course of history.&lt;br /&gt;&lt;br /&gt;Here's me with the Enigma:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4977/3887/1600/enigma.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger2/4977/3887/320/enigma.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-6788427167018810187?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/6788427167018810187/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=6788427167018810187' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6788427167018810187'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/6788427167018810187'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/11/enigma.html' title='The Enigma'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-5630083070942045468</id><published>2006-11-16T12:53:00.000-08:00</published><updated>2006-11-16T12:59:51.425-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TCCC'/><title type='text'>Curses, said the red coder</title><content type='html'>The curses are about the evils of jet-lag. Tuesday night I woke up a few times but managed to get to sleep again each time. Last night I woke up at about 2:30am and never really managed to get back to sleep.&lt;br /&gt;&lt;br /&gt;Nevertheless, it seems that I haven't completely lost my touch, because I managed to pull off second place in my semi-final (despite making a mess of the medium problem, although it turned out not to matter). That puts me straight through to the finals, without having to compete in the wildcard room this afternoon.&lt;br /&gt;&lt;br /&gt;For those of you with a decent internet connection, the final will be &lt;a href="http://dev.aol.com/"&gt;webcast&lt;/a&gt; tomorrow. It's at 1:30pm PST (11:30pm SAST - a bit late I know). Hopefully I can kick butt, especially since several of the top seeds have already been eliminated and some others must compete for the 2 slots from the wildcard round.&lt;br /&gt;&lt;br /&gt;No photos yet, partially because I haven't been out to see any sights (I don't think there are many), and partly because I haven't had time to download them off my camera.&lt;br /&gt;&lt;br /&gt;Gotta go - the NSA is giving a presentation. Should be... interesting.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-5630083070942045468?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/5630083070942045468/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=5630083070942045468' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5630083070942045468'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/5630083070942045468'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/11/curses-said-red-coder.html' title='Curses, said the red coder'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-648157399355283482</id><published>2006-11-15T12:03:00.000-08:00</published><updated>2006-11-15T12:05:51.951-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TCCC'/><title type='text'>TCCC round 1</title><content type='html'>I'm now at the TopCoder event. The first algorithm semi-final took place this morning. They've got monitors spread around the room that mirror what is on the contestant's monitors, which makes it into more of a spectator sport that I would have expected. It's only really other programmers who are likely to find it that interesting though. The organisation is actually extremely slick: big screens at the front which show the standings, booths for the sponsors, the works. I'll post pictures when I get around to it. The first semifinal was quite interesting: the number 1 seed was knocked out completely. Hopefully the same thing doesn't happen to me tomorrow morning.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-648157399355283482?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/648157399355283482/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=648157399355283482' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/648157399355283482'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/648157399355283482'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/11/tccc-round-1.html' title='TCCC round 1'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-7203228464683919255</id><published>2006-11-14T15:50:00.000-08:00</published><updated>2006-11-14T15:52:52.468-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TCCC'/><title type='text'>Tales from a confusing airport</title><content type='html'>I'm currently in LAX (that is, while writing this - it's unlikely to be the case when you read this). I think it is one of the worst signposted airports I've been through. I knew (but only because I'd previously read my itinerary and made a note of it) that I had to get to terminal 8. After walking out of customs there was ground transportation etc, but nothing to indicate how to get to any other terminal. After asking someone, I learned that I should go up an escalator, which deposits me at the curbside where people get dropped off, then walk in a particular direction. I was at terminal 6, after a short walk I was at terminal 7, then... that was the end of the building. I ended up walking inside and noticing I sign for a particular gate range which included the gate I'd noticed was the departure gate for my flight, so I followed that and ended up where I needed to be. Heaven help anyone who doesn't speak English or use the Latin symbols for numbers.&lt;br /&gt;&lt;br /&gt;On the plus side, the WiFi is free :-)&lt;br /&gt;&lt;br /&gt;Anyway, if you haven't been following, this trip is for the &lt;a href="http://www.topcoder.com/tc?module=Static&amp;d1=tournaments&amp;amp;d2=tccc06&amp;d3=about"&gt;TopCoder Collegiate Challenge&lt;/a&gt;. Unlike the Google Code Jam, they've put me on the flight schedule from hell: Cape Town - London - Los Angeles - San Diego, and returning San Diego - San Francisco - Frankfurt - Cape Town, with about 7 hours of temporal homicide in Frankfurt and arriving in Cape Town at 6am. The&lt;br /&gt;only good news is that my first round isn't until Thursday. I don't know what internet access will be like, so I'll post more if and when I can.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-7203228464683919255?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/7203228464683919255/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=7203228464683919255' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7203228464683919255'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/7203228464683919255'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/11/tales-from-confusing-airport.html' title='Tales from a confusing airport'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-116230368102736810</id><published>2006-10-31T06:05:00.000-08:00</published><updated>2006-11-14T15:44:07.553-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='CodeJam'/><title type='text'>Cattle run</title><content type='html'>My plan for Saturday was to wander around New York and see some of the sights. It rained most of the morning and so mostly what I saw was wet socks, thanks to my well-ventilated shoes. It cleared up in time for the Google-sponsored boat cruise to Liberty Island (where the statue is).&lt;br /&gt;&lt;br /&gt;In the evening I finally got down to the Empire State building. I had the impression that I could walk in, buy a ticket and then wait for my turn on an elevator. Guess again - it is a giant machine for turning tourists into money, somewhat in the manner that a slaughterhouse turns cows into fillet steak. Apart from the basic ticket, there were hundreds extra options which you were pushed to buy with obnoxious advertising. Some examples: an audio tour; a view from the 102nd floor instead of the 86th; some VR tour; you could even pay an extra $24 to jump the queue! They funnel you along between ropes airport style (even with a metal-detector+X-ray check), and part of funnel takes you past a green screen where they take photos of everyone and later try to sell you pictures of yourself matted over various backgrounds for $20.&lt;br /&gt;&lt;br /&gt;For all that, it's a reasonable view, but probably more worth doing in daytime because it's difficult to make things out at night (I also managed to put my camera onto a slow-exposure setting, so most of my photos are blurry). I took the audio tour, which consists of some former cab-driver telling you some interesting things about what buildings to look at and some history, filled with lots of waffle about how wonderful New York is, how wonderfully ethnically diverse it is, and what he did when he was a boy growing up in New York. He got annoying pretty quickly.&lt;br /&gt;&lt;br /&gt;Sunday I spent with my cousin Eileen. We didn't do much of the tourist stuff, more shopping. We went to a computer store where I found a USB to PS/2 adaptor (so I can connect my PS/2 keyboard to my laptop), and to Barnes and Noble (a bookstore - in this case a five-storey one) where I found a number of interesting new books in hard-cover: a Forsyth (the Afghan), the next in the Saga of Seven Suns (which was already available several months ago, but apparently still isn't in paperback), and the first half of the finale of the Dune series (Hunters of Dune). I didn't buy any of them but it gives me some things to keep an eye out for in paperback.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://people.cs.uct.ac.za/%7Ebmerry/photos/codejam2006/"&gt;Photos&lt;/a&gt; have also been updated. I'm now back in Cape Town, so this is probably the last you'll hear until the TopCoder Collegiate Challenge in mid-November.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-116230368102736810?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/116230368102736810/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=116230368102736810' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/116230368102736810'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/116230368102736810'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/10/cattle-run.html' title='Cattle run'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-116203377756980686</id><published>2006-10-28T03:59:00.000-07:00</published><updated>2006-11-14T15:44:07.442-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='CodeJam'/><title type='text'>Google Code Jam (not edible)</title><content type='html'>As promised, I'm posting again now that I'm gallivanting. The current gallivant is to New York, for a programming competition called the Google Code Jam. It's powered by TopCoder (a company that runs a whole bunch of contests). There are some scarily good people around.&lt;br /&gt;&lt;br /&gt;Due to difficulty with internet access (over an hour on the phone with some surprisingly clued up tech support people - a nice change from SA), I'm only posting this now, after the contest is already over. I came 14th (our of 100 at the finals and about 20000 who signed up). If I hadn't done some silly things during the contest I could probably have made the top 10, but oh well.&lt;br /&gt;&lt;br /&gt;Today and tomorrow are free time/sightseeing (there is an organised cruise at 3pm this afternoon). Tomorrow I'm meeting up with my cousin and just spending some time in New York. Not quite sure what I'll do today.&lt;br /&gt;&lt;br /&gt;If the wireless connection I'm using holds up, I'll see if I can post some pictures a bit later (I found a wireless signal that requires signup for web, but allows other ports, so I'm tunneling out to UCT and back out via the proxy, and I have to tilt the laptop at exactly the right angle on my lap while sitting in just the right place for it to work).&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Update&lt;/span&gt;: photos at &lt;a href="http://people.cs.uct.ac.za/%7Ebmerry/photos/codejam2006/"&gt;http://people.cs.uct.ac.za/~bmerry/photos/codejam2006&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-116203377756980686?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/116203377756980686/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=116203377756980686' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/116203377756980686'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/116203377756980686'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/10/google-code-jam-not-edible.html' title='Google Code Jam (not edible)'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-115480211308624498</id><published>2006-08-05T11:15:00.000-07:00</published><updated>2006-11-14T15:44:07.331-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SIGGRAPH2006'/><title type='text'>Boston Tea Party</title><content type='html'>I'm now at Joburg airport on my way back to Cape Town, so this will probably be my last post until I next gallavant (or even go) somewhere else.&lt;br /&gt;&lt;br /&gt;I have now established the true reason that Americans gathered in Boston and dumped huge quantities into the harbour. Don't be fooled by the history books. The real reason is that &lt;span style="font-style: italic;"&gt;the tea in Boston is really awful&lt;/span&gt;. I had about four cups of tea while I was there (two in the hostel and two different brands in the convention centre), and not one of them measured up to the tea I got on SAA coming home. One of them I didn't even finish. When airline tea is a step up, you know you have a problem.&lt;br /&gt;&lt;br /&gt;So I am now looking forward to getting home before I fall asleep and my face hits the keasdynboaerthsadw.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-115480211308624498?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/115480211308624498/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=115480211308624498' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115480211308624498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115480211308624498'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/08/boston-tea-party.html' title='Boston Tea Party'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-115462363086265186</id><published>2006-08-03T09:43:00.000-07:00</published><updated>2006-11-14T15:44:07.256-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SIGGRAPH2006'/><title type='text'>Free stuff</title><content type='html'>So, having complained about limited freebies in the last post, I'm now the proud owner of, not one, not two, but three OpenGL T-Shirts. This was as a result of trivia questions (about OpenGL) thrown in during the OpenGL meeting at SIGGRAPH. I've developed an OpenGL debugger, during which I've had to look through some of the more arcane and bizarre parts of OpenGL, and finally it was good for something!&lt;br /&gt;&lt;br /&gt;I also gave my presentation this morning, which went fairly well. There isn't too much to say about that, but I guess no news is good news.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-115462363086265186?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/115462363086265186/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=115462363086265186' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115462363086265186'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115462363086265186'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/08/free-stuff.html' title='Free stuff'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-115454800209850367</id><published>2006-08-02T12:41:00.000-07:00</published><updated>2006-11-14T15:44:07.187-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SIGGRAPH2006'/><title type='text'>It's not a bug, it's a feature!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/6686/3470/1600/upesc.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/6686/3470/320/upesc.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Yes, that's right. Not only do both escalators go down only, but somebody has addressed the problem by setting up a honking big sign to tell you that yes, this is a known bug, and the workaround is to go over to the other side of the building, take an up escalator, then come back again on the upper floor.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-115454800209850367?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/115454800209850367/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=115454800209850367' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115454800209850367'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115454800209850367'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/08/its-not-bug-its-feature.html' title='It&apos;s not a bug, it&apos;s a feature!'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-115446733941571338</id><published>2006-08-01T14:10:00.000-07:00</published><updated>2006-11-14T15:44:07.116-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SIGGRAPH2006'/><title type='text'>Some drugs for that man</title><content type='html'>Right, I need to get either some sleep, or failing that, some caffiene and sugar. If you know me then you know that in South Africa I mainly subsist on apple juice, which is not known for it's caffiene content. The advantage is that I have not really developed an immunity, so I can actually wake myself up with coke. Unfortunately, the catering at the conference has several drawbacks:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;There is no coke, only pepsi, which doesn't seem to have the same sugar content.&lt;/li&gt;&lt;li&gt;Nothing is free.&lt;/li&gt;&lt;li&gt;It is in fact quite expensive - $2.75 for a small bottle of pepsi.&lt;/li&gt;&lt;/ol&gt;Yesterday I bought a similarly-sized bottle of coke at a convenience store for $1.29, but today I forgot.&lt;br /&gt;&lt;br /&gt;Papers-wise, possible the most informative paper I've seen today was discussing the architecture of DirectX 10. While it isn't OpenGL, it will direct what graphics hardware will do and thus eventually what OpenGL will do. The big new thing is the Geometry Shader, which operates on primitives rather than vertices. It also allows you to do geometry amplification, such as tesselation, extrusion or shadow volume creation. Another cool feature is constant buffers, which make it easier to switch shader constants at various levels (true constant, frame, object, bone etc).&lt;br /&gt;&lt;br /&gt;The exhibition has also started today. I was led to believe that it would be wall-to-wall freebies, but was quite disappointed. I was really hoping to get a free backpack, since the straps on the one I'm using are held on by a few threads. However, I learned some interesting things at the NVIDIA booth. In particular, the GPU performance counters will very soon be available from a library under Linux, which will mean that I can get performance information about my thesis app without trying to fix the fact that it crashes under Windows.&lt;br /&gt;&lt;br /&gt;Right, I'm off to buy a copy of the proceedings, then head back and hope that the weight of the proceedings doesn't cause my bag to finish disintegrating.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-115446733941571338?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/115446733941571338/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=115446733941571338' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115446733941571338'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115446733941571338'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/08/some-drugs-for-that-man.html' title='Some drugs for that man'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-115436710676668126</id><published>2006-07-31T10:19:00.000-07:00</published><updated>2006-11-14T15:44:06.985-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SIGGRAPH2006'/><title type='text'>Musings on Boston Cuisine and WMP</title><content type='html'>Judging from the restaurants I've seen around, Bostonians seem to eat (in this order):&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Pizza&lt;/li&gt;&lt;li&gt;Eastern food (Indian, Thai, Japanese etc)&lt;/li&gt;&lt;li&gt;Typical American junk food (burgers)&lt;/li&gt;&lt;/ul&gt;So far I have seen 1 McDonalds, 1 Burger King and 1 Wendys, but right outside my hostel are two pizza places right next to each other.&lt;br /&gt;&lt;br /&gt;This morning I did the speaker preparation bit and discovered just how truly useless Windows Media Player is. The catch is that they want you to upload your presentation to their servers, which push things out to machines installed in the conference rooms (rather than using your own laptop). I have a few video clips with my presentation, which at some points I wish to pause. However, even in "full-screen" mode, WMP shows some panels when it is paused (and also whenever it feels like it). The solution? Rename the AVI files to .mpg, then embed them in a Powerpoint presentation, losing all options for navigation beyond pause and restart (not that WMP had frame-by-frame anyway, which is what I really wanted).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-115436710676668126?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/115436710676668126/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=115436710676668126' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115436710676668126'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115436710676668126'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/07/musings-on-boston-cuisine-and-wmp.html' title='Musings on Boston Cuisine and WMP'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-115428011555524464</id><published>2006-07-30T10:15:00.000-07:00</published><updated>2006-11-14T15:44:06.916-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SIGGRAPH2006'/><title type='text'>It's BEEG, very BEEG</title><content type='html'>So, I'm now at SIGGRAPH. It's just ridiculuously huge, especially compared to the large conference I went to (AFRIGRAPH - about 50 people). I stood in queues for about 2 hours to register. To add insult to injury, contributers have a special, shorter queue, which however takes about twice as long. There seem to be about 5 different things going on at any given time, all of them very cool. Today however it's just courses; I'm doing one on discrete differential geometry, which is making my head spin (particularly given that I never actually took a vector calculus course, and have picked it up as I went along).&lt;br /&gt;&lt;br /&gt;The conference venue seems to follow the usual overkill approach to air-conditioning: it's boiling outside, so they make it freezing inside so that it is impossible to dress for both environments.&lt;br /&gt;&lt;br /&gt;Erm, that seems to be the sum total of thoughts bouncing around my brain for now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-115428011555524464?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/115428011555524464/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=115428011555524464' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115428011555524464'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115428011555524464'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/07/its-beeg-very-beeg.html' title='It&apos;s BEEG, very BEEG'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31847281.post-115418058078253543</id><published>2006-07-29T06:39:00.000-07:00</published><updated>2006-11-14T15:44:06.826-08:00</updated><title type='text'>Look! Look! It's a blog!</title><content type='html'>Well, well, well, Bruce finally has a blog. Unlike some other people's blogs, this isn't going to be me telling you about random things that happen in my life. I'm mainly going to use it to write about any trips I do, where previously I would spam occasional updates to a lot of people (spam, spam, spam, wonderful spam). I may or may not post random ranting and raving too, but don't count on it.&lt;br /&gt;&lt;br /&gt;So, you ask, what trip am I on at the moment? I'm in Boston for &lt;a href="http://www.siggraph.org/s2006"&gt;SIGGRAPH 2006&lt;/a&gt;, a top-level conference for computer graphics, where I'm presenting a technical sketch (one-page paper). It only starts tomorrow, so in the meantime I'll write some filler about the flights and stuff.&lt;br /&gt;&lt;br /&gt;Flights: the schedule from hell: Cape Town, Johannesburg, New York JFK (refuelling in Dakar), bus to LaGuardia, Boston. LaGuardia sucked but the flights themselves were actually not too bad, and I managed to get through 500 pages of my book, watch a movie, and even get some sleep.&lt;br /&gt;&lt;br /&gt;I then made the mistake of using the underground to get to the hostel where I'm staying. The `silver line' running from the airport is actually a bus. It's a bit weird: it initially runs on the streets, but once it gets into Boston it actually goes underground and runs in what looks like a subway tunnel. The screw-up is that it is just a regular bus, not a bus designed to transport people to and from the airport, i.e., people with large amounts of luggage. Another passenger described it as a cattle car.&lt;br /&gt;&lt;br /&gt;Boston at this time of year is hot, but more importantly it is way above the legal humidity limit. It also seems that my room is even hotter and more humid than the outdoors. Fortunately, the conference is pretty intense, starting at 8am every day, so I shouldn't have to occupy it too much.&lt;br /&gt;&lt;br /&gt;I've also bought a pay-as-you-go cell-phone package (if you want the number, just email me). This is when you realise that South Africa's pay-as-you-go packages are actually pretty polished: the US package I got has an initial cost of $40 for 60 minutes, and those 60 minutes include incoming calls too! It also costs to receive SMs or to check your voicemail, there is no GPRS, and I have to dial a 10-digit&lt;br /&gt;number to do anything with airtime.&lt;br /&gt;&lt;br /&gt;Well, I guess that's enough ranting for now. I'll try to post more once the conference is in progress.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31847281-115418058078253543?l=blog.brucemerry.org.za' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.brucemerry.org.za/feeds/115418058078253543/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31847281&amp;postID=115418058078253543' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115418058078253543'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31847281/posts/default/115418058078253543'/><link rel='alternate' type='text/html' href='http://blog.brucemerry.org.za/2006/07/look-look-its-blog.html' title='Look! Look! It&apos;s a blog!'/><author><name>Bruce Merry</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
