{"id":19787049,"url":"https://github.com/tomboddaert/msc","last_synced_at":"2025-10-06T21:33:47.174Z","repository":{"id":134926377,"uuid":"603589841","full_name":"tomBoddaert/msc","owner":"tomBoddaert","description":"A 2d, stack-based, esoteric language","archived":false,"fork":false,"pushed_at":"2024-03-30T01:25:42.000Z","size":97,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T14:09:02.043Z","etag":null,"topics":["esolang","language","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tomBoddaert.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-02-19T01:00:07.000Z","updated_at":"2023-02-19T01:06:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"cb75da1b-fd71-449c-bf44-54dd0d9579f8","html_url":"https://github.com/tomBoddaert/msc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tomBoddaert/msc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomBoddaert%2Fmsc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomBoddaert%2Fmsc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomBoddaert%2Fmsc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomBoddaert%2Fmsc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomBoddaert","download_url":"https://codeload.github.com/tomBoddaert/msc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomBoddaert%2Fmsc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278685680,"owners_count":26028322,"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","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["esolang","language","rust"],"created_at":"2024-11-12T06:20:47.882Z","updated_at":"2025-10-06T21:33:47.147Z","avatar_url":"https://github.com/tomBoddaert.png","language":"Rust","readme":"![The MSC logo](logo.svg)\n\n# MatrixStack-Code\nis a 2d, stack-based, esoteric language.\n\nThe pointer traverses a plane / matrix of instructions.\nEach 4x4 block of instructions corresponds to a stack.\n\nThe language spec is in [LANGUAGE.md](LANGUAGE.md).\n\n## Using the interpreter\n\nPrograms can be run using their file paths as command line arguments:\n```sh\nmsc \u003cpaths...\u003e\n```\nThis also allows using shebangs on Unix-like systems!\n\nThey can be piped in via stdin:\n```sh\nmsc \u003c \u003cpath\u003e\n```\nHowever, the program will not be able to take inputs!\n\nOr you can write programs straight into it:\n```sh\nmsc\n```\nWrite your program, then press `Enter, Ctrl + D` on Unix-like systems or `Enter, Ctrl + Z` on Windows to run it.  \nThere is no way to save your programs from here, but you can copy them from your terminal!\n\n## Examples\n\nThere are example files in the [examples](examples) directory.\nRun one with `msc examples/\u003cname\u003e.msc`\nor `cargo run examples/\u003cname\u003e.msc`\n\n## Installing with cargo\n\nMake sure you have [cargo](https://rustup.rs/) installed.\n```sh\ncargo install --git https://github.com/tomboddaert/msc\n```\n\n## Building \u0026 Installing\n\nBuild:\n```sh\ncargo build --release\n```\n\nLocal install on Linux:\n```sh\n# In ~/.local/bin\nln -s $(realpath target/release/msc) ~/.local/bin\n\n# In ~/.bin\nln -s $(realpath target/release/msc) ~/.bin\n```\n\n## License\n\n\u003cp xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dct=\"http://purl.org/dc/terms/\"\u003e\u003ca property=\"dct:title\" rel=\"cc:attributionURL\" href=\"https://github.com/tomboddaert/msc\"\u003eMSCode\u003c/a\u003e by \u003ca rel=\"cc:attributionURL dct:creator\" property=\"cc:attributionName\" href=\"https://tomboddaert.com/\"\u003eTom Boddaert\u003c/a\u003e is licensed under \u003ca href=\"http://creativecommons.org/licenses/by/4.0/?ref=chooser-v1\" target=\"_blank\" rel=\"license noopener noreferrer\" style=\"display:inline-block;\"\u003eCC BY 4.0\u003cimg style=\"height:22px!important;margin-left:3px;vertical-align:text-bottom;\" src=\"https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1\"\u003e\u003cimg style=\"height:22px!important;margin-left:3px;vertical-align:text-bottom;\" src=\"https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1\"\u003e\u003c/a\u003e\u003c/p\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomboddaert%2Fmsc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomboddaert%2Fmsc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomboddaert%2Fmsc/lists"}