Tutorial by Topics: ng

Oracle is a relational database management system (RDBMS) originally built by Larry Ellison, Bob Miner, and Ed Oates in the late 70s. It was intended to be compatible with IBM's System R. VersionRelease DateVersion 1 (unreleased)1978-01-01Oracle V21979-01-01Oracle Version 31983-01-01Oracle Ver...
In C++, it is possible to define operators such as + and -> for user-defined types. For example, the <string> header defines a + operator to concatenate strings. This is done by defining an operator function using the operator keyword. The operators for built-in types cannot be change...
Bosun is an open-source, MIT licensed, monitoring and alerting system created by Stack Overflow. It has an expressive domain specific language for evaluating alerts and creating detailed notifications. It also lets you test your alerts against historical data for a faster development experience. M...
Unit testing describes the process of testing individual units of code in isolation from the system that they are a part of. What constitutes a unit can vary from system to system, ranging from an individual method to a group of closely related classes or a module. The unit is isolated from its ...
Stream Filter provides the ability to filter messages on the server before they are sent to a subscriber is a popular request. With the introduction of our v4.x SDKs, you now have the ability to do so using message meta data.
What is squashing? Squashing is the process of taking multiple commits and combining them into a single commit encapsulating all the changes from the initial commits. Squashing and Remote Branches Pay special attention when squashing commits on a branch that is tracking a remote branch; if...
Delphi is a general-purpose language based on an Object Pascal dialect with its roots coming from Borland Turbo Pascal. It comes with its own IDE designed to support rapid application development (RAD). It allows cross-platform native (compiled) application development from a single code base. Cu...
CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name [create_specification] /// To create database DROP {DATABASE | SCHEMA} [IF EXISTS] db_name /// To drop database ParameterDetailsCREATE DATABASECreates a database with the given nameCREATE SCHEMAThis is a synonym for CREATE DATABASEIF NOT E...
mysqldump -u [username] -p[password] [other options] db_name > dumpFileName.sql /// To Backup single database mysqldump -u [username] -p[password] [other options] db_name [tbl_name1 tbl_name2 tbl_name2 ...] > dumpFileName.sql /// To Backup one or more tables mysqldump -u [username] -...
This topic provides basic instructions for obtaining credentials for Watson services and provides relevant links for each service and the Watson Developer Cloud SDKs. Watson services homepages: AlchemyLanguage AlchemyData News Conversation Discovery Document Conversion Language Translatio...
What is Arduino? Arduino is an open-source electronics platform based on easy-to-use hardware and software. Why Use Arduino? Inexpensive. You can also buy clones that are even cheaper. Easy to use and get started with Huge community Completely Open Source VersionRelease Date1.0.0...
Destructuring is a pattern matching technique that is added to Javascript recently in EcmaScript 6. It allows you to bind a group of variables to a corresponding set of values when their pattern matches to the right hand-side and the left hand-side of the expression. let [x, y] = [1, 2] let ...
There are several unit testing tools for Python. This documentation topic describes the basic unittest module. Other testing tools include py.test and nosetests. This python documentation about testing compares several of these tools without going into depth.
SELECT column_name FROM table_name WHERE column_name operator value SELECT column_name, aggregate_function(column_name) FROM table_name GROUP BY column_name HAVING aggregate_function(column_name) operator value
Apache Subversion (SVN) is a universal and centralized open source version control system. Subversion is currently a project under Apache Software Foundation (ASF) and is licensed under the Apache License, Version 2.0. Subversion is designed to manage and control files and directories and track ...

Page 9 of 164