Skip to: Site menu | Main content

Melbourne International Animation Festival

On Sunday evening John and I went to see the ‘Best of Festival’ screening at the Melbourne International Animation Festival at ACMI. It was very cool, and we also found out at the time that there is a Pixar exhibition starting this week, including panels by Pixar creatives. We’ll be going to one of the more interesting ones, that cover the creative process at Pixar itself. (Yes, I know you are jealous Tasha ;-)

For the exhibition promotion they have some pretty familiar and extra cool characters on display!

Larger than life Pixar logoSlightly smaller than life Monsters

…Just in case you were wondering, the Monsters are the two on the right ;p

Shoya, Melbourne

Caught up with Dave/Dov yesterday and we went by his recommendation to a Japanese restaurant called Shoya, near where Market Lane meets Little Bourke St. It was an amazing culinary experience! Definitely the best Japanese food I’ve ever tasted.

The restaurant is divided into four sections and we had been seated in the “Traditional Dining” section. We decided on a seven course ‘Chef’s Meal’ and each dish (except for one) was an experience to savour!

One of the dishes was assorted Sashimi presented in an hollowed out ice ball, it was a sight to behold as well as being incredibly tasty, they have the ultimate salmon in that restaurant. The first two photos are from the site, and the latter two are from my crappy cellphone camera:

Sushi in Ice Ball #1  Sushi in Ice Ball #2 Sushi in Ice Ball #3 Sushi in Ice Ball #4

Note that once the temperature rises a bit in the ball, it turns completely clear, they seem to use purified water so there is absolutely no imperfections in the ice, it really almost looks like the Sashimi is floating in crystal.

Other dishes included crab meat wrapped in something I didn’t recognize dipped in monk fish liver sauce, sea-urchin hollowed out and filled with itself along with salmon caviar, Wagyu beef (like Kobe beef) tartar and more.

I had a really great time there and will return for special occasions.

Nine Inch Nails at the Metro, Melbourne

I wrote this post on the train, but for some reason my moblog software wouldn’t post, so I’m re-typing it here with some modifications ;-)

I’m on the train back from the NIN show at the Metro – it was amazing! Really great energy in the air and an incredible venue. The Metro is a night-club, but it still works for live shows as it seems to have been built as a theatre.

Trent Reznor was obviously enjoying himself tremendously on stage, and even said as much, specifically comparing how good this evening’s show was to yesterday night’s. Apparently referring to the fact that the crowd yesterday was so unruly that the show had to be cut short and some patrons were treated for head injuries from thrown beer bottles. I’m glad I wasn’t there last night and got the tickets to tonight’s show instead. Pure luck!

It was quite interesting to hear NIN’s classic songs performed in this tour, as it is almost all guitar based with little of the heavy Electronic sound that is Trent Reznor’s trademark. Some of the songs become very different when played so organically– some are better for it and some are not, but the overall effect is very powerful and tight.

While Reznor himself is definitely not a guitar hero, Aaron North, the lead guitar on this tour happily takes up the slack and gives an incredible show. North seems the type that gets very invested in the moment and does it with a flare which could easily get him into trouble, especially if someone in the crowd pisses him off…

It was such an excellent night that I’m thinking about going again tomorrow night. I had two tickets which I couldn’t find a buyer for as someone was dumping excess tickets on eBay below cost– probably a scalper who didn’t anticipate the third show being announced… The two tickets were originally for Shelly and Damien (oh the irony) and I gave one of them to my flatmate when I saw I can’t get rid of them. As the door people weren’t even looking at the ticket dates I might as well try to use the remaining ticket tomorrow. I did pay for it, and it is not like tomorrow’s show is sold out…

Props to NIN for a great evening!

My house from outside

Just one photo as the inside photos will wait until all the furniture are in place. But here is my house from the outside, click for a bigger picture:

My house from outside

Footy!

Today I went with Thomas (my flatmate), Robin and Ben to the ANZAC day Australian Football League game at the Melbourne Cricket Ground, where we saw Collingwood (Magpies) battle it out with Essenden (Bombers). Collingwood eventually won 12.23 (95) to 11.13 (79).

This has been my first experience of going to a sports event and it was quite fun. While it is not something I’d be likely to do more than once a year, it was quite an experience. Being part of a 90,000 strong crowd and joining in the chants and calls was fun ;-)

Funnily enough this has been the first sports game I watched more than ten minutes of (even on TV) as I’m not into spectator sports at all…

At the Nine Inch Nails album release party

‘Year Zero’ has been out for a week, but the release party for it in Melbourne which I’m writing this from is tonight. It is quite tame at this early hour, but I already scored a free copy of the album so I’m quite happy. The album has already been leaked on the net, by none other than Trent Reznor himself, with a big ‘fuck you’ to the RIAA, but it is well worth the purchase anyway :-)

