Tutorial by Topics: o

#[link(name = "snappy")] // the foreign library to be linked to (optional) extern { ... } // list of function signatures in the foreign library
For this process to work, the original error/exit code should start with 0x8007 which generally is an indication it originated from a valid Win32 process. However, should no message appear, then it probably didn't originate from a Windows process and therefore, will need to be examined further ou...
Use this plunker to play with examples.
Create method: Create new record with specified value. Takes a number of field values, and returns a recordset containing the record created def create(self,vals): return super(class_name, self).create(vals) Write Method: Update records with given ids with the given field values.Takes a n...
A bounded context is subset of a large domain model. In larger domains, multiple teams will be working on multiple areas of the solution and this strategic pattern helps to share the work among the teams. The idea is to divide the big domain model in more focused areas, giving the team the freedom...
LOOP [statements]; EXIT WHEN [condition for exit loop]; END LOOP;
R = chol(A); [L,U] = lu(A); R = qr(A); T = schur(A); [U,S,V] = svd(A);
numpy.cross(a, b) # cross product of a and b (or vectors in a and b) numpy.cross(a, b, axisa=-1) #cross product of vectors in a with b, s.t. vectors in a are laid out along axis axisa numpy.cross(a, b, axisa=-1, axisb=-1, axisc=-1) # cross products of vectors in a and b, output vectors laid ou...
Floating-point numbers are numbers that have fractional parts (usually expressed with a decimal point). In Java, there is two primitive types for floating-point numbers which are float (uses 4 bytes), and double (uses 8 bytes). This documentation page is for detailing with examples operations that c...
Phaser is an open source Desktop and Mobile HTML5 game framework primarily. It includes a robust set of documentation, features and examples to get you moving towards a working game quickly. It supports WebGL, via the Pixi.js rendering engine, and includes a Canvas fallback for support on older d...

Page 155 of 283