{"id":19265817,"url":"https://github.com/mr-mrf-dev/mr-minesweeper","last_synced_at":"2026-02-27T18:04:32.098Z","repository":{"id":167685439,"uuid":"587650549","full_name":"Mr-MRF-Dev/Mr-Minesweeper","owner":"Mr-MRF-Dev","description":"🧨 Minesweeper Game in C Programming Language.","archived":false,"fork":false,"pushed_at":"2025-02-22T19:26:26.000Z","size":611,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-21T19:44:26.094Z","etag":null,"topics":["c","cpp","minesweeper","terminal-game","terminal-games"],"latest_commit_sha":null,"homepage":"","language":"C","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/Mr-MRF-Dev.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,"zenodo":null}},"created_at":"2023-01-11T08:58:18.000Z","updated_at":"2025-02-22T19:26:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"af28a942-f79b-4bb6-87b2-7b40cb41a7b9","html_url":"https://github.com/Mr-MRF-Dev/Mr-Minesweeper","commit_stats":null,"previous_names":["mr-mrf-dev/mr-minesweeper"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Mr-MRF-Dev/Mr-Minesweeper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-MRF-Dev%2FMr-Minesweeper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-MRF-Dev%2FMr-Minesweeper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-MRF-Dev%2FMr-Minesweeper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-MRF-Dev%2FMr-Minesweeper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mr-MRF-Dev","download_url":"https://codeload.github.com/Mr-MRF-Dev/Mr-Minesweeper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-MRF-Dev%2FMr-Minesweeper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29907349,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T17:28:36.873Z","status":"ssl_error","status_checked_at":"2026-02-27T17:28:20.970Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["c","cpp","minesweeper","terminal-game","terminal-games"],"created_at":"2024-11-09T19:48:48.480Z","updated_at":"2026-02-27T18:04:32.083Z","avatar_url":"https://github.com/Mr-MRF-Dev.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧨 Mr Minesweeper\n\n![GitHub repo size](https://img.shields.io/github/repo-size/mr-mrf-dev/Mr-Minesweeper)\n[![CMake on multiple platforms](https://github.com/Mr-MRF-Dev/Mr-Minesweeper/actions/workflows/cmake-multi-platform.yml/badge.svg)](https://github.com/Mr-MRF-Dev/Mr-Minesweeper/actions/workflows/cmake-multi-platform.yml)\n[![GitHub License](https://img.shields.io/github/license/mr-mrf-dev/mr-minesweeper)](/LICENSE)\n\nPlay the classic Minesweeper game in the terminal and have a great time! This is a simple terminal game developed with the C programming language.\n\n![Screenshot](/images/screenshot.png)\n\n\u003e I recommend using [Windows Terminal](https://apps.microsoft.com/store/detail/windows-terminal/9N0DX20HK701)\n\u003e for the best experience.\n\n## 📥 Getting Started\n\nTo get started with the game, follow these steps:\n\n1. Clone the Repository\n\n    If You Have [Git](https://git-scm.com/) installed:\n\n    ```bash\n    git clone https://github.com/Mr-MRF-Dev/Mr-Minesweeper.git\n    ```\n\n    If You Have [Github CLI](https://cli.github.com/) installed:\n\n    ```bash\n    gh repo clone Mr-MRF-Dev/Mr-Minesweeper\n    ```\n\n2. Navigate to the Project Directory\n\n    ```bash\n    cd ./Mr-Minesweeper/src\n    ```\n\n3. Compile\n\n    Compile the game using a C compiler. For example, using GCC:\n\n    ```bash\n    gcc .\\Minesweeper.c -o Minesweeper\n    ```\n\n4. Run\n\n    ```bash\n    ./Minesweeper.exe\n    ```\n\n### Compile with CMake\n\nafter cloning the repository, you can compile the game using [CMake](https://cmake.org/download/):\n\n1. Navigate to the Project Directory\n\n    ```bash\n    cd ./Mr-Minesweeper\n    ```\n\n2. Create a build directory\n\n   ```bash\n   mkdir build\n   cd build\n   ```\n\n3. Build the project using the following commands:\n\n    ```bash\n    cmake ..\n    make\n    ```\n\n    Or use [MinGW MakeFiles](https://cmake.org/cmake/help/latest/generator/MinGW%20Makefiles.html) by running: (Windows)\n\n    ```bash\n    cmake .. -G \"MinGW Makefiles\"\n    mingw32-make\n    ```\n\n4. Run Project!\n\n    ```bash\n    ./Minesweeper.exe\n    ```\n\n## ✨️ Features\n\n- Admin Panel: Gain access to the admin panel to perform administrative tasks.\n- Prevent Wrong Inputs: The game prevents invalid inputs to ensure smooth game play.\n- Custom Board: Customize the board size and mine count to adjust the difficulty level.\n- Etc: Additional features provide an enhanced gaming experience.\n\n## 🤝 Contributing\n\nwe welcome any contributions you may have. If you're interested in helping out, fork the repository\nand create an [Issue](https://github.com/Mr-MRF-Dev/Mr-Minesweeper/issues) and\n[PR](https://github.com/Mr-MRF-Dev/Mr-Minesweeper/pulls).\n\n## 📄 License\n\nThis project is licensed under the MIT License. See the [LICENSE](/LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-mrf-dev%2Fmr-minesweeper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmr-mrf-dev%2Fmr-minesweeper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-mrf-dev%2Fmr-minesweeper/lists"}