Skip to content

Instantly share code, notes, and snippets.

@tuogex
tuogex / txUI.lua
Last active December 25, 2015 22:19
ComputerCraft User Interface Library
-- --
-- txUI - ComputerCraft User Interface Library
-- dev
-- tuogex
-- --
-- Moved to https://github.com/tuogex/txUI
@tuogex
tuogex / gist.lua
Last active June 18, 2022 18:04
Gist client for ComputerCraft. Uses JSON library from http://regex.info/blog/lua/json
-- --
-- gist client - tuogex
-- --
JSON = (loadfile "json.lua")()
--helper functions
function printHelp()
print("Gist client by tuogex")
print("-i <gistId> - Gets information about a gist")
print("-if <gistId> <gistFileName> - Gets information about a single file in the gist")
@tuogex
tuogex / rodney-config.php
Last active December 25, 2015 17:49
Blank config.php for RodneyDB
<?php
define("MYSQL_HOST", "");
define("MYSQL_PORT", 3306);
define("MYSQL_DB", "");
define("MYSQL_USER", "");
define("MYSQL_PASSWORD", "");
define("DB_USER_TABLE", "");
define("DB_USER_HASH_ALGO", "sha256");
define("CHECKIN_MAX", 10);