From ddd9a184ffc1efca56b069a4ce421cf06dc31e8d Mon Sep 17 00:00:00 2001 From: Pagwin Date: Tue, 22 Aug 2023 20:46:46 -0400 Subject: [PATCH] added the git repo for the fraction generation --- content/blog/fractions_sidequest.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/blog/fractions_sidequest.md b/content/blog/fractions_sidequest.md index 27fab16..5f47cd3 100644 --- a/content/blog/fractions_sidequest.md +++ b/content/blog/fractions_sidequest.md @@ -203,3 +203,5 @@ So that was fun going through and making all this work out well, now I can gener ## Conclusion Could I optimize this more? Yes I could pre-allocate a buffer and use a specialized thread pool(and probably some unsafe code as well thinking about it). But I won't because it's fast enough, the remaining speed gains probably aren't worth it and most of the execution time is spent writing the results to disk. Overall this was a fun sidequest as a part of the fraction quest. I did other stuff between the article before the fraction one and the fraction one and maybe I'll dump those articles at some point soon so I can stop feeling bad about them sitting in my website's git repo doing nothing. + +[git repo with the generator](https://github.com/Pagwin-Fedora/fraction_generator)