Tutorial by Topics: manage

If you're not opposed to running a Ruby utility, Genghis is a classic: http://genghisapp.com/ But for scalable production use, get yourself to MongoHQ. http://www.mongohq.com/ Also, the Mongo Monitoring Service, from 10Gen, the makers of Mongo: https://mms.mongodb.com/ MongoClient is written ...
Syntax for ARM templates is well documented: https://azure.microsoft.com/en-us/documentation/articles/resource-group-authoring-templates/
For managing dynamically allocated memory, the standard C library provides the functions malloc(), calloc(), realloc() and free(). In C99 and later, there is also aligned_alloc(). Some systems also provide alloca(). void *aligned_alloc(size_t alignment, size_t size); /* Only since C11 */ voi...
unsigned long millis() unsigned long micros() void delay(unsigned long milliseconds) void delayMicroseconds(unsigned long microseconds) See the elapsedMillis header for constructors and operators of that class. In short: elapsedMillis elapsedMillisObject; creates an object...
The System.Management.Automation namespace is the root namespace for Windows PowerShell. System.Management.Automation is an extension library from Microsoft and it can be added to Visual Studio projects via NuGet package manager or package manager console. PM> Install-Package Syste...
ParameterDescriptiongroup.idThe name of the Consumer Group.enable.auto.commitAutomatically commit offsets; default: true.auto.commit.interval.msThe minimum delay in milliseconds between to commits (requires enable.auto.commit=true); default: 5000.auto.offset.resetWhat to do when there is no valid c...
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 ...
Circular Imports This is a big issue in Kivy, Python, and many programming languages When one resource is required by two files, it is normal to place this resource in the file that will be using it most. But if this happens with two resources, and they end up in opposite files, then importing...
Asset catalogs are way to manage multiple resolutions of iOS image assets. In order to display optimal images, iOS uses 1x, 2x, and 3x versions of each image according to the device's screen density. The 1x version is only for very old, non-retina devices so it isn't necessary for apps only suppor...

Page 2 of 4