Tutorial by Topics: to

The Scripting.FileSystemObject is much more robust that the legacy methods in this topic. It should be preferred in almost all cases.
The CoordinatorLayout is a super-powered FrameLayout and goal of this ViewGroup is to coordinate the views that are inside it. The main appeal of the CoordinatorLayout is its ability to coordinate the animations and transitions of the views within the XML file itself. CoordinatorLayout is intended...
CKEditor is a JavaScript based WYSIWYG editor created for use within web pages. It is open source and plugin based making it both customizable and extensible. The CKEditor website can be found in http://www.ckeditor.com and the source code of the library is available on github. The official docu...
If you're using a Firefox version before 48, you'll also need an additional key in manifest.json called applications: "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "42.0", "...
Pester is a test framework for PowerShell that allows you to run test cases for you PowerShell code. It can be used to run ex. unit tests to help you verify that your modules, scripts etc. work as intended. What is Pester and Why Should I Care?
Although combinators have limited practical use, they are a useful tool in education to understand how programming is fundamentally linked to logic, and how very simple building blocks can combine to create very complex behaviour. In the context of Julia, learning how to create and use combinators...
collectgarbage(gcrule [, gcdata]) -- collect garbage using gcrule setmetatable(tab, {__mode = weakmode}) -- set weak mode of tab to weakmode parameterdetailsgcrule & gcdataAction to gc (garbage collector): "stop" (stop collecting), "restart" (start collecting again),...
The code to convert a plain text file to a PDF document is pretty simple whether you use iText 5 or iText 7. In iText 7, you have the advantage that you can define the alignment at the level of the document. In iText 5, you have to set the alignment for every separate Paragraph object. To underst...
/* Base64 Encoded Encryption / $enc_data = base64_encode( openssl_encrypt($data, $method, $password, true, $iv) ); / Decode and Decrypt */ $dec_data = base64_decode( openssl_decrypt($enc_data, $method, $password, true, $iv) ); This way of doing the encryption and encoding would not work as p...
An async function is one that returns a promise. await yields to the caller until the promise resolves and then continues with the result. An iterator allows the collection to be looped through with a for-of loop. An async iterator is a collection where each iteration is a promise which can be awa...
Operators are evaluated in the following order: Mathematical operators Bitwise operators Concatenation operators Comparison operators Logical operators Operators with matching precedence are evaluated from left to right. The default order can be overridden by using parentheses ( and ) t...
BACKUP DATABASE database TO backup_device [ ,...n ] WITH with_options [ ,...o ] RESTORE DATABASE database FROM backup_device [ ,...n ] WITH with_options [ ,...o ] ParameterDetailsdatabaseThe name of the database to backup or restorebackup_deviceThe device to backup or restore the database f...
ParameterDetails$addFieldToFilter($field, $condition = null){ string } The field we are adding to the filter.$addFieldToFilter($field, $condition = null){ mixed } The definition of the filter we will use.addAttributeToFilter($attr, $condition = null, $join = 'inner'){ string } The field we are addi...
The Prototype pattern is a creational pattern that creates new objects by cloning existing prototype object. The prototype pattern speeds up the instantiation of classes when copying objects is faster. The prototype pattern is a creational design pattern. It is used when the type of objects to...

Page 22 of 51