For those of you who know me it's no surprise that I'm a big kid with a borderline unhealthy fascination with Lego, so when Mrs Santa very kindly brought me the Lego Life of George game this year you can understand my disappointment to download the iOS app on my iPhone only to find it consistently crash on startup rendering the whole thing pretty useless.
Same story on my iPad and no matter how many times I restarted or closed all other apps. It's understandably getting quite a lot of bad reviews on the App Store with people threatening to return it.
Anyway, until Lego sort this out you can get the app working (albeit with all the online functionality disabled) if you put your device in airline mode.
Hope this helps any other kids out there (both big and small :) ).
I thought I'd try something different with my latest home software project; after writing a "ViewModelBase" INotifyPropertyChanged implementation for the millionth time (I really should start creating some shared libraries) I decided to have a look at one of many MVVM libraries out there and stumbled across Caliburn.Micro. Here are some newbie notes on my experiences.
Windows Phone 8 Support
I'm writing a Windows Phone 8 application, so fell at the first hurdle after installing the package through nuget and following the tutorial here. This doesn't work under WinRT and so my attempts at using the generic form of Bootstrapper were met with
The non-generic type 'Caliburn.Micro.Bootstrapper' cannot be used with type arguments.
instead you need to derive from PhoneBootstrapper to end up with something looking like this:
public class AppBootstrapper : PhoneBootstrapper { PhoneContainer container;
I mentioned that I took the Microsoft MCTS exam for development in HTML5 and JavaScript a while back, well for those who are still interested in exploring this new area of development Microsoft Press are discounting their beginners guide "Build Windows 8 Apps with HTML 5 and JavaScript" in ebook form today from $19.99 to $9.99.
Check it out here using code MSDEAL at checkout to snag the discount.
Yesterday evening I experienced my first WordPress White Screen of Death when trying to open the admin page on this blog. For those unfamiliar with the term, it can be caused by the process running out of memory on the server resulting in a plain white page being served up instead of some part of the site.
This excess memory usage is normally caused by a plugin misbehaving and I have been playing with some new plugins lately so I figured this might be the problem. A quick google took me to this solution which looked simple enough; FTP onto the site, rename the plugins directory to solve the white screen problem, then re-enable them one at the time to see which one causes the issue.
But now I'm using Azure as my web host, how on earth do I FTP onto it? Here's how: