{"id":18510012,"url":"https://github.com/kajizukataichi/stem","last_synced_at":"2025-05-14T11:14:00.444Z","repository":{"id":242313396,"uuid":"809237684","full_name":"KajizukaTaichi/Stem","owner":"KajizukaTaichi","description":"Stem: Turing Educational Machine","archived":false,"fork":false,"pushed_at":"2024-06-25T04:27:19.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-17T02:41:33.456Z","etag":null,"topics":["computer-science","education","emulator","turing-machine"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/KajizukaTaichi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2024-06-02T05:35:16.000Z","updated_at":"2024-08-21T07:13:00.000Z","dependencies_parsed_at":"2024-11-06T15:31:40.449Z","dependency_job_id":null,"html_url":"https://github.com/KajizukaTaichi/Stem","commit_stats":null,"previous_names":["kajizukataichi/rizevm","kajizukataichi/stem"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KajizukaTaichi%2FStem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KajizukaTaichi%2FStem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KajizukaTaichi%2FStem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KajizukaTaichi%2FStem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KajizukaTaichi","download_url":"https://codeload.github.com/KajizukaTaichi/Stem/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254129537,"owners_count":22019629,"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":["computer-science","education","emulator","turing-machine"],"created_at":"2024-11-06T15:20:03.204Z","updated_at":"2025-05-14T11:14:00.419Z","avatar_url":"https://github.com/KajizukaTaichi.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stem\nThe simple emulator of turing machine.\n\nThe name is recursive acronym of \"Stem: Turing Educational Machine\".\nIt's designed use for STEM education.\n\n## Specification\n- \"tape\": include UTF-8 character as symbol\n- \"start_state\": initial state when start run\n- \"transitions\": define rules of transitions\n\n### Key format of transitions\nWrite split \"_\" underscore.\nThe left designate state, the right designate symbol that will read\n\n## Example\n\nThis is to bit flipping.\n```\n{\n    \"tape\": \"11010010\",\n    \"start_state\": \"q0\",\n    \"transitions\": {\n        \"q0_0\": { \"write\": \"1\", \"direction\": \"Right\", \"next_state\": \"q0\" },\n        \"q0_1\": { \"write\": \"0\", \"direction\": \"Right\", \"next_state\": \"q0\" }\n    }\n}\n```\n\n```bash\nStem: Turing Educational Machine\n-----------------------------------\nCurrent State: q0, Read: 1\n[1] 1 0 1 0 0 1 0\nWrite: 0, Move: Right, Next State: q0\n 0[1] 0 1 0 0 1 0\n\nCurrent State: q0, Read: 1\n 0[1] 0 1 0 0 1 0\nWrite: 0, Move: Right, Next State: q0\n 0 0[0] 1 0 0 1 0\n\nCurrent State: q0, Read: 0\n 0 0[0] 1 0 0 1 0\nWrite: 1, Move: Right, Next State: q0\n 0 0 1[1] 0 0 1 0\n\nCurrent State: q0, Read: 1\n 0 0 1[1] 0 0 1 0\nWrite: 0, Move: Right, Next State: q0\n 0 0 1 0[0] 0 1 0\n\nCurrent State: q0, Read: 0\n 0 0 1 0[0] 0 1 0\nWrite: 1, Move: Right, Next State: q0\n 0 0 1 0 1[0] 1 0\n\nCurrent State: q0, Read: 0\n 0 0 1 0 1[0] 1 0\nWrite: 1, Move: Right, Next State: q0\n 0 0 1 0 1 1[1] 0\n\nCurrent State: q0, Read: 1\n 0 0 1 0 1 1[1] 0\nWrite: 0, Move: Right, Next State: q0\n 0 0 1 0 1 1 0[0]\n\nCurrent State: q0, Read: 0\n 0 0 1 0 1 1 0[0]\nWrite: 1, Move: Right, Next State: q0\n 0 0 1 0 1 1 0 1[_]\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkajizukataichi%2Fstem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkajizukataichi%2Fstem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkajizukataichi%2Fstem/lists"}