{"id":17327319,"url":"https://github.com/suever/matl-online","last_synced_at":"2025-07-18T17:03:39.417Z","repository":{"id":10006702,"uuid":"61205452","full_name":"suever/MATL-Online","owner":"suever","description":"Online Interpreter for MATL","archived":false,"fork":false,"pushed_at":"2024-10-25T09:35:28.000Z","size":2287,"stargazers_count":6,"open_issues_count":13,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-11-01T05:22:59.655Z","etag":null,"topics":["celery","flask","flask-socketio","octave","python","socketio"],"latest_commit_sha":null,"homepage":"https://matl.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/suever.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"suever","patreon":"suever","ko_fi":"A677ICQ"}},"created_at":"2016-06-15T12:14:25.000Z","updated_at":"2024-10-23T01:23:03.000Z","dependencies_parsed_at":"2023-01-16T20:00:14.492Z","dependency_job_id":"af3954bd-7153-466e-b44e-62a3c3959c54","html_url":"https://github.com/suever/MATL-Online","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suever%2FMATL-Online","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suever%2FMATL-Online/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suever%2FMATL-Online/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suever%2FMATL-Online/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/suever","download_url":"https://codeload.github.com/suever/MATL-Online/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223639403,"owners_count":17177816,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["celery","flask","flask-socketio","octave","python","socketio"],"created_at":"2024-10-15T14:19:22.470Z","updated_at":"2024-11-08T06:03:45.168Z","avatar_url":"https://github.com/suever.png","language":"Python","funding_links":["https://github.com/sponsors/suever","https://patreon.com/suever","https://ko-fi.com/A677ICQ"],"categories":[],"sub_categories":[],"readme":"# MATL Online\n\n[![tests](https://github.com/suever/MATL-Online/actions/workflows/tests.yml/badge.svg)](https://github.com/suever/MATL-Online/actions/workflows/tests.yml)\n[![Coverage Status](https://coveralls.io/repos/github/suever/MATL-Online/badge.svg?branch=main)](https://coveralls.io/github/suever/MATL-Online?branch=main)\n[![Code Climate](https://codeclimate.com/github/suever/MATL-Online/badges/gpa.svg)](https://codeclimate.com/github/suever/MATL-Online)\n\nThis is a Python-based online interpreter for the [MATL][matl] programming\nlanguage, a golfing language based on [MATLAB][matlab] and [Octave][octave]. A\nlive version of this application is hosted at\n[matl.io][matl.io].\n\n### The Stack\n\nThe core of the application is the lightweight Python web framework,\n[Flask][flask]. Two-way communication between the JavaScript front-end and the\napplication is handled by [SocketIO][socketio]. MATL code and input arguments\nare submitted to the server and [celery][celery] assigns the task to one of many\navailable worker processes. Each worker process uses the\n[`octave_kernel`][octave_kernel] library to communicate with an underlying\n[Octave][octave] instance to evaluate the provided code. All [Octave][octave]\noutput from the process (including text and graphics) is streamed in real-time\nback to the browser via [SocketIO][socketio]. \n\nTechnologies: \n* [jQuery][jquery]\n* [SocketIO][socketio]\n* [flask][flask]\n* [flask-socketio][flask-socketio]\n* [celery][celery]\n* [octave_kernel][octave_kernel]\n* [Octave][octave]\n\n### Running Locally\n\nThe easiest way to run the application locally is to use [Docker\nCompose][docker-compose] which will start the web service, celery worker, redis\ninstance, and postgres database. Prior to running `docker-compose`, be sure to\nbuild the local docker image:\n\n```bash\ndocker-compose up --build\n```\n\nYou will then be able to access the application at http://localhost:5000.\n\n\n### Planned Future Improvements\n\n- Ability to run multiple test cases sequentially\n- Analytics of all MATL answers on the [Programming Puzzle and\n  Code Golf Stack Exchange site][ppcg] including top users, top questions, and\n  common usage patterns.\n\n### Contributing\n\nWe welcome contributions from any member of the user community. Free free to\n[submit a pull request][pullrequest] or [open an issue][issues] with your\ncontributions.\n\n### License\n\nThis software is licensed under the MIT License.\n\n[celery]: http://www.celeryproject.org/\n[docker]: https://www.docker.com/\n[docker-compose]: https://docs.docker.com/compose/\n[flask-socketio]: https://flask-socketio.readthedocs.io/en/latest/\n[flask]: https://flask.pocoo.org\n[issues]: https://github.com/suever/MATL-Online/issues/new\n[jquery]: https://jquery.com\n[matl.io]: https://matl.io\n[matl]: https://github.com/lmendo/MATL\n[matlab]: https://www.mathworks.com/products/matlab/\n[octave]: https://www.gnu.org/software/octave/\n[octave_kernel]: https://github.com/Calysto/octave_kernel\n[ppcg]: https://codegolf.stackexchange.com\n[pullrequest]: https://github.com/suever/MATL-Online/pulls\n[socketio]: http://socket.io/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuever%2Fmatl-online","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuever%2Fmatl-online","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuever%2Fmatl-online/lists"}