nopCommerce is an open source eCommerce solution based on ASP.NET MVC 4.0 and MS SQL Server 2008(or higher), with comprehensive features that are easy to use for new online businesses.
It has a pluggable architecture that allows additional functionality and presentation elements to be dynamically...
Sqoop incremental import comes into picture because of a phenomenon called CDC i.e. Change Data Capture. Now what is CDC?
CDC is a design pattern that captures individual data changes instead of dealing with the entire data. Instead of dumping our entire database, using CDC, we could capture ju...
This section provides an overview of what datetime is, and why a developer might want to use it.
It should also mention any large subjects within datetime, and link out to the related topics. Since the Documentation for datetime is new, you may need to create initial versions of those related to...
PARSENAME ( 'object_name' , object_piece )
'object_name'object_pieceIs the name of the object for which to retrieve the specified object part. object_name is sysname. This parameter is an optionally-qualified object name. If all parts of the object name are qualified, this name can have four...
LAPIC registerAddress (Relative to APIC BASE)Local APIC ID Register+20hSpurious Interrupt Vector Register+0f0hInterrupt Command Register (ICR); bits 0-31+300hInterrupt Command Register (ICR); bits 32-63+310h
In order to access the LAPIC registers a segment must be able to reach the address range ...
Google Cloud Messaging: Overview
Google Cloud Messaging (GCM) is a free service that enables developers to send messages between servers and client apps. This includes downstream messages from servers to client apps, and upstream messages from client apps to servers.
For example, a lightweight d...
Vararg Keyword: vararg is used in a method declaration to indicate that a variable number of parameters will be accepted.
Spread Operator: An asterisk (*) before an array that is used in function calls to "unfold" the contents into individual parameters.