Quickly set up a local Gitlab CE server using Vagrant.
Run vagrant up
to setup the virtual server.
- Ubuntu 16.04
- Installs latest Docker
local function matmul(a, b) | |
return { | |
a[1]*b[1] + a[2]*b[3], a[1]*b[2] + a[2]*b[4], | |
a[3]*b[1] + a[4]*b[3], a[3]*b[2] + a[4]*b[4], | |
} | |
end | |
local function matpow(m,p) | |
local r = { | |
m[1], m[2], |
/////////////////////////////////////////////////////////////////////////////// | |
/// | |
/// @copyright Copyright (c) 2016 Chris Tallman. | |
/// | |
/// @file ASyncCallback.hpp | |
/// @date 11/11/2016 | |
/// @author ctallman | |
/// | |
/// @brief Threaded callback wrapper class. | |
/// |
--[[ | |
ProFi v1.3, by Luke Perkin 2012. MIT Licence http://www.opensource.org/licenses/mit-license.php. | |
Example: | |
ProFi = require 'ProFi' | |
ProFi:start() | |
some_function() | |
another_function() | |
coroutine.resume( some_coroutine ) | |
ProFi:stop() |