Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/falkben/advent-of-code
https://github.com/falkben/advent-of-code
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/falkben/advent-of-code
- Owner: falkben
- Created: 2021-12-01T23:30:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-01T20:14:37.000Z (almost 2 years ago)
- Last Synced: 2023-02-28T23:36:34.294Z (over 1 year ago)
- Language: Python
- Homepage: https://falkben.github.io/advent-of-code/
- Size: 261 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Advent of Code
## 2021
## Website
### Pages
Index.html located in [site-dist](site-dist/).
Pages for each day are generated
```cmd
python scripts/gen_pages.py
```### Styles
Get tailwind:
```cmd
npm install
```Build css and keep updated:
```cmd
npx tailwindcss -i ./site-src/input.css -o ./site-dist/output.css --watch
```or for publishing:
```cmd
npm run build-css
```### Local dev
```cmd
python -m http.server -d site-dist
```