From cd134b58884711e148bc9a7ac215795583e97829 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Thu, 15 Dec 2022 01:11:57 +0100 Subject: [PATCH] =?UTF-8?q?blog(aoc-2022):=20don't=20forget=20=E2=80=B9scc?= =?UTF-8?q?ache=E2=80=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matej Focko --- blog/aoc-2022/01-week-1.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/blog/aoc-2022/01-week-1.md b/blog/aoc-2022/01-week-1.md index 0306063..81dda4a 100644 --- a/blog/aoc-2022/01-week-1.md +++ b/blog/aoc-2022/01-week-1.md @@ -79,6 +79,10 @@ mod tests { And later on I have noticed, it's hard to tell the difference between the days, so I further renamed to `mod` to reflect the days. +Also first thing I've done after finishing the first day puzzle, I have installed +an [`sccache`] to cache the builds, so that the build time is lower, cause it was +kinda unbearable. + ### Solution Well, it's a pretty simple problem. You just take the input, sum the calories and @@ -461,6 +465,7 @@ the filesystem. [_Advent of Code_]: https://adventofcode.com [GitLab]: https://gitlab.com/mfocko/advent-of-code-2022 [`/src/bin/`]: https://gitlab.com/mfocko/advent-of-code-2022/-/tree/main/src/bin +[`sccache`]: https://github.com/mozilla/sccache [`RangeInclusive`]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html [`split_off`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.split_off [`du`]: https://www.man7.org/linux/man-pages/man1/du.1.html