Technology

Cloud Computing – Key Trends

Cloud computing has today grown from becoming a familiar term in context of its application to being recognized as an integral part of an enterprise IT strategy. It is a hassle free, infrastructure-free form of IT investment which is clearly futuristic as well. Gone are the days when a company was restricted to the boundaries […]

Shikha Matta
Shikha Matta
Read

Technology

Integrate Google Analytics Api to fetch Page views count

My use case was to show count of Page Views and Unique Page Views using Google analytics. Though there is already enough documentation provided with detailed explanation, it takes time to understand where to get required parameters to call those APIs, due to nested structure of Analytics account. We can refer here to get detailed […]

Technology

Why Functional Programming?

As software becomes more and more complex, it is more and more important to structure it well. The well-structured software is easy to write and debug and provides a collection of modules that can be reused to reduce future programming costs. Here I will share how functional programming inherently comes up with more scalability and […]

AWSDevOpsTechnology

AWS RDS Aurora Replication with Mysql

In my previous post, we learnt about how to launch RDS Aurora instance. The storage space of RDS Aurora is automatically scalable up to 64 TB and the read scaling can be achieved by creating up to 15 replicas in the cluster. I had migrated database into RDS Aurora to avail fault tolerance feature. Once […]

Rajdeep Singh
Rajdeep Singh
Read

Technology

Enable Transaction in WCF

Transaction in WCF is a set of operations or logical unit of work comprising of activities. Here, if a single operation fails, then all operation fails automatically. We will follow these steps for enable transaction in WCF : Step 1:- Add  Transactions namespace in  WCF Service project. Using System.Transaction;   Step 2:- Set TransactionFlow property of the OperationContract […]

Mohit Kumar
Mohit Kumar
Read

Technology

Parallax scrolling using CSS

Parallax is a scrolling technique used to move background images slowly with content. We can also handle it with JavaScript but I found it has some compatibility issues with browsers. I tried to do this by using CSS only. It is compatible with all browser and devices. Using css parallax makes website effective and attractive. […]

Technology

Title attribute to make hover Tooltip

Introduction With the help of ‘CSS3’ codes we can make title attribute to hover Tooltip without the use of any other tag. Where it can be used? You can use this implementation on Static or Dynamic site. Use of jquery. No use of any Jquery scripts. Required CSS. a { color: #666666; } a:hover { […]

MarketingTechnology

How to Integrate ASP.NET custom user control with Umbraco CMS

INTRODUCTION You can integrate ASP.NET user controls with Umbraco CMS. You can communicate with your control by using Public Properties and macro elements. The user control created with data entry form in ASP.NET looks like the one below: After creating user control in ASP.NET project, copy the custom control bin file into bin folder and.axcs […]

Anshul Verma
Anshul Verma
Read

MarketingTechnology

Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#

This Blog explains how to find the Latitude / Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the […]

Anshul Verma
Anshul Verma
Read