Long Arithmetic from Microsoft
It is known, a computer can operate numbers with a limited number of bits. As a rule, we are...
Under the Hood of Stopwatch
Introduction As all developers, I often need to measure the execution time of my own (and not only my own) code. When I was a beginning...
Building Your First ASP.NET Core MVC App
This article helps to get started with ASP.NET Core MVC quickly. It describes how to get the latest ASP.NET MVC version and create a simple...
Effective Use of Classes in .NET
When you need to learn a programming language, you buy a book. From books, we learn basics of the...
Everything You Need to Know about ASP.NET Core 1.0.
The question is: “Microsoft ASP.NET vNext: evolution or revolution?”, the absolute answer is revolution. In this article, I...
JSON Support in SQL Server 2016
SQL Server 2016 provides the built-in support for importing, exporting, parsing, and querying JSON documents or fragments. In this article,...
JavaScript Recipes: A Problem-Solution Article
Why reinvent the wheel every time you run into a problem with JS? This article is chock-full of...
Javascript Closures
Closures in Javascript are (internal or nested) functions that refer to (outer) independent variables. Simply put, the function declared in...
Javascrtipt Deep Copy
In this article, we will discuss how to copy and deep copy javascript objects....
Creating Excel in JavaScript
In this article, we will create an excel-like application that takes about 30 rows of JS code, with...