Tutorial by Topics: o

For further information, see Apple's documentation on Using Swift with Cocoa and Objective-C.
string date ( string $format [, int $timestamp = time() ] ) int strtotime ( string $time [, int $now ] )
plot(Y) plot(Y,LineSpec) plot(X,Y) plot(X,Y,LineSpec) plot(X1,Y1, X2,Y2, ..., Xn,Yn) plot(X1,Y1,LineSpec1, X2,Y2,LineSpec2, ..., Xn,Yn,LineSpecn) plot(___, Name,Value) h = plot(___) ParameterDetailsXx-valuesYy-valuesLineSpecLine style, marker symbol, an...
font: [font-style] [font-variant] [font-weight] font-size [/line-height] font-family; font-style: font-style font-variant: font-variant font-weight: font-weight; font-size: font-size; line-height: line-height; font-family: font-family; color: color; quotes: none|string|initial|inherit; f...
localStorage.setItem(name, value); localStorage.getItem(name); localStorage.name = value; localStorage.name; localStorage.clear() localStorage.removeItem(name); ParameterDescriptionnameThe key/name of the itemvalueThe value of the item The Web Storage API is sp...
Meteor is a full-stack JavaScript platform for developing modern Web and mobile applications. Within one project, you are able to build your client (browser and/or hybrid mobile App for Android and/or iOS) and server sides. Reference pages: Meteor Guide Meteor API Docs Meteor Tutorials Met...
Twilio provides a platform for communication via IP messaging (chat), video, voice, SMS and MMS. This simple example demonstrates how to send an SMS text message using the Twilio module for Node.js. VersionRelease Date1.0.02016-04-12
ParameterDetailscard_dataJSON object containing payment information for transactioncredit_card_detailsJSON object containing credit card data that is sent to PayPal to be vaultedclient_idYour PayPal application client ID (OAuth 2 credentials)paypalPayPal Node SDK referencesecretYour PayPal applicat...
The Flexible Box module, or just 'flexbox' for short, is a box model designed for user interfaces, and it allows users to align and distribute space among items in a container such that elements behave predictably when the page layout must accommodate different, unknown screen sizes. A flex containe...
All preprocessor commands begins with the hash (pound) symbol #. A C macro is just a preprocessor command that is defined using the #define preprocessor directive. During the preprocessing stage, the C preprocessor (a part of the C compiler) simply substitutes the body of the macro wherever its nam...
require Module::Name; # Require by name from @INC require "path/to/file.pm"; # Require by relative path from @INC use Module::Name; # require and default import at BEGIN use Module::Name (); # require and no import at BEGIN use Module::Name (@ARGS); # require and import with args at...
Terminology The Caret (^) character is also referred to by the following terms: hat control uparrow chevron circumflex accent Usage It has two uses in regular expressions: To denote the start of the line If used immediately after a square bracket ([^) it acts to negate the set of a...
In C++ Metaprogramming refers to the use of macros or templates to generate code at compile-time. In general, macros are frowned upon in this role and templates are preferred, although they are not as generic. Template metaprogramming often makes use of compile-time computations, whether via templ...
ParameterDetailsbillingAgreementAttributesConfiguration object to create the billing agreementbillingPlanBilling plan ID from the query stringbillingPlanAttribsConfiguration object to create the billing planbillingPlanUpdateAttributesConfiguration object for changing a billing plan to an active sta...
Similar to other programming, markup, and markdown languages, comments in HTML provide other developers with development specific information without affecting the user interface. Unlike other languages however, HTML comments can be used to specify HTML elements for Internet Explorer only. This topi...

Page 10 of 283