Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dickeyy/adventofcode
My solutions for Advent of Code for all the years I've done it :)
https://github.com/dickeyy/adventofcode
advent-of-code bun go typescript
Last synced: 2 days ago
JSON representation
My solutions for Advent of Code for all the years I've done it :)
- Host: GitHub
- URL: https://github.com/dickeyy/adventofcode
- Owner: dickeyy
- Created: 2023-12-02T00:34:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-23T19:37:01.000Z (7 days ago)
- Last Synced: 2024-12-23T20:32:21.107Z (7 days ago)
- Topics: advent-of-code, bun, go, typescript
- Language: Go
- Homepage: https://adventofcode.com
- Size: 200 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code
These are my solutions for [Advent Of Code](https://adventofcode.com)
| Year | Solutions | Language | Stars ⭐️ |
| ---------------------------- | ------------------ | ---------- | --------- |
| 2024 (Current year) | [Soultions](/2024) | Go | 50/50 |
| 2023 (My first year of AoC!) | [Soultions](/2023) | TypeScript | 26/50 |
| 2015 | [Soultions](/2015) | Go | 36/50 |---
The [./new-day.sh](./new-day.sh) script generates the boilerplate for a new day. To use it, run:
```bash
source ./new-day.sh # this will cd into the new folder# or
./new-day.sh # this will not cd into the new folder
```Personally, I have a alias for this `alias nd='source ./new-day.sh'`.