{"id":16900580,"url":"https://github.com/loganintech/miniothello","last_synced_at":"2025-09-01T13:39:07.065Z","repository":{"id":91102576,"uuid":"182841910","full_name":"loganintech/miniothello","owner":"loganintech","description":null,"archived":false,"fork":false,"pushed_at":"2019-05-08T05:04:41.000Z","size":12252,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-05T13:04:39.283Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":false,"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/loganintech.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,"publiccode":null,"codemeta":null}},"created_at":"2019-04-22T18:11:07.000Z","updated_at":"2019-05-08T05:04:42.000Z","dependencies_parsed_at":"2023-07-01T12:33:52.898Z","dependency_job_id":null,"html_url":"https://github.com/loganintech/miniothello","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/loganintech/miniothello","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loganintech%2Fminiothello","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loganintech%2Fminiothello/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loganintech%2Fminiothello/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loganintech%2Fminiothello/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/loganintech","download_url":"https://codeload.github.com/loganintech/miniothello/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loganintech%2Fminiothello/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268629585,"owners_count":24281172,"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-08-03T02:00:12.545Z","response_time":2577,"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":[],"created_at":"2024-10-13T17:55:13.531Z","updated_at":"2025-08-03T23:39:45.191Z","avatar_url":"https://github.com/loganintech.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Playing the Game\n\n[How to play](https://www.youtube.com/watch?v=Ol3Id7xYsY4)\n\nThe program won't let you play an invalid move. Bots (minimax or random) will move without user input.\n\nQuickstart:\n\n```bash\n$ make\nCompiling simplified_othello v0.1.0 (PATH)\nFinished release [optimized] target(s) in 1.03s\n\nThe othello command was added to this folder\n$ ./othello human minimax\n\nPlayer 1 (X) score: 2\nPlayer 2 (O) score: 2\n\n3:| . ? . .\n2:| ? O X .\n1:| . X O ?\n0:| . . ? .\n   ---------\n    0 1 2 3\n\nPlayer 1 (X) move:\nEnter row (or ?): ?\nRow: 0, Col: 2\nRow: 1, Col: 3\nRow: 2, Col: 0\nRow: 3, Col: 1\nEnter row (or ?): 3\nEnter col (or ?): ?\nRow: 3, Col: 1\nEnter col (or ?): -2\nYou must enter positive numerical numerical values.\nEnter col (or ?): what\nYou must enter positive numerical numerical values.\nEnter col (or ?): 1\n[Selected] Row: 3, Col: 1\n\nPlayer 1 (X) score: 4\nPlayer 2 (O) score: 1\n\n3:| ? X ? .\n2:| . X X .\n1:| ? X O .\n0:| . . . .\n   ---------\n    0 1 2 3\n\nPlayer 2 (O) move:\n[Selected] Row: 3, Col: 0\n\nPlayer 1 (X) score: 3\nPlayer 2 (O) score: 3\n\n3:| O X . .\n2:| ? O X .\n1:| . X O ?\n0:| . . ? .\n   ---------\n    0 1 2 3\n\nPlayer 1 (X) move:\nEnter row (or ?):\n```\n\n## Compiling\n\n### With Make\n\n```sh\nmake\n./othello \u003cplayer\u003e \u003cplayer\u003e [SIZE] [SIZE] # I wouldn't suggest over 5x5. On my 5GHz 6-Core it takes 5 minutes to complete\n```\n\n#### Compiling with Random Player Option\n\nEnables usage of the `random` player which picks the first valid move it randomly generates. Useful for testing.\n\n```sh\nmake with_random\n./othello \u003cplayer\u003e \u003cplayer\u003e [SIZE] [SIZE] # I wouldn't suggest over 5x5. On my 5GHz 6-Core it takes 5 minutes to complete\n```\n\n### With Cargo\n\n```sh\ncargo build --release \u0026\u0026 mv target/release/othello .\n./othello \u003cplayer\u003e \u003cplayer\u003e [SIZE] [SIZE] # I wouldn't suggest over 5x5. On my 5GHz 6-Core it takes 5 minutes to complete\n```\n\n#### Compiling with Random Player Option\n\nEnables usage of the `random` player which picks the first valid move it randomly generates. Useful for testing.\n\n```sh\ncargo build --release --features with_random \u0026\u0026 mv target/release/othello .\n./othello \u003cplayer\u003e \u003cplayer\u003e [SIZE] [SIZE] # I wouldn't suggest over 5x5. On my 5GHz 6-Core it takes 5 minutes to complete\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floganintech%2Fminiothello","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Floganintech%2Fminiothello","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floganintech%2Fminiothello/lists"}