Tutorial by Topics: in

Function functionName(argumentVariable As dataType, argumentVariable2 As dataType, Optional argumentVariable3 As dataType) As functionReturnDataType Basic declaration of a function. Every function needs a name, but it does not have to take any arguments. It may take 0 arguments, or it may take ...
ParameterDetailsmethodThe name of the method that has been called (in the above example this is :say_moo, note that this is a symbol.*argsThe arguments passed in to this method. Can be any number, or none&blockThe block of the method called, this can either be a do block, or a { } enclosed bloc...
This section provides an overview of what codenameone is, and why a developer might want to use it. It should also mention any large subjects within codenameone, and link out to the related topics. Since the Documentation for codenameone is new, you may need to create initial versions of those r...
From the documentation: The UINavigationController class implements a specialized view controller that manages the navigation of hierarchical content. This navigation interface makes it possible to present your data efficiently and makes it easier for the user to navigate that content. You gene...
Verilog is a hardware description language (HDL) that is used to design, simulate, and verify digital circuitry at a behavioral or register-transfer level. It is noteworthy for a reasons that distinguish it from "traditional" programming languages: There are two types of assignment, b...
AJAX (asynchronous JavaScript and XML) allows you to request external data without blocking the execution of code. In many cases this is implemented in requesting pieces of a page or information from a server (via XMLhttpRequests) and then processing and displaying it using javascript. The non-bl...
Terms and concepts Screen size Actual physical size, measured as the screen's diagonal. For simplicity, Android groups all actual screen sizes into four generalized sizes: small, normal, large, and extra-large. Screen density The quantity of pixels within a physical area of the screen; usu...
XPages is a web Framework for IBM Notes platform. It was introduced in Lotus Domino 8.5 (has to be verified). It is based on JSF (JavaServer Faces) with a lot of useful extensions to represent and manipulate IBM Notes data. IBM offers a tutorial for XPages: https://www-10.lotus.com/ldd/ddwiki.ns...
Active Server Pages (ASP), also known as Classic ASP or ASP Classic, was Microsoft's first server-side script-engine for dynamically-generated web pages. The introduction of ASP.NET led to use of the term Classic ASP for the original technology. The default server-side scripting language for ASP ...
Hive is a data warehouse tool built on top of Hadoop. It provides an SQL-like language to query data. We can run almost all the SQL queries in Hive, the only difference, is that, it runs a map-reduce job at the backend to fetch result from Hadoop Cluster. Because of this Hive sometimes take mo...
This section provides an overview of what twig is, and why a developer might want to use it. It should also mention any large subjects within twig, and link out to the related topics. Since the Documentation for twig is new, you may need to create initial versions of those related topics.
Redux is a JavaScript library that implements state container of the Flux-based architecture. Redux can be described in three fundamental principles: Single source of truth (Single store) State is read only (need actions to signal change) Changes are made with pure functions (This creates ne...
wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer) ParameterDetails$handle(string) (Required) Name of the script. Should be unique.$src(string) (Optional) Full URL of the script, or path of the script relative to the WordPress root directory. Default value: false$deps(array) (Optiona...
Functions and subroutines, in conjunction with modules, are the tools to break down a program into units. This makes the program more readable and manageable. Each one of these units can be thought of as part of the code that, ideally, could be compiled and tested in isolation. The main program(s...
A pointer is a type of variable which can store the address of another object or a function. <Data type> *<Variable name>; int *ptrToInt; void *ptrToVoid; /* C89+ */ struct someStruct *ptrToStruct; int **ptrToPtrToInt; int arr[length]; int *ptrToFirstElem = arr; /* For <C99...
Bluemix is a platform as a service (PaaS) developed by IBM, to build, run, deploy, and manage applications on the cloud. Bluemix offers a large catalog of services to integrate with your applications. Supported programming languages and runtimes include Java, Node.js, Swift, Go, PHP, Python, and R...
Microsoft Dynamics CRM SDK allows developers to extend the Microsoft Dynamics CRM product, add new functionalities and meet requirements. The SDK allows you to operate and communicate with the platform programmatically through web service messages, as well as to add custom code components like pl...
HTTP for Humans Requests is the only Non-GMO HTTP library for Python, safe for human consumption. Requests allows you to send organic, grass-fed HTTP/1.1 requests, without the need for manual labor. There's no need to manually add query strings to your URLs, or to form-encode your POST data. K...

Page 22 of 207