Tutorial by Topics: n

AWS Lambda is a serverless setup for executing functions in the cloud. It leverages existing Amazon Web Services technologies to infinitely scale and run only when necessary in it's own isolated environment. Using Lambda, you can upload your code, configure it to run based on a variety of triggers...
$collection = collect(['Value1', 'Value2', 'Value3']); // Keys default to 0, 1, 2, ..., Illuminate\Support\Collection provides a fluent and convenient interface to deal with arrays of data. You may well have used these without knowing, for instance Model queries that fetch multiple records...
This section provides an overview of what rxjs is, and why a developer might want to use it. It should also mention any large subjects within rxjs, and link out to the related topics. Since the Documentation for rxjs is new, you may need to create initial versions of those related topics. Ve...
When you support universal links, iOS 9 users can tap a link to your website and get seamlessly redirected to your installed app without going through Safari. If your app isn’t installed, tapping a link to your website opens your website in Safari. Generally, any supported link clicked in Safa...
public static function log($message, $level = null, $file = '', $forceLog = false) ParameterDetailsstring $messageThe message that will be loggedinteger $levelLog levelstring $filePath and name with extension of file that will be saved to var/log/. If NULL or not specified then system.log wi...
The Facebook Graph API is one of the most useful tools available to app developers today. It is used to integrate Facebook functionality such as login or retrieving photos, friends and other data one might need from Facebook into one's own app.
Error Log Locations /var/log/ Typically the system.log and exception.log file will exist in the /var/log/ folder. These contain most of the information you will need. You can check to see if these are enabled and what the names of the exception and system log are by going to System > Conf...
This section provides an overview of what data-structures is, and why a developer might want to use it. It should also mention any large subjects within data-structures, and link out to the related topics. Since the Documentation for data-structures is new, you may need to create initial version...
Other than in ordinary C / C++ , the Arduino IDE allows to call a function before it is defined. In .cpp files, you have to define the function, or at least declare the function prototype before you can use it. In an .ino file, the Arduino IDE creates such a prototype behind the scenes. Arduino ...
analogRead(pin) //Read from the given pin. Serial.println(val) For help with Serial communication, see: Serial Communication
Using undocumented features is considered a risky practice1, as these features may change without notice or simply work differently on different MATLAB versions. For this reason, it is advised to employ defensive programming techniques such as enclosing undocumented pieces of code within try/cat...
This section provides an overview of what linux-kernel is, and why a developer might want to use it. It should also mention any large subjects within linux-kernel, and link out to the related topics. Since the Documentation for linux-kernel is new, you may need to create initial versions of thos...
const Type myVariable = initial; // Declares a const variable; cannot be changed const Type &myReference = myVariable; // Declares a reference to a const variable const Type *myPointer = &myVariable; // Declares a pointer-to-const. The pointer can change, but the underlying data member c...

Page 69 of 329