Tutorial by Topics: t

Python, being one of the most popular languages in computer and network security, has great potential in security and cryptography. This topic deals with the cryptographic features and implementations in Python from its uses in computer and network security to hashing and encryption/decryption algor...
Browsers, as they have evolved, offered more features to Javascript. But often these features are not available in all browsers. Sometimes they may be available in one browser, but yet to be released on other browsers. Other times, these features are implemented differently by different browsers. Br...
This section provides an overview of what asp.net-mvc-4 is, and why a developer might want to use it. It should also mention any large subjects within asp.net-mvc-4, and link out to the related topics. Since the Documentation for asp.net-mvc-4 is new, you may need to create initial versions of t...
Collectives operations are MPI calls designed communicate the processes pointed out by a communicator in a single operation or to perform a synchronization among them. These are often used to calculate one or more values based on data contributed by other processes or to distribute or collect dat...
PREPARE stmt_name FROM preparable_stmt EXECUTE stmt_name [USING @var_name [, @var_name] ...] {DEALLOCATE | DROP} PREPARE stmt_name
WebGL is a rasterization API that generally runs on your GPU giving you the ability to quickly draw 2D and 3D graphics. WebGL can also be used to do computations on arrays of data. WebGL is a very low-level API. At a base level WebGL is an engine that runs 2 user supplied functions on the GPU. On...
pickle.dump(object,file,protocol) #To serialize an object pickle.load(file) #To de-serialize an object pickle.dumps(object, protocol) # To serialize an object to bytes pickle.loads(buffer) # To de-serialzie an object from bytes ParameterDetailsobjectThe object which is to ...
MongoDB C# Driver is a .NET driver that handles requests to MongoDB Server. It allows for fully asychronous calls and handles serialization/deserialazation of objects using the BSON Library. MongoDB C# .NET Documentation MongoDB C# API Documentation VersionRelease Date2.2.42016-05-022.2.3201...
This section provides an overview of what pymongo is, and why a developer might want to use it. It should also mention any large subjects within pymongo, and link out to the related topics. Since the Documentation for pymongo is new, you may need to create initial versions of those related topic...
This section provides an overview of what nlp is, and why a developer might want to use it. It should also mention any large subjects within nlp, and link out to the related topics. Since the Documentation for nlp is new, you may need to create initial versions of those related topics.
Model.Query.populate(path, [select], [model], [match], [options]); ParamDetailspathString - The field key to be populatedselectObject, String - Field selection for the population query.modelModel - Instance of the referenced modelmatchObject - Populate conditionsoptionsObject - Query options...
A String in Elixir is a UTF-8 encoded binary.
Ashley Entity System is an Entity System library that's managed under the LibGDX organization and is and well-suited for game development. It depends on LibGDX utility classes, but can be used with other Java game frameworks not based on LibGDX with some work. Entity systems provide a different ...
ParameterDetailsintervalThe time, in seconds, to wait beforing firing the timer; or, in repeating timers, the time between firings.targetThe object to call the selector onselectorIn Swift, a Selector object specifying the method to call on the targetrepeatsIf false, fire the timer only once. If tru...
In computer programming, an enumerated type (also called enumeration or enum [..]) is a data type consisting of a set of named values called elements, members or enumerators of the type. The enumerator names are usually identifiers that behave as constants in the language. A variable that h...
ALTER [IGNORE] TABLE tbl_name [alter_specification [, alter_specification] ...] [partition_options] alter_specification: table_options | ADD [COLUMN] col_name column_definition [FIRST | AFTER col_name ] | ADD [COLUMN] (col_name column_definition,...) | ADD {INDEX|KE...

Page 78 of 339