{"id":34609467,"url":"https://github.com/bthuilot/aoc24","last_synced_at":"2026-03-12T22:31:21.687Z","repository":{"id":262007147,"uuid":"885955813","full_name":"bthuilot/aoc24","owner":"bthuilot","description":"🎄 Advent of Code 2024 - Racket λ 🎄","archived":false,"fork":false,"pushed_at":"2024-12-21T20:35:09.000Z","size":200,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-26T02:39:23.527Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Racket","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bthuilot.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-09T20:43:39.000Z","updated_at":"2025-10-29T22:33:55.000Z","dependencies_parsed_at":"2025-12-24T14:02:42.616Z","dependency_job_id":null,"html_url":"https://github.com/bthuilot/aoc24","commit_stats":null,"previous_names":["bthuilot/aoc24"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bthuilot/aoc24","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc24","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc24/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc24/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc24/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bthuilot","download_url":"https://codeload.github.com/bthuilot/aoc24/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc24/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30446445,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T21:31:01.033Z","status":"ssl_error","status_checked_at":"2026-03-12T21:30:43.161Z","response_time":114,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2025-12-24T14:01:28.767Z","updated_at":"2026-03-12T22:31:21.658Z","avatar_url":"https://github.com/bthuilot.png","language":"Racket","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Advent of Code 2024 - Racket\n\n### Index\n\n1. [Building/Running](#Buidling/Running)\n2. [Tests](#Tests)\n3. [Completed Days](#Completed-Days)\n\nThis repositories stores my solutions in [Racket](https://racket-lang.org/) to [Advent of Code 2024](https://adventofcode.com/2024).\n\nFor more info on the approach to each day,\nread the module header comment located at the top of each day's source file \n(an index is located below)\n\n\n## Building/Running\n\nThis project leverages dune to compile and run the project, to build an executable simply run\n\n```bash\nracket main.rkt\n# or\nmake run\n\n# Optionally specify only a subset of days to run\nracket main.rkt -d 1,8,23 # Run days 1, 8 and 23\n```\n\n## Tests\n\nTests are written using [RackUnit](https://docs.racket-lang.org/rackunit/)\n\nTo test functionaility of the project, invoke the following:\n\n```bash\nmake test\n# Or\nraco test .\n```\n\n## Completed Days\n\nBelow is an index to every completed day's implementation source code (containing documentation of approach) and the challenge for the day\n\n- [Day 0](private/days/00.rkt) : *This is a test day supposed to server a placeholder until the challenge starts*\n- [Day 1](private/days/01.rkt) : [Problem](https://adventofcode.com/2024/day/1)\n- [Day 2](private/days/02.rkt) : [Problem](https://adventofcode.com/2024/day/2)\n- [Day 3](private/days/03.rkt) : [Problem](https://adventofcode.com/2024/day/3)\n- [Day 4](private/days/04.rkt) : [Problem](https://adventofcode.com/2024/day/4)\n- [Day 5](private/days/05.rkt) : [Problem](https://adventofcode.com/2024/day/5)\n- [Day 6](private/days/06.rkt) : [Problem](https://adventofcode.com/2024/day/6)\n- [Day 7](private/days/07.rkt) : [Problem](https://adventofcode.com/2024/day/7)\n- [Day 8](private/days/08.rkt) : [Problem](https://adventofcode.com/2024/day/8)\n- [Day 9](private/days/09.rkt) : [Problem](https://adventofcode.com/2024/day/9)\n- [Day 10](private/days/10.rkt) : [Problem](https://adventofcode.com/2024/day/10)\n- [Day 11](private/days/11.rkt) : [Problem](https://adventofcode.com/2024/day/11)\n- [Day 12](private/days/12.rkt) : [Problem](https://adventofcode.com/2024/day/12)\n- [Day 13](private/days/13.rkt) : [Problem](https://adventofcode.com/2024/day/13)\n- [Day 14](private/days/14.rkt) : [Problem](https://adventofcode.com/2024/day/14)\n- [Day 15](private/days/15.rkt) : [Problem](https://adventofcode.com/2024/day/15)\n- [Day 16](private/days/16.rkt) : [Problem](https://adventofcode.com/2024/day/16)\n\u003c!-- - [Day 17](private/days/17.rkt) : [Problem](https://adventofcode.com/2024/day/17) --\u003e\n- [Day 18](private/days/18.rkt) : [Problem](https://adventofcode.com/2024/day/18)\n\u003c!-- - [Day 19](private/days/19.rkt) : [Problem](https://adventofcode.com/2024/day/19) --\u003e\n- [Day 20](private/days/20.rkt) : [Problem](https://adventofcode.com/2024/day/20)\n\u003c!-- - [Day 21](private/days/21.rkt) : [Problem](https://adventofcode.com/2024/day/21) --\u003e\n\u003c!-- - [Day 22](private/days/22.rkt) : [Problem](https://adventofcode.com/2024/day/22) --\u003e\n\u003c!-- - [Day 22](private/days/23.rkt) : [Problem](https://adventofcode.com/2024/day/23) --\u003e\n\u003c!-- - [Day 22](private/days/24.rkt) : [Problem](https://adventofcode.com/2024/day/24) --\u003e\n\u003c!-- - [Day 22](private/days/25.rkt) : [Problem](https://adventofcode.com/2024/day/25) --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbthuilot%2Faoc24","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbthuilot%2Faoc24","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbthuilot%2Faoc24/lists"}