{"id":27301262,"url":"https://github.com/jcoupalk/blackjackgo","last_synced_at":"2025-10-14T17:16:35.633Z","repository":{"id":217982113,"uuid":"745273106","full_name":"JCoupalK/BlackjackGo","owner":"JCoupalK","description":"Blackjack terminal game written in Go","archived":false,"fork":false,"pushed_at":"2024-01-19T20:57:24.000Z","size":16,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-14T17:16:35.217Z","etag":null,"topics":["blackjack-cli","blackjack-game","blackjack-simulator","gambling-game","game","go","golang","terminal-game"],"latest_commit_sha":null,"homepage":"","language":"Go","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/JCoupalK.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":"2024-01-19T01:23:07.000Z","updated_at":"2025-09-30T13:07:20.000Z","dependencies_parsed_at":"2024-01-19T03:24:07.990Z","dependency_job_id":"aae03bb8-4203-401e-a68e-6d84f02bb335","html_url":"https://github.com/JCoupalK/BlackjackGo","commit_stats":null,"previous_names":["jcoupalk/blackjackgo"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/JCoupalK/BlackjackGo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JCoupalK%2FBlackjackGo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JCoupalK%2FBlackjackGo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JCoupalK%2FBlackjackGo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JCoupalK%2FBlackjackGo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JCoupalK","download_url":"https://codeload.github.com/JCoupalK/BlackjackGo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JCoupalK%2FBlackjackGo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279020070,"owners_count":26086805,"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-14T02:00:06.444Z","response_time":60,"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":["blackjack-cli","blackjack-game","blackjack-simulator","gambling-game","game","go","golang","terminal-game"],"created_at":"2025-04-12T01:45:23.509Z","updated_at":"2025-10-14T17:16:35.615Z","avatar_url":"https://github.com/JCoupalK.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"center\"\u003e\n \u003cimg src=\"https://github.com/JCoupalK/BlackjackGo/assets/108779415/789a025c-89ec-41f6-a7fb-23dc21eb544a\"\n\u003c/p\u003e\n\n# BlackjackGo\n\nWelcome to BlackjackGo! This project is a simple yet exciting implementation of the classic Blackjack card game, written in Go. It features a text-based user interface and an intuitive gameplay experience.\n\n## Features\n\n- Text-based Blackjack game playable in the terminal.\n- Simple and intuitive user interface with color styling.\n- Automatic handling of game rules including scoring, hitting, standing, and dealing.\n- Soft hand score detection and display.\n- Dealer play logic according to standard Blackjack rules.\n\n## Table of Contents\n\n- [Features](#features)\n- [Installation](#installation)\n- [Gameplay](#gameplay)\n- [Build](#build)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Installation\n\n1. Download the binary with wget:\n\n    ```shell\n    wget https://github.com/JCoupalK/blackjackgo/releases/download/1.0/blackjackgo_linux_amd64_1.0.tar.gz\n    ```\n\n2. Unpack it with tar\n\n    ```shell\n    tar -xf blackjackgo_linux_amd64_1.0.tar.gz\n    ```\n\n3. To start the game, run:\n\n    ```shell\n    ./blackjackgo\n    ```\n\nYou'll be presented with the game interface in your terminal. Follow the on-screen instructions to play.\n\n## Gameplay\n\n- Press 'H' to hit (draw a new card).\n- Press 'S' to stand (end your turn).\n- Press 'R' to restart the game after it ends.\n- Press 'Q' at any time to quit.\n\nThe game follows standard Blackjack rules. Your goal is to beat the dealer's hand without going over 21.\n\n![image](https://github.com/JCoupalK/BlackjackGo/assets/108779415/134b90d7-4e3d-41ad-9834-f73d5558a33e)\n\n## Build\n\nTo build  BlackjackGo, you need to have Go installed on your machine. If you don't have Go installed, you can download it from [the official Go website](https://golang.org/dl/).\n\nOnce Go is installed, clone this repository:\n\n```shell\ngit clone https://github.com/JCoupalK/blackjackgo\ncd blackjackgo\ngo build .\n```\n\n## Contributing\n\nContributions to BlackjackGo are welcome! Feel free to fork the repository and submit pull requests.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcoupalk%2Fblackjackgo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjcoupalk%2Fblackjackgo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcoupalk%2Fblackjackgo/lists"}