Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cidem/aoc2023-janet
Advent of Code 2023 in Janet
https://github.com/cidem/aoc2023-janet
advent-of-code aoc aoc2023 janet janet-lang
Last synced: 1 day ago
JSON representation
Advent of Code 2023 in Janet
- Host: GitHub
- URL: https://github.com/cidem/aoc2023-janet
- Owner: cideM
- Created: 2023-12-08T11:17:30.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2023-12-16T18:48:51.000Z (11 months ago)
- Last Synced: 2024-10-12T00:27:32.738Z (27 days ago)
- Topics: advent-of-code, aoc, aoc2023, janet, janet-lang
- Language: Janet
- Homepage:
- Size: 10.7 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 :santa: :christmas_tree:
## Quickstart
```shell
$ fd . --no-hidden --no-ignore | entr -c -s 'janet d1/main.janet < d1/input.txt'
```## Progress (5/25)
| | Lua |
| --- | ------ |
| 1 | :bell: |
| 2 | :zzz: |
| 3 | :zzz: |
| 4 | :zzz: |
| 5 | :zzz: |
| 6 | :zzz: |
| 7 | :zzz: |
| 8 | :bell: |
| 9 | :bell: |
| 10 | :zzz: |
| 11 | :zzz: |
| 12 | :zzz: |
| 13 | :bell: |
| 14 | :zzz: |
| 15 | :zzz: |
| 16 | :bell: |
| 17 | :zzz: |
| 18 | :zzz: |
| 19 | :zzz: |
| 20 | :zzz: |
| 21 | :zzz: |
| 22 | :zzz: |
| 23 | :zzz: |
| 24 | :zzz: |
| 25 | :zzz: |## Make Reddit Code Snippet
For longer code snippets, use https://topaz.github.io/paste/. If it's short
enough, do this:```
$ cat code | sed 's/^/ /' | xsel -b
$ cat code | sed 's/^/ /' | pbcopy
```## Reddit Comment Template
```text
[LANGUAGE: janet]# [Janet]()
60 lines of code when formatted with `janet-format`. The formatter doesn't
do much, so I stick to an 80 column limit manually. Your formatting results
will vary from mine.- [GitHub Repository](https://github.com/cideM/aoc2023-janet)
- [Topaz Paste]()
```## Disable Copilot
Add `set exrc` to your Neovim configuration, then `echo 'let
g:copilot_enabled=v:false' > .nvimrc`, open the file and `:trust` it.## .envrc
```text
use flake
PATH_add jpm_tree/bin/
```