Tutorial by Topics: le

LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE 'file_name' INTO TABLE tbl_name [CHARACTER SET charset] [{FIELDS | COLUMNS} [TERMINATED BY 'string'] [[OPTIONALLY] ENCLOSED BY 'char']] [LINES [STARTING BY 'string'] [TERMINATED BY 'string'] ] [IGNORE number {LINES | ROWS}] [(col_name...
$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...
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...
Reflection is a language's ability to inspect code at runtime instead of compile time. Reflection is a mechanism to introspect language constructs (classes and functions) at the runtime. When targeting JVM platform, runtime reflection features are distributed in separate JAR: kotlin-reflect.j...
Not everything in AngularJS has a KnockoutJS equivalent (for example ngCloack, or ngSrc). There are two main solutions typically available: Use the generic attr or event binding instead. Similar to custom directives in AngularJS, you can write your own custom binding handler if you need someth...
System.IO.File.ReadAllLines(path As String) System.IO.File.ReadAllText(path As String) System.IO.File.WriteAllText(path As String, contents As String) System.IO.File.WriteAllLines(path As String, contents() As String)
[[local] mt = ]getmetatable(t) --> retrieve associated metatable for 't' [[local] t = ]setmetatable(t, mt) --> set the metatable for 't' to 'mt' and returns 't' ParameterDetailstVariable referring to a lua table; can also be a table literal.mtTable to use as a metatable; can have ze...
This about is taken directly from the JQuery Mobile website: http://jquerymobile.com/about/ "jQuery Mobile is a HTML5-based user interface system designed to make responsive web sites and apps that are accessible on all smartphone, tablet and desktop devices. It is built on the rock-solid j...
Examples for developers module should be used as a reference for module development ideally. It has explanation of all the major APIs, well documented usage. It is all in for begineers to understand module development.
Bluetooth Classic is available from Android 2.0 (API level 5) and above. Bluetooth LE is available from Android 4.3 (API level 18) and above.
Action Mailer allows you to send emails from your application using mailer classes and views. Mailers work very similarly to controllers. They inherit from ActionMailer::Base and live in app/mailers, and they have associated views that appear in app/views. It is advisable to process the sendin...

Page 14 of 68