{"id":26257540,"url":"https://github.com/ralvarezdev/uru-programming-1-blackjack","last_synced_at":"2025-10-18T11:45:08.797Z","repository":{"id":183051721,"uuid":"669532864","full_name":"ralvarezdev/uru-programming-1-blackjack","owner":"ralvarezdev","description":"Simple blackjack terminal game from Programming 1 college course","archived":false,"fork":false,"pushed_at":"2025-03-08T16:25:27.000Z","size":130,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-08T17:25:27.167Z","etag":null,"topics":["blackjack","blackjack-game","cpp","game","rafael-urdaneta-university","terminal","universidad-rafael-urdaneta"],"latest_commit_sha":null,"homepage":"","language":"C++","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/ralvarezdev.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":"2023-07-22T15:31:18.000Z","updated_at":"2025-03-08T16:25:31.000Z","dependencies_parsed_at":"2024-08-26T23:57:21.011Z","dependency_job_id":"8e108ab8-473b-4ebc-bcc9-c5e1c9bf11d3","html_url":"https://github.com/ralvarezdev/uru-programming-1-blackjack","commit_stats":null,"previous_names":["blackb0x2/blackjack","ralvarezdev/blackjack","ralvarezdev/uru-blackjack","ralvarezdev/uru-programming-1-blackjack"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralvarezdev%2Furu-programming-1-blackjack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralvarezdev%2Furu-programming-1-blackjack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralvarezdev%2Furu-programming-1-blackjack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralvarezdev%2Furu-programming-1-blackjack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ralvarezdev","download_url":"https://codeload.github.com/ralvarezdev/uru-programming-1-blackjack/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243482940,"owners_count":20297907,"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":["blackjack","blackjack-game","cpp","game","rafael-urdaneta-university","terminal","universidad-rafael-urdaneta"],"created_at":"2025-03-13T21:17:04.440Z","updated_at":"2025-10-18T11:45:08.688Z","avatar_url":"https://github.com/ralvarezdev.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Blackjack\nThis repository contains the source code of a Blackjack terminal game, for the theory final project of the Programming I course of the Computer Science career at the Rafael Urdaneta University, located in Maracaibo, Venezuela.\n\n## Developers\n\n- [ralvarezdev](https://github.com/ralvarezdev) - Ramón Álvarez\n\n## Programming Languages\n\n- C++\n\n## Installation\n\n\u003col\u003e\n\u003cli\u003eClone this repository to your local machine using the following command:\n\n```git clone https://github.com/ralvarezdev/uru-programming-1-blackjack```\n\u003c/li\u003e\n\n\u003cli\u003eChange your Current Working Directory to where the repository was cloned\u003c/li\u003e\n\n\u003cli\u003eThere are two ways to compile the program:\u003c/li\u003e\n\n\u003col\u003e\n\u003cli\u003eWith \u003cstrong\u003eG++\u003c/strong\u003e (you must have installed \u003cstrong\u003eMinGW Compiler\u003c/strong\u003e). Use the following command:\n\n\u003cdetails\u003e\n\u003csummary\u003eCommand for Windows\u003c/summary\u003e\n\n```g++ -o bin\\Blackjack.exe src\\blackjack.cpp src\\lib\\cartas.cpp src\\lib\\cartas.h src\\lib\\clases.cpp src\\lib\\clases.h src\\lib\\terminal.cpp src\\lib\\terminal.h```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eCommand for Linux\u003c/summary\u003e\n\n```g++ -o bin/Blackjack.exe src/blackjack.cpp src/lib/cartas.cpp src/lib/cartas.h src/lib/clases.cpp src/lib/clases.h src/lib/terminal.cpp src/lib/terminal.h```\n\n\u003c/details\u003e\u003c/li\u003e\n\n\u003cli\u003eWith \u003cstrong\u003eCMake\u003c/strong\u003e (you must have installed \u003cstrong\u003eCMake and Make\u003c/strong\u003e). First, get to the \u003ccode\u003ebin\u003c/code\u003e folder inside the repository. Use the following command:\n\n\u003cdetails\u003e\n\u003csummary\u003eCommand for Windows\u003c/summary\u003e\n\n```cmake -S ..\\ -G \"MinGW Makefiles\" -B .\\ \u0026\u0026 make```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eCommand for Linux\u003c/summary\u003e\n\n```cmake -S ../ -G \"MinGW Makefiles\" -B ./ \u0026\u0026 make```\n\n\u003c/details\u003e\u003c/li\u003e\u003c/ol\u003e\n\n\u003cli\u003eRun the program by clicking the \u003ccode\u003eBlackjack.exe\u003c/code\u003e.\u003c/li\u003e\n\u003c/ol\u003e\n\n\u003cstrong\u003eFor a better User Experience, resize the terminal window to fullscreen mode\u003c/strong\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fralvarezdev%2Furu-programming-1-blackjack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fralvarezdev%2Furu-programming-1-blackjack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fralvarezdev%2Furu-programming-1-blackjack/lists"}