Tutorial by Topics: t

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...
(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.
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...
docker stats [OPTIONS] [CONTAINER...] docker logs [OPTIONS] CONTAINER docker top [OPTIONS] CONTAINER [ps OPTIONS]
ggplot2 has its own perfect reference website http://ggplot2.tidyverse.org/. Most of the time, it is more convenient to adapt the structure or content of the plotted data (e.g. a data.frame) than adjusting things within the plot afterwards. RStudio publishes a very helpful "Data Visualizat...
Pattern Matching is a powerful feature of many functional languages as it often allows branching to be handled very succinctly compared to using multiple if/else if/else style statements. However given enough options and "when" guards, Pattern Matching can also become verbose and diffic...

Page 41 of 340