Tutorial by Topics: m

now() Dates.today() Dates.year(t) Dates.month(t) Dates.day(t) Dates.hour(t) Dates.minute(t) Dates.second(t) Dates.millisecond(t) Dates.format(t, s)
macro"string" # short, string macro form @macro_str "string" # long, regular macro form macro`command` String macros are not quite as powerful as plain old strings — because interpolation must be implemented in the macro's logic, string macros are unable to contain str...
string.find(str, pattern [, init [, plain]]) -- Returns start and end index of match in str string.match(str, pattern [, index]) -- Matches a pattern once (starting at index) string.gmatch(str, pattern) -- Returns a function that iterates through all matches in str string.gsub(st...
using Compat Compat.String Compat.UTF8String @compat f.(x, y) It is sometimes very difficult to get new syntax to play well with multiple versions. As Julia is still undergoing active development, it is often useful simply to drop support for older versions and instead target just the ne...
Vararg Keyword: vararg is used in a method declaration to indicate that a variable number of parameters will be accepted. Spread Operator: An asterisk (*) before an array that is used in function calls to "unfold" the contents into individual parameters.
ParameterDescription-Help | -? | /?Shows the help-File <FilePath> [<Args>]Path to script-file that should be executed and arguments (optional)-Command { - | <script-block> [-args <arg-array>] | <string> [<CommandParameters>] }Commands to be executed followed by a...
While Django is primarily for web apps it has a powerful and easy to use ORM that can be used for command line apps and scripts too. There are two different approaches that can be used. The first being to create a custom management command and the second to initialize the Django environment at the...
VariableExplanationJUSERIDRandom user idJUSERNAMESpecified login for admin userJUSEREMAILSpecified email for admin userJUSERPASSSpecified password (will be hashed)DBSpecified Database nameDBUSERSpecified Database user for joomlaDBPASSSpecified Database user password for joomlaDBPREFIXSpecified Data...
wp_insert_post(array $args, bool $wp_error); ParameterDescription$args (Array Required)A Key Value Array of the below elements.$wp_error (Boolean Optional)Return a WP_Error in case of failure. Arguments The next table shows you a list of elements that you can use inside of the first p...
IF [condition 1] THEN [statements to execute when condition 1 is TRUE]; ELSIF [condition 2] THEN [statements to execute when condition 2 is TRUE]; ELSE [statements to execute when both condition 1 & condition 2 are FALSE]; END IF;

Page 78 of 161