├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── ahk ├── Lib │ ├── Eval.ahk │ ├── Jxon.ahk │ ├── ListLibs.ahk │ ├── Print.ahk │ ├── StdOutToVar.ahk │ ├── base64Dec.ahk │ ├── base64Enc.ahk │ ├── commaFormat.ahk │ ├── json.ahk │ ├── mcode.ahk │ └── urlDownloadToVar.ahk └── relax │ ├── LICENSE │ ├── compile_and_run.sh │ └── src │ └── compiler │ ├── CodeGen.rlx │ ├── Compiler.rlx │ ├── ELFBuilder.rlx │ ├── Lexer.rlx │ ├── Main.rlx │ ├── PEBuilder.rlx │ ├── Parser.rlx │ └── Utility.rlx ├── api.py ├── httpd.py ├── requirements.txt └── wine-docker └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CloudAHK 2 | Run AHK over HTTP with Python and Docker 3 | -------------------------------------------------------------------------------- /ahk/Lib/Eval.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/Eval.ahk -------------------------------------------------------------------------------- /ahk/Lib/Jxon.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/Jxon.ahk -------------------------------------------------------------------------------- /ahk/Lib/ListLibs.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/ListLibs.ahk -------------------------------------------------------------------------------- /ahk/Lib/Print.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/Print.ahk -------------------------------------------------------------------------------- /ahk/Lib/StdOutToVar.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/StdOutToVar.ahk -------------------------------------------------------------------------------- /ahk/Lib/base64Dec.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/base64Dec.ahk -------------------------------------------------------------------------------- /ahk/Lib/base64Enc.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/base64Enc.ahk -------------------------------------------------------------------------------- /ahk/Lib/commaFormat.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/commaFormat.ahk -------------------------------------------------------------------------------- /ahk/Lib/json.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/json.ahk -------------------------------------------------------------------------------- /ahk/Lib/mcode.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/mcode.ahk -------------------------------------------------------------------------------- /ahk/Lib/urlDownloadToVar.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/Lib/urlDownloadToVar.ahk -------------------------------------------------------------------------------- /ahk/relax/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/relax/LICENSE -------------------------------------------------------------------------------- /ahk/relax/compile_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/relax/compile_and_run.sh -------------------------------------------------------------------------------- /ahk/relax/src/compiler/CodeGen.rlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/relax/src/compiler/CodeGen.rlx -------------------------------------------------------------------------------- /ahk/relax/src/compiler/Compiler.rlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/relax/src/compiler/Compiler.rlx -------------------------------------------------------------------------------- /ahk/relax/src/compiler/ELFBuilder.rlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/relax/src/compiler/ELFBuilder.rlx -------------------------------------------------------------------------------- /ahk/relax/src/compiler/Lexer.rlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/relax/src/compiler/Lexer.rlx -------------------------------------------------------------------------------- /ahk/relax/src/compiler/Main.rlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/relax/src/compiler/Main.rlx -------------------------------------------------------------------------------- /ahk/relax/src/compiler/PEBuilder.rlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/relax/src/compiler/PEBuilder.rlx -------------------------------------------------------------------------------- /ahk/relax/src/compiler/Parser.rlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/relax/src/compiler/Parser.rlx -------------------------------------------------------------------------------- /ahk/relax/src/compiler/Utility.rlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/ahk/relax/src/compiler/Utility.rlx -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/api.py -------------------------------------------------------------------------------- /httpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/httpd.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/requirements.txt -------------------------------------------------------------------------------- /wine-docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kDude/CloudAHK/HEAD/wine-docker/Dockerfile --------------------------------------------------------------------------------