Tutorial by Topics: de

Design patterns are formalized best practices that the programmer can use to solve common problems when designing an application or system. Design patterns can speed up the development process by providing tested, proven development paradigms. Reusing design patterns helps to prevent subtle issues...
How to create unit test project and unit tests and how to run the unit tests and code coverage tool. In this guide the standard MSTest framework will be used and the standard Code Coverage Analyses tool which are available in Visual Studio. The guide was written for Visual Studio 2015, so it's pos...
Twilio allows you to send and receive text messages with Node.js by using the twilio-node library to make calls. This guide assumes you've already setup an account with Twilio and have your account SID and the authentication token from the Twilio Console. ParameterDetailstoA valid phone number ...
Deleting documents from a Lucene index is easy when you have a primary key field in your document (like in traditional SQL databases). However, sometimes deleting a number of documents based on multiple fields in the document is what you need. The Lucene API allows you to achieve this by specifying...
Examples for some multithreaded algorithms. parallel before a loop means each iteration of the loop are independant from each other and can be run in parallel. spawn is to indicate creation of a new thread. sync is to synchronize all created threads. Arrays/matrix are indexed 1 to n in exam...
This topic is about if and else statements.
Here I will explain different index using example, how index increase query performance, how index decrease DML performance etc
This topic provides examples of well known design patterns implemented in PHP.
A short introduction to creating a game on the Android platform using Java The first example covers the basics: There are no objectives, but it shows you how you create a basic part of a 2D game using SurfaceView. Make sure to save any important data when you create a game; everything else ...
This Documentation describe how to build a three node Mongo replica set using Docker Image and auto provisioned using Chef.
2D convolution is computed in a similar way one would calculate 1D convolution: you slide your kernel over the input, calculate the element-wise multiplications and sum them up. But instead of your kernel/input being an array, here they are matrices.
How to install and work with GitHub Desktop? GitHub Desktop is -as the name implies- an desktop environment for Windows and MacOS which includes the main features of Git like cloning, pushing, pulling (sync in GitHub Desktop), merging... The Desktop clients main purpose is to deliver an easier way...
Demystifying MVC, MVP, MVVM and VIPER or any other design patterns to choose the best approach to building an app
This section provides an overview of what codeception is, and why a developer might want to use it. It should also mention any large subjects within codeception, and link out to the related topics. Since the Documentation for codeception is new, you may need to create initial versions of those ...
The Erlang doc titled Bit Syntax has a section called Defaults that contains an error and the doc is confusing as a whole. I rewrote it.
The basic thing to remember here is that debugging a Hadoop MR job is going to be similar to any remotely debugged application in Eclipse. A debugger or debugging tool is a computer program that is used to test and debug other programs (the “target” program). It is greatly useful specially for a Ha...
blend-model component Loads a three.js format JSON model containing skeletal animation blending using THREE.BlendCharacter. This is mainly used to represent the hand and Vive controllers. <a-entity blend-model="#a-asset-item-selector"></a-entity> VALUES TypeDesc...
Pattern for adding multicasting capabilities to existing iOS controls. Adding multicasting allows for improved clarity and code re-use.

Page 43 of 47