Tutorial by Topics

Regular expression patterns are often used with modifiers (also called flags) that redefine regex behavior. Regex modifiers can be regular (e.g. /abc/i) and inline (or embedded) (e.g. (?i)abc). The most common modifiers are global, case-insensitive, multiline and dotall modifiers. However, regex fla...
This section provides an overview of what api is, and why a developer might want to use it. It should also mention any large subjects within api, and link out to the related topics. Since the Documentation for api is new, you may need to create initial versions of those related topics.
With Firebird 2.1 and databases with ODS 11.1 (and higher) Firebird introduces the ability to monitor server-side activity happening inside a particular database. Complete database monitoring is available to SYSDBA and the database owner. Regular users are restricted to the information about thei...
Git's reflog records the position of HEAD (the ref for the current state of the repository) every time that it is changed. Generally, every operation that might be destructive involves moving the HEAD pointer (since if anything is changed, including in the past, the tip commit's hash will change)...
/* all versions */ for ([expression]; [expression]; [expression]) one_statement for ([expression]; [expression]; [expression]) { zero or several statements } while (expression) one_statement while (expression) { zero or several statements } do one_statement while (expression); do { one o...
History The Symantec JIT compiler was available in the Sun Java from 1.1.5 onwards, but it had problems. The Hotspot JIT compiler was added to Sun Java in 1.2.2 as a plugin. In Java 1.3, JIT was enabled by default. (Source: When did Java get a JIT compiler?
The WebViewis the JavaFX Node that is integrated into the JavaFX component tree. It manages a WebEngine and displays it's content. The WebEngine is the underlying Browser Engine, which basically does the whole work.
As at the time of writing (Aug '16), parent selector (&) always refers to the full parent selector chain right till the top most level. It cannot be used to select just the immediate parent or the root most ancestor alone. That is, in the below code &#type1 would resolve to #demo-containe...
Dependencies: If application uses third party libraries or cocoa pods, then those libraries or pods are needed to be install for test as well. Test class (Test Suit) extends XCTestCase. Get brushed up before starting: All test classes have two methods in common setUp & tearDown. ...
Integrated PDF signatures are explained quite graphically and in more detail in the Adobe document Digital Signatures in a PDF. They furthermore are specified in the PDF specification ISO 32000-1:2008 made available here by Adobe in section 12.8 Digital Signatures. Depending on your programming c...

Page 201 of 428