{"id":25670128,"url":"https://github.com/santisoler/adventofcode-2024","last_synced_at":"2026-06-23T18:31:42.276Z","repository":{"id":275488601,"uuid":"896954144","full_name":"santisoler/adventofcode-2024","owner":"santisoler","description":"Solutions to advent of code 2024","archived":false,"fork":false,"pushed_at":"2025-02-02T20:53:37.000Z","size":274,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-24T11:37:11.369Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/santisoler.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}},"created_at":"2024-12-01T17:56:32.000Z","updated_at":"2025-02-02T20:53:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"8c860c92-fbcb-4d51-9962-dc2dc519abcb","html_url":"https://github.com/santisoler/adventofcode-2024","commit_stats":null,"previous_names":["santisoler/adventofcode-2024"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/santisoler/adventofcode-2024","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santisoler%2Fadventofcode-2024","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santisoler%2Fadventofcode-2024/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santisoler%2Fadventofcode-2024/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santisoler%2Fadventofcode-2024/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/santisoler","download_url":"https://codeload.github.com/santisoler/adventofcode-2024/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santisoler%2Fadventofcode-2024/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34702911,"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":"2025-02-24T11:29:38.380Z","updated_at":"2026-06-23T18:31:42.270Z","avatar_url":"https://github.com/santisoler.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Solutions to Advent of Code 2024\n\n## About\n\nThese are my solutions to [Advent of Code 2024][aoc].\nI wrote them all in Rust 🦀, using [Neovim][neovim] as my text editor on\na [MacBookPro5,5 (Mid-2009)][macbookpro] running [Debian] 12 (XFCE).\n\nI take AoC as an opportunity to learn more about languages I don't get to use\nso often. This year I chose Rust again, for third year in a row.\nNo AI tools were used while solving AoC.\nI did read some of the solutions in the AoC Reddit to get inspiration and learn\nwhen I felt stuck.\n\nI think this repo is a way of showing that we can still have a modern\ndevelopment environment\n(Neovim + LSP + autocompletion + Telescope Treesitter, etc)\nusing old hardware and the right choice of software that minimizes the\ncomputational load required to run them.\nWe can still achieve modern computational tasks through **frugal\ncomputing** ([Wim Vanderbauwhede, 2023][vanderbauwhede2023], [Low carbon\nand sustainable computing][low-carbon-computing]).\n\n### References\n\n- Wim Vanderbauwhede (2023). Frugal Computing -- On the need for low-carbon and\n  sustainable computing and the path towards zero-carbon computing.\n  doi: [10.48550/arXiv.2303.06642][vanderbauwhede2023]\n\n[aoc]: https://adventofcode.com/2024\n[neovim]: https://neovim.io/\n[macbookpro]: https://everymac.com/systems/apple/macbook_pro/specs/macbook-pro-core-2-duo-2.26-aluminum-13-mid-2009-sd-firewire-800-unibody-specs.html\n[debian]: https://www.debian.org/\n[vanderbauwhede2023]: https://doi.org/10.48550/arXiv.2303.06642\n[low-carbon-computing]: https://www.dcs.gla.ac.uk/~wim/low-carbon-computing/index.html\n\n\n## How to run the solutions\n\nTo run my solutions to AoC 2024 you need the Rust compiler. Since I decided not\nto use any crate and stick with the standard libraries, that would be enough.\nBut I actually used `cargo` every day of the challenge to get used to the tool.\nWith it you can build, run and test each solution.\nCheck the\n[Installation](https://doc.rust-lang.org/book/ch01-01-installation.html)\nsection in the aforementioned book.\n\nFor example, if you want to run the solution to day one, clone this repo,\nand navigate to the `day-01` folder:\n\n```\ngit clone https://www.github.com/santisoler/adventofocode-2024\ncd adventofcode-2024\ncd day-01\n```\n\nIn there you can use `cargo` to test the code (if there are tests available):\n\n```\ncargo test\n```\n\nOr run the code to obtain solutions for both days:\n\n```\ncargo run\n```\n\n## License\n\nCopyright © 2024 Santiago Soler\n\nSource code available through the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsantisoler%2Fadventofcode-2024","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsantisoler%2Fadventofcode-2024","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsantisoler%2Fadventofcode-2024/lists"}