Earth Sandwich?

18 11 2007

Hrm - I’m tempted to take this challenge, surely it wouldn’t be too hard to do with a 3D map of earth and two people approximately close to the selected poles, and two military grade GPS devices :)

As a (rather big) aside, ever since getting my Zune (and updating to the latest software) I’ve started getting back into podcasts, and in-particular I’ve found my tastes turning to shorter shows in the five to fifteen minute range. Some of the shows that fit that description are:

I think the reason is that I can usually afford to steal a few minutes to listen or watch the entertaining material, but getting thirty minutes or more to listen to something that I need to think a lot about is much harder, and I’m more likely to look for a textual version of the same content because it has higher information density.




Australian politics on FaceBook.

18 11 2007

I noticed this little sponsored advertisement on my FaceBook today:

image

For my international audience, Australian’s go to the polls next week to vote for their local members in the federal election. Based on the outcome the major political party with “come into power” and the Prime Minister will be chosen (the Prime Minister is just a member of parliament like everyone else).

There are really only two candidates for Prime Minister given the more than likely outcome out of the election, John Howard and Kevin Rudd. John Howard will be Prime Minister if the Coalition wins enough seats, and Kevin Rudd will be Prime Minister if Labor wins enough seats.

The advertisement above looks like it was placed by The Greens. Historically The Greens have been aligned with the environmental movement in Australia, but to be honest their policy platform is a little bit more broad than that and since the environment and climate change has become a major issue this election they are bound to get a greater percentage of the votes than in previous years.

Hrm, forgot where I was going with this, but since we are exposed to so much of the U.S. political system I thought some folks might be interested in what happens here in Australia.




Zune Update #6

14 11 2007

Well I said I would post back when I had a chance to play with the updated device firmware on the Zune after the upgrade. I have to say I like the improvements in the UI, I guess there is only so much that they can do with the device but the new UI seems to be a little bit more polished.

Interestingly I ran out of space on my Zune, or at least the new Zune software wouldn’t let me sync. I looked at the available space and I saw this:

image

Apparently it is some kind of glitch, and according to this post I need to delete my database file and re-index my content. That is a bit of a pain but I guess I’ll need to do it (a bit of a bummer because I had actually started to use the new love/hate rating system).

What I am going to do this time is tell the Zune software not to automatically sync all my content. My idea is that I’ll be more selective and allow more room for larger files like videos and podcasts.

Having said that - I’m starting to see the appeal of the Zune 80GB - if only it came in brown…




Zune Update #5

13 11 2007

Well - its time to do the device update:

image

One of the things that I am interested in trying out is the Wireless Sync capability, but I wonder how well it is going to work given that I am so mobile and the wireless networks that my laptop is connected to tend to vary (Home, Melbourne Office, Sydney Office, Melbourne Airport, Sydney Airport).

This will be my last post tonight - tomorrow I’ll post up my initial impressions of the device update side of things after I chill out to some tunes (and podcasts!).




Zune Update #4

13 11 2007

Wow. I am loving this new software - check out this screenshot:

image

It is the new Now Playing screen. It shows a montage of all your album art. The new UI is friendly and engaging and actually makes me want to play with it more.

The Zune team might have just shipped an iTunes killer here (if only they could open it up to the rest of the world - come on guys!).




Zune Update #3

13 11 2007

I decided to wait for the new Zune software to update my media library before plugging in the Zune 30GB. Instead I flicked across to what I think is one of the most important features in the new software - the podcatcher.

image

One of my favorite music podcasts is Tracks Up the Tree (feed). They mentioned recently that they were only going to support the iTunes format moving forward - but hopefully they will change their mind. As you can see from the screenshot it is already pulling down the attachments. Sweet.

I’ll be adding subscriptions to my other podcasts soon. This is going to be so cool!




Zune Update #2

13 11 2007

Hard disk churning - then:

image

Hrm, it probably says in there that I am not allowed to use a Zune outside of the US, but I would only know that if I scrolled down and actually read it, unfortunately, I accidentally hit Accept. The voices in my head are telling me to do something.

image

I like that they have stuck with the brown theme. The guys from work always ask why I got a brown one (Zune 30GB). I also love that “DRM-free” content is now being bandied around as a feature.

image

The install has finally finished, and after a few initial wizard steps (notes that it now supports music collections on external drives - investigate later…):

image

Right - time to update the device!




Zune Update #1

13 11 2007

My flight landed at 10:something p.m. and I’ve checked into the Readify Sydney apartment. Its now 11:48p.m, before crashing I decided to check one last time to see if the Zune software update had been shipped. I checked the web-site and was presented with the new look and feel:

image

Then I launched the Zune software (my Zune is still in the backpack at this point), and told to to instantly check for updates - and was presented with this:

image

W00t! Upgrade time! The Zune is now out of the backpack (waiting impatiently), and I am downloading the updated desktop software…




Zune Insider: Upgrading Firmware to 2.1

13 11 2007

I just stumbled upon this post on Zune Insider which has an embedded video created by Jason at Zune Thoughts which shows the firmware upgrade process from the new Zune software shipping with the second generation Zune devices.

Jason shows the exact scenario I am hoping to be going through soon when the public Zune site gets updated. Sweet - thanks Jason!

P.S. Check out all the Zune FaceBook groups!




Organising JavaScript files in ASP.NET applications.

7 11 2007

Last night I was playing around with the new Virtual Earth V6 map control. I haven’t done a lot of work with Virtual Earth before but I really want to get familiar with it because - well, basically it is cool.

I enlisted Darren’s help to steer me in the right direction if I had any problems and he suggested splitting my JavaScript code out into a separate file, for example in the ~/js/default.aspx.js file for JavaScript associated with Default.aspx.

It was a good idea, but I kinda wanted symmetry with the server-side code behind experience so that I could take this:

image

And turn it into this:

image

The first step is to move the Default.aspx.js file into the same folder as the Default.aspx file, then right mouse click on the web project and select "Unload" (note that this technique only applies to Web Application Projects - but why would you use anything else?).

image

Once the file is unloaded you can directly edit the *.csproj (or *.vbproj) file by right mouse clicking on it in the IDE (a lot of people don’t know about this little trick actually.

image

Once the file is cracked open scroll down to the ItemGroup containing the Default.aspx.js file:

image

You need to modify the text here so that the IDE knows to nest the file under the Default.aspx file. You do this by adding a child DependentUpon element:

image

Once that is done, reload the profile file using the context menu and you should be away!

image 

I think that this technique will lead to a more obvious file structure, and hopefully the ASP.NET team will adopt something similar in future versions of Visual Studio. I have been using Visual Studio 2008 for some time now and love it! Can’t wait until the end of the month.