Skip to main content

Introduction

Hi,

In this blog i'll try to post some jQuery, JavaScript, ASP.NET, ASP.NET MVC sort of stuff. Actually I'm an ASP.NET developer.

I always try to explore some new corners in jQuery, JavaScript rather than in C# and ASP.NET. I don't understand why I find lost of interest in web development rather than .NET development. Maybe the fantasy to create your own design drives most of the juniors for learning jQuery, javascript and some javascript sort of libraries like AngularJS.

Of course I should not mention JavaScript in this post because I'm just learning JavaScript.

Recently I've been adding/deleting/modifying the plugins in this blog with a test post. If someone of you could capture what I've done before my introduction I'm trying to incorporate some plugins before I post to my blog.

I hope I could make some noise in the Google traffic with my posts. Feel free to comment/share your views on my posts.

Cheers !
Karthik

Popular posts from this blog

Losing precision after multiplication in SQL Server

CodeProject Yesterday I was doing a little multiplication operation in SQL SERVER. The computation involves multiplication of two decimal numbers. A point to note here is that I've to be very careful while performing the calculations because it's a monetary thing. So, Whatever the calculation made, it must be very accurate such that I shouldn't miss any fractions as it costs in MILLIONS. The scenario is that I've two numbers, after multiplying each other I'm losing the precision of the values . I've tried to check my database for any faulty data that caused the issue. But the data is absolutely fine .

Hacker Rank: 2D Array - DS Solution

I've been trying to solve the puzzles on HackerRank.com lately. This post is just to solve the problem in Arrays section of Hacker Rank I feel better to solve the problems though. It certainly improves some area in programming language. As I'm a C# developer the problem is solved using C# as programming language. Question: https://www.hackerrank.com/challenges/2d-array And the solution is