Tutorial by Topics: introduction

lua_State *L = lua_open(); // Create a new VM state; Lua 5.0 lua_State *L = luaL_newstate(); // Create a new VM state; Lua 5.1+ int luaL_dofile(lua_State *L, const char *filename); // Run a lua script with the given filename using the specified lua_State void luaL_openlibs(lua_State *L); // Lo...
See also I/O for geographic data
Laravel is a MVC framework with bundles, migrations, and Artisan CLI. Laravel offers a robust set of tools and an application architecture that incorporates many of the best features of frameworks like CodeIgniter, Yii, ASP.NET MVC, Ruby on Rails, Sinatra, and others. Laravel is an Open Source fram...
{Binding PropertyName} is equivalent to {Binding Path=PropertyName} {Binding Path=SomeProperty.SomeOtherProperty.YetAnotherProperty} {Binding Path=SomeListProperty[1]} ParameterDetailsPathSpecifies the path to bind to. If unspecified, binds to the DataContext itself.UpdateSourceTriggerSpec...
ANTLR v4 is a powerful tool used for building new programming languages and processing/translating structured text or binary files. ANTLR uses a grammar you create to generate a parser which can build and traverse a parse tree (or abstract syntax tree, AST). The parser consists of output files in ...
The latest version of AMQPStorm is available at pypi or you can install it using pip pip install amqpstorm
To run the example, the command syntax is: bin/hadoop jar hadoop-*-examples.jar wordcount [-m <#maps>] [-r <#reducers>] <in-dir> <out-dir> To copy data into HDFS(from local): bin/hadoop dfs -mkdir <hdfs-dir> //not required in hadoop 0.17.2 and later bin/h...
var stripeSubscriptionOptions = new StripeSubscriptionCreateOptions(); //create a variable to hold options object stripeSubscriptionOptions.Quantity = model.update; //example option of quantity of seats for a subscription var subscriptionService = new StripeSubscriptionSer...
Task - main function to execute a step of your build script Depends - property that specify what the current step depends upon default - there must always be a default task that will get executed if no initial task is specified FormatTaskName - specifies how each step is displayed in the result...
Pester is a test framework for PowerShell that allows you to run test cases for you PowerShell code. It can be used to run ex. unit tests to help you verify that your modules, scripts etc. work as intended. What is Pester and Why Should I Care?
Components allow reusable controls/widgets represented by their own view (template) and viewmodel. They were added in Knockout 3.2. Inspired by WebComponents, Knockout allows Components to be defined as Custom Elements, allowing the use of more self-explanatory markup.
This tutorial will show you how to use Weka in JAVA code, load data file, train classifiers and explains some of important concepts behind machine learning. Weka is a toolkit for machine learning. It includes a library of machine learning and visualisation techniques and features a user friendly G...

Page 1 of 2