Tutorial by Topics: mod

mod modname; // Search for the module in modname.rs or modname/mod.rs in the same directory mod modname { block }
Most examples are from MSDN. To create a .NET managed client application that uses the client object model, you must set references to two client library DLLs: Microsoft.SharePoint.Client.dll and Microsoft.SharePoint.Client.Runtime.dll. You can find it in %ProgramFiles%\Common Files\Microsoft S...
Module Names In Elixir, module names such as IO or String are just atoms under the hood and are converted to the form :"Elixir.ModuleName" at compile time. iex(1)> is_atom(IO) true iex(2)> IO == :"Elixir.IO" true
const cluster = require("cluster") cluster.fork() cluster.isMaster cluster.isWorker cluster.schedulingPolicy cluster.setupMaster(settings) cluster.settings cluster.worker // in worker cluster.workers // in master Note that cluster.fork() spawns a child process that begins...
Attribute types include: Undefined, Integer 16, Integer 32, Integer 64, Decimal, Double, Float, String, Boolean, Date, Binary, Data, or Transformable When defining an Entity as abstract you won't be creating any instances of that entity. For example a Person would be abstract and a Emp...
In all cases when extending types and modules, the extending code must be added/loaded before the code that is to call it. It must also be made available to the calling code by opening/importing the relevant namespaces.
It is possible to put a Python package in a ZIP file, and use it that way if you add these lines to the beginning of your script: import sys sys.path.append("package.zip")
alert( message ) confirm( message ) prompt( message [, optionalValue]) print() https://www.w3.org/TR/html5/webappapis.html#user-prompts https://dev.w3.org/html5/spec-preview/user-prompts.html
Developer Mode Odoo developer mode allows you to make substantial modifications to the Odoo database such as adding fields to your documents and views. You change the default views of your actions and can even create dynamic forms based on other fields within your models. Advantage While Odoo ...
Note about XML syntax: As the record is made inside of XML file, you can not leave any tag unclosed as you could in a plain HTML, like: <link rel='stylesheet' href="..." >, Close the link tag instead, like: <link rel='stylesheet' href="..." /> Possible ...
These examples introduce the most used commands of Perl to manipulate Excel via Win32::OLE module. $Sheet->Range(Cell1,[Cell2]) #Select a cell or a range of cells $Sheet->Cells(rowIndex, columnIndex) #Select a cell by index of row and column ParametersDetailsCell1 (required)The na...
ParameterDetailsnullIf true, empty values may be stored as null in the databaseblankIf true, then the field will not be required in forms. If fields are left blank, Django will use the default field value.choicesAn iterable of 2-element iterables to be used as choices for this field. If set, field ...

Page 3 of 11