Welcome to my Blog

Here you will find my ramblings about pretty much anything I decide to talk about!
Email Image

iPhone 2.0 activated

Trev on Sat, 12 Jul 2008 00:45:25 GMT

Finally! hopefully this will resolve the problems I had with the UI glitches and the maps locate me feature.

All I need to do now is to wait for my music, podcasts and apps to be restored to it...


Comment1 Comments »

Separator Image

iPhone 2.0 updated

Trev on Fri, 11 Jul 2008 17:21:30 GMT

Looking good (ish) the proper 2.0 software installed fine, however it appears that Apple's activation servers are currently down :( so I can't actually use it...

Comment0 Comments »

Separator Image

iPhone 2.0

Trev on Fri, 11 Jul 2008 16:46:45 GMT

So I managed to download the iPhone 2.0 software yesterday afternoon and shoehorn it onto my 1st gen iPhone, everything went smoothly (as in it didn't get bricked!) which was nice.

Got the App Store going, downloaded a few apps (Apple Remote is sweet) however I noticed that the locate me feature in maps thought I was in Canada and that the UI was a bit glitchy sometimes.

iTunes is now dishing out the 2.0 software which has a different filename to the one I installed yesterday (which leads me to believe that the one I got yesterday is for the 3G phone) so I'm going to have a go at getting that running instead.

Hopefully it all goes to plan, otherwise there may be tears later...


Comment0 Comments »

Separator Image

TableBuilder updated

Trev on Sat, 31 May 2008 00:45:18 GMT

So I finally got around to updating the TableBuilder class so that the AddHeaderRow and AddRow methods return the builder instance so that you can chain method calls.

.AddHeaderRow(...).AddRow(...).AddRow(...);

Check it out in Applications > TableBuilder


Comment0 Comments »

Separator Image

Silly coding anoyances

Trev on Thu, 29 May 2008 12:02:28 GMT

Does anyone else find this annoying?

You're looking at a code sample and see this:

...
if(items.Count == 5)
{
return true;
}
return false;
...

instead of this

...
return (items.Count == 5);
...


does anyone else find that annoying or is it just me?


Comment2 Comments »

Separator Image