Monthly Archives: October 2013

Allowing Windows Phone App to change lockscreen background

In order for the app to change the lockscreen background, your app need to tell the OS that it is a lockscreen background app provider. To do this, you need to add the below extension right after the token area … Continue reading

Posted in Windows Phone | Tagged , , , , | 1 Comment

Navigation Service in App.xaml.cs C#/XAML

Any attempt to do the below in App.xaml.cs will result in “An object reference is required for the non-static field, method or property System.Windows.Navigation.NavigationService.Navigate(System.Uri)” Thus to ensure proper navigation within App.xaml.cs page, below is the right way. The reason for … Continue reading

Posted in Windows Phone | Tagged , , , | 3 Comments

Building URL point to object in AWS S3 Bucket

In response to Adding item to AWS S3 Bucket After adding an object to AWS S3 Bucket, you would want to have a easy method of retrieving back the object. As such below is a snippet on the building of … Continue reading

Posted in AWS | Tagged , , | 1 Comment

Checking for Internet Connectivity in Windows 8 C#/winrt

To prevent winrt app from crashing while doing web method due to the lack of Internet Connectivity, always use the below code to check for Internet Connectivity. Declaring the method in App.cs would ease the usage. Ideally the app should … Continue reading

Posted in winrt | Tagged , , , , | 3 Comments

Checking for Internet Connectivity in Windows Phone C#

To prevent app from crashing while doing web method due to the lack of Internet Connectivity, always use the below code to check for Internet Connectivity. Ideally the app should inform the user to check its internet connection before trying … Continue reading

Posted in Windows Phone | Tagged , , , | 1 Comment

OS X Mavericks Bootable USB Drive

OS X Mavericks was officially launched on 22 October 2013. The installation package is a massive 5.31GB and that is bothering almost anyone with more than one Mac. As such below are the step to creating a bootable USB Drive … Continue reading

Posted in OS X | Tagged , , , , , , | 1 Comment

Adding item to AWS S3 Bucket

Refer to Building URL point to object in AWS S3 Bucket on how to retrieve the object in AWS S3 Bucket.

Posted in AWS | Tagged , , | 2 Comments