Tutorial by Topics

window.history.pushState(domain, title, path); window.history.replaceState(domain, title, path); ParameterDetailsdomainThe domain you want to update totitleThe title to update topathThe path to update to The HTML5 History API is not implemented by all browsers and implementations tend to ...
var jqXHR = $.ajax( url [,settings] ) var jqXHR = $.ajax( [settings] ) jqXHR.done(function( data, textStatus, jqXHR ) {}); jqXHR.fail(function( jqXHR, textStatus, errorThrown ) {}); jqXHR.always(function( jqXHR ) {}); ParameterDetailsurlSpecifies the URL to which the request will be sent...
@media [not|only] mediatype and (media feature) { /* CSS rules to apply */ } ParameterDetailsmediatype(Optional) This is the type of media. Could be anything in the range of all to screen.not(Optional) Doesn't apply the CSS for this particular media type and applies for everything else.media...
String.characters // Returns an Array of the characters in the String String.characters.count // Returns the number of characters String.utf8 // A String.UTF8View, returns the UTF-8 character points in the String String.utf16 // A String.UTF16View, returns the UTF-16 character points in the St...
UPDATE table SET column_name = value, column_name2 = value_2, ..., column_name_n = value_n WHERE condition (logical operator condition_n)
Arrays are derived data types, representing an ordered collection of values ("elements") of another type. Most arrays in C have a fixed number of elements of any one type, and its representation stores the elements contiguously in memory without gaps or padding. C allows multidimensional...
Commits with Git provide accountability by attributing authors with changes to code. Git offers multiple features for the specificity and security of commits. This topic explains and demonstrates proper practices and procedures in committing with Git. git commit [flags] Parameter        ...
You can read more about extensions in The Swift Programming Language.
This is an simple, yet thorough, example of initializing PubNub, subscribing to a channel and publishing to that channel. Once you init PUBNUB, you can subscribe to a channel. The connect callback indicates that subscription to the channel was successful, so we call our pub function which perf...
reduce(function, iterable[, initializer]) ParameterDetailsfunctionfunction that is used for reducing the iterable (must take two arguments). (positional-only)iterableiterable that's going to be reduced. (positional-only)initializerstart-value of the reduction. (optional, positional-only) r...
<init> (i.e. require ("pubnub")) Initialize an instance of PubNub to invoke operations. ParameterDetailspublish_keyString - your publish key from your PubNub Admin Dashboard accountsubscribe_keyString - your publish key from your PubNub Admin Dashboard account subscribe Subscri...
map(function, iterable[, *additional_iterables]) future_builtins.map(function, iterable[, *additional_iterables]) itertools.imap(function, iterable[, *additional_iterables]) ParameterDetailsfunctionfunction for mapping (must take as many parameters as there are iterables) (positional-only)...
Node.js is an event-based, non-blocking, asynchronous I/O framework that uses Google's V8 JavaScript engine. It is used for developing applications that make heavy use of the ability to run JavaScript both on the client, as well as on server side and therefore benefit from the re-usability of code...
Perl is the camel of languages: useful, but not always beautiful. It has rather good documentation of its own which can be accessed using the perldoc command from your shell/command prompt. It's also available online at perldoc.perl.org. VersionRelease NotesRelease Date1.0001987-12-182.0001988...

Page 13 of 428