Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rbecheras/adventofcode
https://adventofcode.com
https://github.com/rbecheras/adventofcode
Last synced: about 15 hours ago
JSON representation
https://adventofcode.com
- Host: GitHub
- URL: https://github.com/rbecheras/adventofcode
- Owner: rbecheras
- License: unlicense
- Created: 2023-12-02T07:56:03.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2023-12-05T15:10:01.000Z (11 months ago)
- Last Synced: 2024-10-11T23:29:53.505Z (27 days ago)
- Language: Python
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of code
https://adventofcode.com
## Python setup
Global Requirements
```
pip3 install pipenv
```VSCode extensions
- black-formatter https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter
- python https://marketplace.visualstudio.com/items?itemName=ms-python.python (v2023.18.0, v2023.20.0 is not working)Project creation (already done)
```
pipenv --python 3.11
```Install local deps
```
pipenv install
```## Pipenv Help
To activate this project's virtualenv, run `pipenv shell`.
Alternatively, run a command inside the virtualenv with `pipenv run`.
Quit the virtual env with `exit` or `Ctl+D`