aoc-all

My solutions to all Advent of Code
git clone https://git.instinctive.eu/aoc-all.git
Log | Files | Refs | README | LICENSE

commit d02d3714b0d04a09071dce61e549c3aa947a62b1
parent 5c954fe7723bac52646db971aa2f1cf0dcac0169
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date:   Sat, 30 Nov 2024 08:54:30 +0000

General project infrastructure
Diffstat:
A.fossil-settings/ignore-glob | 2++
ALICENSE | 13+++++++++++++
AREADME.md | 13+++++++++++++
3 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/.fossil-settings/ignore-glob b/.fossil-settings/ignore-glob @@ -0,0 +1,2 @@ +git/ +*/inputs/ diff --git a/LICENSE b/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2022-2024, Natacha Porté + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/README.md b/README.md @@ -0,0 +1,13 @@ +This repository contains my almost all my attempts at solving +the [Advent of Code](https://adventofcode.com/). + +I tried for the first time in 2021, using a formal modelling language, +accepted by a proprietary toolchain in my workplace, so this is not +interesting or relevant enough for archival and sharing. + +Since then I've used Advent of Code as an excuse to exercise new +programming languages, or languages I feel I don't know well enough: + + - 2024: [Nim](https://nim-lang.org/) + - 2023: [CHICKEN Scheme](https://call-cc.org/) + - 2022: [PostScript 3](https://www.adobe.com/jp/print/postscript/pdfs/PLRM.pdf)