The album itself is a concept piece which is very reminiscent of 1984, with the added value of refreshing the old warning by Benjamin Franklin- ‘those who give up freedom for temporary safety, deserve neither freedom, nor safety’, although this is from memory, so forgive any inadvertant paraphrasing on my part…

I’m quite set on an early night tonight, but I’ll let the winds of fate, take me where they will. It all depends whether some of my lovely and newly acquired friends will show up by the time I’m ready to roll. Friday is usually a big night for the Melbourne goth scene, but I’ve chores to do tomorrow which I’ve pushed back more than once, so we’ll see.

Selenium Test Tips

Selenium is an open-source test tool for web-based applications and sites. Unlike Canoo WebTest, Selenium actually utilizes the browser itself to perform the tests.

Selenium has a Firefox extension that acts as an IDE for recording and editing test cases however there is a significant difference between running the tests in the IDE and running them as part of a build process — cross-site scripting.

When running tests in the IDE, Selenium is not limited by Firefox cross-site scripting preventative measures and can follow links to external sites (outside your ‘base URL’) and verify that the target has been reached. This is not possible when running it as part of a build process in stand-alone mode.

The reason for this difference is that when running Selenium in stand-alone mode it generates a web-page that contains the test runtime with the actual web-page it is testing residing within an IFRAME. Once you traverse to links outside the domain the Selenium generated web-page is at (usually localhost) then you are subject to cross-site scripting limitations. Put it simply, your top page (Selenium generated) would be in the ‘localhost’ domain, and the external page is at another domain thus triggering the cross-site scripting security restrictions.

I’ll demonstrate what I mean:

In Selenium, a typical link test is done so:

  1. A ‘click’ Selenium command with the ‘link=’ target.
  2. Then a ‘waitForPageToLoad’ command
  3. Followed by an ‘assertLocation’ with the correct expected URL

This test will fail when running in the standalone mode with the link target being external to the domain running the Selenium web-page. Instead of what you expect from the IDE based run you will hit upon permission errors accessing “document.href” and other DOM properties. This is simply because your script is from domain “localhost” (for example) and does not have access to the DOM of the page from the external domain (say “rationalistic.com”)… Note that for the same reason you can’t even call ‘goBack’ after the ‘click’.

An alternative to this method that is useful for external links is simply to verify the existence and ‘href’ attribute of the link. While this is not ideal (as it doesn’t take into account Javascript method links) it is, in my opinion enough verification for off-site links. To use this method of testing a link’s existence and target you must give the <a> element an id, preferably one that starts with “link_” and then using the Selenium ‘assertElementPresent’ and ‘assertAttribute’ commands.

For example, consider a link to my blog site:

<a id=”link_rationalistic” href=”http://www.rationalistic.com”>The Rationalist Manifesto</a>

To test it in Selenium you would do this:

  1. Use the ‘assertElementPresent’ command with a target of ‘link_rationalistic’
  2. Follow with an ‘assertAttribute’ command with a target of ‘link_rationalistic@href’ and a value of ‘http://www.rationalistic.com’.

This testing method provides reasonable confidence that the link exists and leads to the correct location without following it.

Note:
This method is also useful for links which have symbol characters in them which may be difficult to locate using the ‘link=’ targets.

Tech Superstition

Excellent article about technological superstition by Jeff Raskin.

Censored in Israel?

Maybe I’m misguided, but I couldn’t find a mention of the embarrassing ambassador in any of the Israeli news sites nor in their archives.

Amie St Music Store – A Very Positive Customer Service Experience

Some of you may have heard about Amie St, the online DRM-free music store that recently signed major artists (such as Barenaked Ladies, Avril Lavigne, Sarah McLachlan, Paul Van Dyk and others) to sell their music without any of the foolish DRM restrictions that the iTunes Music Store imposes on music bought there.

Following the coverage on Digg, I’ve decided to try out the store. I was pleasantly surprised with the selection and quality of music there, but I was encountering some trouble listening to samples because of the high loads the site experienced following the news coverage. Frustrated, I wrote to their customer service about my hardship–

Not even twenty five minutes later, I got a response from an actual person, Elias Roman, who apologized for the issues, offered credit to my account and indicated what Amie St was doing to resolve the issue:

“What is your user name, I’ll add some credit to it so you can
enjoy it when the samples are working (We are actively adding more
servers to our grid to get rid of that issue).” – (Partial Quote)

One eMail from me later (with my user name), and no longer than fifty minutes from the time of my initial contact with them, the following message landed in my inbox:

“Hey Tal, I added some credit to your account. The site should be
running alright by now, I would definitely check out Au Revoir Simone,
the Shake, Waterlog (definitely check out The Onion by waterlog).”

While I am still having issues at time listening to the samples (which might be related to my own Internet connectivity) they are less prevalent than before and I’ll definitely check out and purchase music from Amie St, if only because of their remarkable customer service.

From my short time at the site, I already found some songs I like– allow me to recommend the song Unravel from the group Drawing Down the Sun.