{"id":19155276,"url":"https://github.com/hoverguys/gcdemo","last_synced_at":"2026-06-23T14:31:41.256Z","repository":{"id":100509908,"uuid":"181224017","full_name":"hoverguys/gcdemo","owner":"hoverguys","description":"Demo for a Garbage Collector framework","archived":false,"fork":false,"pushed_at":"2019-04-24T08:08:20.000Z","size":3667,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-22T21:30:01.165Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hoverguys.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-entityx.txt","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-13T20:15:42.000Z","updated_at":"2019-04-24T08:08:21.000Z","dependencies_parsed_at":"2023-05-15T13:45:12.560Z","dependency_job_id":null,"html_url":"https://github.com/hoverguys/gcdemo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hoverguys/gcdemo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoverguys%2Fgcdemo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoverguys%2Fgcdemo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoverguys%2Fgcdemo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoverguys%2Fgcdemo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hoverguys","download_url":"https://codeload.github.com/hoverguys/gcdemo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoverguys%2Fgcdemo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34694779,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"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-11-09T08:29:26.849Z","updated_at":"2026-06-23T14:31:41.239Z","avatar_url":"https://github.com/hoverguys.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gcdemo\n\nA Garbage Collection demo for Alteration 2020's Calm category.\n\n**Currently under heavy development**\n\n# Compiling with docker\n\nCompiling using docker will start a service container with the toolchain which can be instructed to compile the project\n\nFirst start the container using the following command:\n\n```sh\ndocker-compose -f \"docker-compose.yml\" up -d --build\n```\n\nThen instruct the container to compile:\n\n```sh\ndocker exec --tty devenv make -j\n```\n\nThe final command can be re-run any time you wish to compile any changes to the project.\n\n## Visual Code\n\nIn Visual Code, a task.json file in the .vscode folder can be used to tell docker to build whenever you use the buildin build command.\n\n```json\n{\n    \"version\": \"2.0.0\",\n    \"tasks\": [\n        {\n            \"label\": \"build\",\n            \"type\": \"shell\",\n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": true\n            },\n            \"command\": \"docker exec --tty devenv make -j\",\n            \"problemMatcher\": \"$gcc\",\n            \"isBackground\": true,\n            \"presentation\": {\n                \"panel\": \"dedicated\",\n                \"showReuseMessage\": false,\n                \"clear\": true\n            }\n        }\n    ]\n}\n```\n\nThe `$gcc` problemMatcher the C/C++ extension to be installed.\n\n# Using Vagrant\n\nFirst, the ugly: you need a plugin.\n```\nvagrant plugin install vagrant-docker-compose\n```\n\nAfter that, setup/run the VM with `vagrant up` and build the project with `vagrant build`.\n\n### Why would you want to use Vagrant?\n\nIf you develop on Windows but don't want HyperV active (needed for Docker on Windows) this is a decent middle ground.\n\n### `vagrant build` fails\n\nSometimes the provisioning can't keep the container running, just run `vagrant provision` and use `vagrant ssh -c \"docker ps\"` to check if the container is up.\n\n# Compiling from source\n\nYou will need:\n\n- A healthy fear of the end\n- devkitPro (with devkitPPC)\n- Go 1.8+\n- Cmake 3.1+\n- [ppc-portlibs](https://github.com/Hamcha/ppc-portlibs) libraries installed, specifically:\n  - entityx\n\n## Step 0: BUILD TOOLS\nRun `tools/build.sh` or `tools/build.cmd` (depending on your OS of choice).\n\n## Step 1: BUILD THE PROJECT\n```\nmkdir build \u0026\u0026 cd build\ncmake ../project\nmake\n```\n\n#### Step 2:\nThere is no step 2, use the compiled `gcdemo.dol` with your favorite emulator (if it's not [Dolphin](https://dolphin-emu.org/) we need to talk)\n\n## License\n\n**TL;DR**: Code is MIT, Assets are CC BY 4.0\n\nSee `LICENSE.md` for more details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhoverguys%2Fgcdemo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhoverguys%2Fgcdemo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhoverguys%2Fgcdemo/lists"}