Tutorial by Topics

Zend Framework 2 (ZF2) is a modern and flexible PHP framework that helps web developpers to build web applications of different complexities. The major sponsor of company Zend Framework is Zend Technologies, which makes it very strong and stable. There are two major improvments of this second vers...
Unlike pushing with Git where your local changes are sent to the central repository's server, pulling with Git takes the current code on the server and 'pulls' it down from the repository's server to your local machine. This topic explains the process of pulling code from a repository using Git as w...
(Very) basic Python client socket example
ParameterDetailsrequiredThe field is requiredsometimesRun validation checks against a field only if that field is present in the input arrayemailThe input is a valid emailmax:valueThe input value should be below the maximum valueunique:db_table_nameThe input value should be unique in the provided ...
Azure WebJobs provide an easy way to run scripts or programs as background processes in the context of an App Service web app, API app, or mobile app. You can upload and run an executable file such as: .cmd, .bat, .exe (using Windows cmd) .ps1 (using PowerShell) .sh (using bash) .php (using ...
Traits are a way of describing a 'contract' that a struct must implement. Traits typically define method signatures but can also provide implementations based on other methods of the trait, providing the trait bounds allow for this. For those familiar with object oriented programming, traits can be...
(quote object) -> object There are some objects (for example keyword symbols) that don't need to be quoted since they evaluate to themselves.
Background The JavaScript Object Model was introduced in SharePoint 2010. It exposes on the client side many of the objects that were previously only accessible through server-side code or through dedicated web services. Embedding JavaScript in SharePoint Pages In SharePoint 2013 you can put yo...
Docker data volumes provide a way to persist data independent of a container's life cycle. Volumes present a number of helpful features such as: Mounting a host directory within the container, sharing data in-between containers using the filesystem and preserving data if a container gets deleted ...
RAII stands for Resource Acquisition Is Initialization. Also occasionally referred to as SBRM (Scope-Based Resource Management) or RRID (Resource Release Is Destruction), RAII is an idiom used to tie resources to object lifetime. In C++, the destructor for an object always runs when an object goes...
jQuery internally handles events via the addEventListener function. This means it is perfectly legal to have more than one function bound to the same event for the same DOM element.
Within Meteor's data subsystem, a server publication and its corresponding client subscriptions are the main mechanisms of reactive, live data transport where the underlying data is constantly synchronized between the server and the client.
android:name=".ACRAHandler" ACRA.init(this, config); public class ACRAHandler extends Application { ParameterDescription@ReportCrashesDefines the ACRA settings such as where it is to be reported, custom content, etcformUrithe path to the file that reports the crash ACRA no lo...
This section provides an overview of what system.reactive is, and why a developer might want to use it. It should also mention any large subjects within system.reactive, and link out to the related topics. Since the Documentation for system.reactive is new, you may need to create initial version...

Page 53 of 428