IBM midrange is a generic term which encompasses a family of 'baby mainframe' computers which IBM have been making since the late 1960s.
1969: System/3. System/3 is not compatible with IBM's System/360, and it costs about half as much. The primary programming language is RPG II.
1975: System...
:set [no](option|shortcut)
:set (option|shortcut)=value
:set (option|shortcut)(?|&)
do not use : in the vimrc file
See vimcast 1 video
See vimcast 1 transcript
Blaze is a powerful library for creating user interfaces by writing dynamic, reactive HTML templates. Blaze templating allows for loops and conditional logic to be used directly in HTML markup. This section explains and demonstrates the proper usage of templating in Meteor.js with Blaze.
// Single-line comment
/* Multi-line/In-line comment */
/// Dartdoc comment
It is good practice to add comments to your code to explain why something is done or to explain what something does. This helps any future readers of your code to more easily understand your code.
Related topic(s...
[[local] mt = ]getmetatable(t) --> retrieve associated metatable for 't'
[[local] t = ]setmetatable(t, mt) --> set the metatable for 't' to 'mt' and returns 't'
ParameterDetailstVariable referring to a lua table; can also be a table literal.mtTable to use as a metatable; can have ze...
<type>[] <name>;
Slices generate a new view on existing memory. They don't create a new copy. If no slice holds a reference to that memory anymore - or a sliced part of it - it will be freed by the garbage collector.
Using slices it's possible to write very efficient code for e...
Coordinate system
3D transforms are made according to an (x, y, z) coordinate vector system in Euclidean space.
The following image shows an example of coordinates in Euclidean space:
In CSS,
The x axis represents the horizontal (left and right)
The y axis represents the vertical (up an...
#include <windows.h>
BOOL WINAPI DestroyWindow(HWND hwnd);
VOID WINAPI PostQuitMessage(int exitcode);
BOOL WINAPI MoveWindow(HWND hwnd, int x, int y, int cx, int cy, BOOL bRepaint);
The Extensible Messaging and Presence Protocol (XMPP) is a network protocol that uses XML to exchange structured data between two or more network connected entities in near-real-time. XMPP was created to satisfy the IETFs guidelines for instant messaging and presence protocols (RFC 2779), but its ...
This about is taken directly from the JQuery Mobile website:
http://jquerymobile.com/about/
"jQuery Mobile is a HTML5-based user interface system designed to make responsive web sites and apps that are accessible on all smartphone, tablet and desktop devices. It is built on the rock-solid j...
Examples for developers module should be used as a reference for module development ideally. It has explanation of all the major APIs, well documented usage. It is all in for begineers to understand module development.