https://github.com/davidmasek/aoc-2024
Advent of Code 2024 in Elixir
https://github.com/davidmasek/aoc-2024
advent-of-code aoc aoc-2024 elixir
Last synced: 12 months ago
JSON representation
Advent of Code 2024 in Elixir
- Host: GitHub
- URL: https://github.com/davidmasek/aoc-2024
- Owner: davidmasek
- Created: 2025-06-04T17:26:06.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-15T14:54:23.000Z (about 1 year ago)
- Last Synced: 2025-07-02T04:54:56.123Z (12 months ago)
- Topics: advent-of-code, aoc, aoc-2024, elixir
- Language: Elixir
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ElixirOfCode
Advent of Code 2024 in Elixir.
Quick links:
- https://adventofcode.com/2024
- https://elixir-lang.org/
- https://hexdocs.pm/elixir/introduction.html
```elixir
IO.inspect("hi")
```
## Run
```sh
# mix run 01.exs
mix run
# elixir run 02.exs
elixir run <script>
```
## Installing VSCode extension
Install https://github.com/elixir-lsp/elixir-ls from extensions panel as usual.
It may crash when installing language server due to certificate issues.
Go to `~/.vscode/extensions/jakebecker.elixir-ls-0.28.0/elixir-ls-release` (or similar)
and install it manually in unsafe mode:
```sh
HEX_UNSAFE_HTTPS=1 ./launch.sh
```
Restart VSCode and it should work.