{"id":34609450,"url":"https://github.com/bthuilot/aoc22","last_synced_at":"2026-05-26T12:04:58.788Z","repository":{"id":64698499,"uuid":"567983030","full_name":"bthuilot/aoc22","owner":"bthuilot","description":"🎄 advent of code 2022: Haskell 🎄","archived":false,"fork":false,"pushed_at":"2022-12-24T02:00:42.000Z","size":201,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-26T02:39:21.044Z","etag":null,"topics":["advent-of-code","haskell"],"latest_commit_sha":null,"homepage":"","language":"Haskell","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}},"created_at":"2022-11-19T04:24:39.000Z","updated_at":"2022-12-06T04:50:51.000Z","dependencies_parsed_at":"2023-01-30T20:01:00.955Z","dependency_job_id":null,"html_url":"https://github.com/bthuilot/aoc22","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bthuilot/aoc22","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc22","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc22/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc22/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc22/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bthuilot","download_url":"https://codeload.github.com/bthuilot/aoc22/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc22/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33519227,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T03:12:49.672Z","status":"ssl_error","status_checked_at":"2026-05-26T03:12:47.976Z","response_time":63,"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":["advent-of-code","haskell"],"created_at":"2025-12-24T14:01:23.810Z","updated_at":"2026-05-26T12:04:58.743Z","avatar_url":"https://github.com/bthuilot.png","language":"Haskell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Advent of Code 2022 - Haskell\n\n### Index\n\n1. [Building/Running](#Buidling/Running)\n2. [Tests](#Tests)\n3. [Completed Days](#Completed-Days)\n\nThis repositories stores my solutions in Haskell to [Advent of Code 2022](https://adventofcode.com/2022).\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 stack to compile and run the project, to build an executable simply run\n\n```bash\n$ stack run \n# Or for running particular days\n$ stack run -- --days [INSERT DAY NUMBERS HERE] # ex 1 2 5 10\n```\n\n## Tests\n\nTo test functionaility of the project, There exists a test suite that can be run by invoking\n\n```bash\n$ stack test\n# Or for only testing certain days\n$ stack test --test-arguments=\"-d [INSERT DAY NUMBERS HERE]\"\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](src/Day00.hs) : *This is a test day supposed to server a placeholder until the challenge starts*\n- [Day 1](src/Day01.hs) : [challenge](https://adventofcode.com/2022/day/1)\n- [Day 2](src/Day02.hs) : [challenge](https://adventofcode.com/2022/day/2)\n- [Day 3](src/Day03.hs) : [challenge](https://adventofcode.com/2022/day/3)\n- [Day 4](src/Day04.hs) : [challenge](https://adventofcode.com/2022/day/4)\n- [Day 5](src/Day05.hs) : [challenge](https://adventofcode.com/2022/day/5)\n- [Day 6](src/Day06.hs) : [challenge](https://adventofcode.com/2022/day/6)\n- [Day 7](src/Day07.hs) : [challenge](https://adventofcode.com/2022/day/7)\n- [Day 8](src/Day08.hs) : [challenge](https://adventofcode.com/2022/day/8)\n- [Day 9](src/Day09.hs) : [challenge](https://adventofcode.com/2022/day/9)\n- [Day 10](src/Day10.hs) : [challenge](https://adventofcode.com/2022/day/10)\n- [Day 11](src/Day11.hs) : [challenge](https://adventofcode.com/2022/day/11)\n- [Day 12](src/Day12.hs) : [challenge](https://adventofcode.com/2022/day/12)\n- [Day 13](src/Day13.hs) : [challenge](https://adventofcode.com/2022/day/13)\n- Day 14\u003c!--(src/Day14.hs) --\u003e : [challenge](https://adventofcode.com/2022/day/14)\n- [Day 15](src/Day15.hs) : [challenge](https://adventofcode.com/2022/day/15)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbthuilot%2Faoc22","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbthuilot%2Faoc22","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbthuilot%2Faoc22/lists"}