Tutorial by Topics: me

Forecasting and time-series analysis may be handled with commonplace functions from the stats package, such as glm() or a large number of specialized packages. The CRAN Task View for time-series analysis provides a detailed listing of key packages by topic with short descriptions.
WooCommerce is an eCommerce plugin for the WordPress CMS. It is the most popular eCommerce software on the internet, used to power about 39% of all eCommerce websites at time of writing. It's greatest strength is it's ease of use for shop owners and high flexibility for developers allowing it to...
In Java, objects are allocated in the heap, and heap memory is reclaimed by automatic garbage collection. An application program cannot explicitly delete a Java object. The basic principles of Java garbage collection are described in the Garbage collection example. Other examples describe final...
MonoGame is a managed code game-framework with cross-platform support. It is an Open Source implementation of the Microsoft XNA 4 Framework. Using the reliability of managed code with .NET and Mono and the support of many platforms, it simplifies the development of games on multiple platforms. Pl...
MPI is a standard, not a programming library. There are many implementations of the standard. The most common open source ones are MPICH and Open MPI. There are many derivatives of these two libraries that are either open source or commercial (or both). It's important to know which implementation...
::(opt) new (expression-list)(opt) new-type-id new-initializer(opt) ::(opt) new (expression-list)(opt) (type-id) new-initializer(opt) ::(opt) delete cast-expression ::(opt) delete [] cast-expression std::unique_ptr<type-id> var_name(new type-id(opt)); //C++11 std::shared_ptr<type-id...
A PreparedStatement declares the statement before it is executed, and allows for placeholders for parameters. This allows the statement to be prepared (and optimized) once on the server, and then reused with different sets of parameters. The added benefit of the parameter placeholders, is that it...

Page 11 of 46