360 Degree Evaluation

360 Degree Feedback/Review System is a much abused term in many companies these days. While many Organizations and Managers effectively use the 'jargon' on a day to day basis, it makes me wonder how many actually perform a complete 360 Degree Review System, particularly in Performance Appraisals. Ideally, an effective 360 Degree Review System should … Continue reading 360 Degree Evaluation

Appending Strings and Parameters in Firebird.

One of the issues I recently faced while working with Firebird was how to use a string within a 'Execute Statement'. For example,   This throws an error. though the answer looked farely simple when done. You need to two Single Quotes. There might be another situation, when you need to append string based on … Continue reading Appending Strings and Parameters in Firebird.

Collection of Custom Configuration

Adding application configuration in app.config, especially under the appSetting key is something which every developer is used to. What if we need to add our own customer collection. For example, That's when we need to write up code to define these customized segments. We will begin with the basic element first, which in this case … Continue reading Collection of Custom Configuration

Binding Navigated Event in WebView Control

WebView Control in Xamarin.Form is a highly useful control for displaying a Web Page within your Mobile Application. You can either specify the URI that needs to displayed or you can provide the entire HTML Source to be displayed by assigning an instance of UrlWebViewSource to the Source Property of the control. From an MVVM … Continue reading Binding Navigated Event in WebView Control

Firebird 3.0 Issues

Migrating to Firebird 3.0 has been routine that caused more headache than expected. One of most common, yet pestering error was "Your user name and password are not defined". Interestingly, it worked perfectly fine when we were using the Firebird 4.10 Ado.net Nuget, however, the moment we update our Nuget package to 5.7, we are … Continue reading Firebird 3.0 Issues

An Introduction to EcSolvo.RestHelper

This post intends to act as an introductory guide on the EcSolvo.RestHelper Nuget. It takes you through the Main Methods that you would be using in your routine tasks. RestHelper Constructor and ExecuteAsync The RestHelper Constructor and ExecuteAsync Method is the heart of RestHelper Library. It is build on 'Pit of Success' philosophy, removing possible erroneous … Continue reading An Introduction to EcSolvo.RestHelper

Store User Credentials using Xamarin.Auth in Xamarin.Forms

If you are working on Mobile Apps, it won't be long before you end up with a scenario to store User Account objects locally so that the user needn't go through the pain of authenticating himself all over again, every time he logs in. One of the easiest way to do is via the cross … Continue reading Store User Credentials using Xamarin.Auth in Xamarin.Forms

EcSolvo.RestHelper Nuget

Recently I have started working on a Nuget Package for providing a is a sleek and simple Wrapper library for providing simple access to Rest API, by hiding away the complexities of HTTPClient Class.Named EcSolvo.RestHelper it is particularly designed to work along with Xamarin PCL Projects You can follow and contribute to the Nuget in Github … Continue reading EcSolvo.RestHelper Nuget