Tutorial by Topics: n

Unit testing is a low level testing practice where smallest units or components of the code are tested.
This article will show you the various colours formats in Processing and the ways in which they can be used. color(r, g, b); color(r, g, b, alpha); color(gray); color(gray, alpha); color(h, s, l); //The mode must be HSB. You can change this using colorMode. ParametersDetailsrIs the red o...
How to create charts with EPPlus
WCSessionDelegate works with watch OS2 + using WatchConnectivity. var watchSession : WCSession? func startWatchSession(){ if(WCSession.isSupported()){ watchSession = WCSession.default() watchSession!.delegate = self ...
How to import data from an existing Excel or CSV file.
ConfigSlurper allows you to use another groovy script as a config file for your script instead of using, for example, a .properties file. You can do interesting configurations with typed properties and you don't need to convert from string. You can use lists, maps or a value based on some calcul...
This section should provide details of all the possible ways to consume a SOAP web service. ParameterDetailsCountryNameString such as UK
This section provides an overview of what Firefox is, and why a developer might want to use it. It should also mention any large subjects within Firefox, and link out to the related topics. Since the Documentation for Firefox is new, you may need to create initial versions of those related topi...
At certain points, you will be evaluating a range of data and you will need to locate the duplicates in it. For bigger data sets, there are a number of approaches you can take that use either VBA code or conditional functions. This example uses a simple if-then condition within two nested for-next l...
Scala allows you to use dynamic invocation when calling methods or accessing fields on an object. Instead of having this built deep into the language, this is accomplished through rewriting rules similar to those of implicit conversions, enabled by the marker trait [scala.Dynamic][Dynamic scaladoc]....
Formula columns in saved searches can exploit many features of Oracle SQL and HTML. The examples show how these features can be used, as well as pitfalls to avoid.
Setters and getters are object properties that call a function when they are set/gotten. An object property cannot hold both a getter and a value at the same time. However, an object property can hold both a setter and a getter at the same time.
LeftAndMain is more of a lower-level API and not often required due to the existence of ModelAdmin. However if you wanted to create a custom user interface that did not necessarily require the functionality of ModelAdmin in the administration panel for your module, than LeftAndMain is where you woul...
configure_file is a CMake function for copying a file to another location and modify its contents. This function is very useful for generating configuration files with paths, custom variables, using a generic template. Copy a file to another location and modify its contents. configure_file(&l...
Accessors and mutators allow you to format Eloquent attribute values when you retrieve or set them on model instances. For example, you may want to use the Laravel encrypter to encrypt a value while it is stored in the database, and then automatically decrypt the attribute when you access it on an E...
jQuery promises are a clever way of chaining together asynchronous operations in a building-block manner. This replaces old-school nesting of callbacks, which are not so easily reorganised.

Page 251 of 329