This file contains hidden or 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
-- -- | |
-- txUI - ComputerCraft User Interface Library | |
-- dev | |
-- tuogex | |
-- -- | |
-- Moved to https://github.com/tuogex/txUI |
This file contains hidden or 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
-- -- | |
-- 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") |
This file contains hidden or 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 | |
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); |