Sunday, March 6, 2016

Tuesday, January 19, 2016

The this keyword in javascript explained

this keyword in Javascript is a source for confusion. The confusion is mostly due to the fact that the 'this' keyword is used differently in other languages compared to Javascript. I was also confused of this (Well I still am sometimes) as I was coming from a C# background where the 'this' keyword...

Monday, September 28, 2015

Monday, November 17, 2014

cassandra vs rdbms data model

If you are coming from a relational database world like me then the initial terminology used in cassandra will be a bit confusing. I'll state some keywords which are used in cassandra and try to draw parallels of them to the relational world. Note: These parallels are just for ease of understanding...

Sunday, August 3, 2014

Thursday, June 26, 2014

SQL GROUP BY Example

The GROUP BY clause causes data in a table (or any data source) to be divided into groups based on the expressions (or conditions) given in the GROUP BY clause. Seems confusing? Probably.. Let's see what it means, Say you have Column1, Column 2..etc on your table. Now you say GROUP BY Column1 , what...

Saturday, May 24, 2014

ASP.Net Webforms Inline tags and code blocks

There are many elements inside a webforms (.aspx) page. To somebody beginning asp.net webforms these may seem quite similar and be confusing at first. (Well it was for me when I started learning asp.net webforms) So hopefully this might help another soul. Elements of a asp.net page (Inline tags and...