Transform your Android App to Material Design

Nowadays Google’s Material Design is getting popular in web application as well as in mobile application. So, in this blog, let me try and explain to you briefly how to give Google’s Material Design to Android applications....

Signing the APK for Distribution / Publishing in play store

After making a creative application, we need to distribute the application to the public. The best way to distribute the Android apps is through Google Play Store. Other channels are also available such as e-mail, a privat....

Couldn't connect to logcat, GetProcessId returned - Xamarin.Android

I started developing mobile apps using Xamarin Forms recently. During the initial days, I had done a lot of research and prepared myself. The development was going good until an issue arised where I had to debug the applic....

Differentiating Xamarin forms and Xamarin Android

I'm amazed at Xamarin.Forms, a framework for cross-platform mobile app development in C# and runs on any mobile platform. It is very easy to make a mobile application if you know XAML and c#. If you have a .NET background ....

Solution to date & time issue in c3.js

In my previous project, I wanted to show all the result data on a line chart with data in x-axis and status on y-axis. I did google to find an attractive and simple line chart to implement. The problem I had faced was to p....

Relationship between schema and tables in sql

The persistent elements of an SQL are database objects. A database object in a relational database is a data structure used to either store or reference data, schema . A schema is a logical definition of a table - it defin....

How to configure Lightweight Directory Access Protocol (LDAP) in Windows

LDAP (Lightweight Directory Access Protocol) is a software protocol for enabling anyone to locate organizations, individuals, and other resources to manage and access the distributed directory information service. LDAP is....

Comparison of Cross-Platform Mobile Development

As the mobile industry grows, mobile technology and the operating system for each mobile have also been tremendously changing. To overcome the concept of developing separate app for each platform(Native coding), there is a....

Programmatically check whether a website is down or not

Website and web application are common these days. Each of us have at least one website.For a software development company it may be uncountable. Imagine a scenario when the number of hosted websites is unpredictable and u....

Web.config File Transformations

Most of us have worked with web applications using asp.Net. While publishing a web application, we have to change the web configuration according to the server. There are two types of database connection string - local and....

How to add Certificates in Azure Websites Applications

Introduction Now a day applications are hosted in Azure websites. Some application need certificate for security purposes because those applications may need any API call with in the application. In this blog, I will expla....

Export data to excel using MVC

Recently as part of my work I was trying to export data to excel using MVC. Let me admit, I am new to MVC, so my natural inclination was to Google around and if someone has already tried it out. I did manage to get…

Creating reusable methods inside view templates in Razor

Hello everyone, Creating reusable methods inside view templates in Razor? Yes, this is a very interesting piece of work that I was struggling to implement and spend a good amount of time to finally get it done.Problem : I....