Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tschoffelen/aoc-2023
My Advent of Code 2023 solutions
https://github.com/tschoffelen/aoc-2023
advent-of-code aoc2023
Last synced: 16 days ago
JSON representation
My Advent of Code 2023 solutions
- Host: GitHub
- URL: https://github.com/tschoffelen/aoc-2023
- Owner: tschoffelen
- Created: 2023-12-02T18:17:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-09T13:17:54.000Z (about 1 year ago)
- Last Synced: 2024-11-17T07:26:58.575Z (3 months ago)
- Topics: advent-of-code, aoc2023
- Language: Jupyter Notebook
- Homepage:
- Size: 84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2023
This year I decided to stick with what I know best - Javascript, specifically JS running in Node 18.
## Notebook setup
To simplify my debugging setup, and finally experiment with something I have been thinking about a bit, I set
out to set up Jupyter Notebooks (using the VSCode integration) to run Node.js code.In order to do so, I installed the [IJavascript](https://github.com/n-riesco/ijavascript) kernel,
which allows Jupyter to run Javascript:```shell
brew install jupyter
npm install -g ijavascript
ijsinstall
```