View SketchSystems.spec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Parcel machine flow | |
# According to v2 Marvel prototype | |
Parcel machine& | |
View | |
Welcome | |
Pick up -> Pickup flow | |
Send -> Registration flow | |
Return -> Return flow | |
Pickup flow |
View static.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Pug; // https://github.com/pug-php/pug | |
use Cockpit; | |
require_once __DIR__.'/vendor/autoload.php'; // Composer | |
require_once __DIR__.'/cockpit/bootstrap.php'; // https://github.com/COCOPi/cockpit | |
chdir(dirname(__FILE__)); // Keep this directory if called directly or from Cockpit | |
//setlocale(LC_TIME, 'et_EE', 'et', 'EE', 'ET', 'Estonia'); | |
//define('DATE_FORMAT', "%e. %B %G"); |
View lasi.cgi.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /home/stuserbot/bin/lua | |
local rt = {} | |
local getenv = os.getenv | |
local strupper = string.upper | |
local strlower = string.lower | |
local format = string.format | |
local gsub = string.gsub | |
local setmetatable = setmetatable | |
local write = io.write |