Tutorial by Topics: to

A style allows the complete modification of the visual appearance of a WPF control. Here are some examples of some basic styling, and an introduction to resource dictionaries and animation.
Attoparsec is a parsing combinator library that is "aimed particularly at dealing efficiently with network protocols and complicated text/binary file formats". Attoparsec offers not only speed and efficiency, but backtracking and incremental input. Its API closely mirrors that of another...
Profunctor is a typeclass provided by the profunctors package in Data.Profunctor. See the "Remarks" section for a full explanation. dimap :: Profunctor p => (a -> b) -> (c -> d) -> p b c -> p a d lmap :: Profunctor p => (a -> b) -> p b c -> p a c rmap...
Many third-party APIs require a key, allowing them to prevent abuse. If they issue you a key, it's very important that you not commit the key into a public repository, as this will allow others to steal your key.
There are more than ten different client libraries to use with Redis in Java. One of the most popular clients is Jedis. Further information: Java Redis Clients Jedis Github Repository Jedis Documentation/Wiki
The null coalescing operator (??) has been added as syntactic sugar for the common case of needing to use a ternary in conjunction with isset(). It returns its first operand if it exists and is not NULL; otherwise it returns its second operand.
The spaceship operator is used for comparing two expressions. For example, $a <=> $b returns -1, 0 or 1 when $a is respectively less than, equal to, or greater than $b. Comparisons are performed according to PHP's usual type comparison rules.
This is a list of commonly-used shortcuts in Sublime Text version 3. If you know of others, feel free to suggest an edit but I'll start it with [Windows] ones I know. There is a list of shortcuts in the sublime text docs (at http://docs.sublimetext.info/en/latest/reference/keyboard_shortcuts_win.ht...
Protobuf or Protocol Buffer encodes and decodes data so that different applications or modules written in unlike languages can exchange the large number of messages quickly and reliably without overloading the communication channel. With protobuf, the performance is directly proportional to the numb...
The configuration file contains information which Protractor uses to run your test script. Here I'll try to give a few different variations.
This shows the proper usage of images and how to correctly display images.
This section describes how central (iOS app) can scan available BLE peripherals and connect with one we are interested in.
CBCentralManager acts as a manager class central side app generally iOS app. which is responsible for bridging communication between peripherals and central.
This topic would cover how angular-cli project is ready for production build, what all necessary steps taken before deploying, how to create war file for project deployment and finally how to configure the apache tomcat for angular-cli project deployment.
The arrival of Java 9 brings many new features to Java's Collections API, one of which being collection factory methods. These methods allow for easy initialization of immutable collections, whether they be empty or nonempty. Note that these factory methods are only available for the following int...
When dealing with objects in an MVC app, if any object should be shown in multiple places with the same format, we'd need some kind of standardized layout. ASP.NET MVC has made this kind of standardization easy to do with the inclusion of display and editor templates. In short, display and editor te...
Laravel requires some folders to be writable for the web server user.
These where some of the hardest things (and least talked about) to do with the PHP API advanced search (where you specify what fields). Im in the process of migrating to rest_suite github library that uses RESTLET, and get around the PHP API user concurrency limit of 1. But before i delete my old ...

Page 44 of 51