Monday, September 15, 2014

Work with Async

Asynchronous Programming If you are working with applications such as windows store and Windows Phone applications you may be found lot of functions that with Async keyword. Why Async? We need async because when working with applications that interact with network (web, local network) , database, Files and reading hardware in the device are much more slower than the usual execution. Because of it communication bottlenecks are occur. To avoid those communication bottlenecks async is born. What Async Does ? Async allows to run those delayed...

Saturday, September 13, 2014

Improve Performance of the Application

As and software producer all of us want to do is software product with correct functionality. Is that enough ? No. We need to give product with correct functionality with optimum resource consumption as well. Today I'm going to tell you some tips and trikes about resource optimization. basically it is about Memory and CPU resources. 1. Switch for multiple If  When you are using multiple If conditions ( Most of the time more than 2 ) CPU...

Wednesday, September 10, 2014

Starts with MVVM

With the growth of programming and application development  there are major requrement that emerged the design patterns. Such as MVP(Model View Presentation) and MVC (Model View Controller) are common design patterns that allows developer to isolate codes. Bu the advanced features of XAML such as data biding, data templates, commands and on demand interaction between application and logic's guide world to MVVM (Model View ViewModel) MVVM basically...

Amazing Lumia SensorCore SDK

Lumia SensorCore SDK is a collection of APIs utilising data from different sensors (for example, accelerometer) and also location information. This information can be used to track user’s physical activities and motion. The sensors are able to run constantly in the background, collecting and preserving data for up to past ten days. Even though they are constantly active, the sensors run in a low power mode, consuming only a negligible...

Friday, September 5, 2014

Variable Size Tile App Template By Me

This is One of Customized template that I created for windows 8. Took some of the Templates of codeplex as strach. It provide color bound variable aized grid in Main page and VAriable sized grid as musing datiddle page. You can edit data sources as you wish by using classes in data Model. Those classes are in same manner that sample data templates provided by microsoft. In detail page this template provide Rich textbox for display detailed...