From b17860f6016632912ca47b79c5a98e815f0fbcee Mon Sep 17 00:00:00 2001 From: Joe Ardent Date: Thu, 9 Feb 2023 10:38:02 -0800 Subject: [PATCH] fix tiny typo --- content/sundries/shit-code/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/sundries/shit-code/index.md b/content/sundries/shit-code/index.md index 7fba898..2f2ff09 100644 --- a/content/sundries/shit-code/index.md +++ b/content/sundries/shit-code/index.md @@ -2,6 +2,7 @@ title = "Shit-code and Other Performance Arts" slug = "shit-code-and-performance-art" date = "2023-02-08" +updated = "2023-02-09" [taxonomies] tags = ["software", "art", "sundry", "proclamation", "chaos"] [extra] @@ -67,7 +68,7 @@ what's done is done. Some time ago, I was [trying to work out some ways to pick random points in a sphere](https://blog.joeardent.net/2018/07/right-and-wrong-ways-to-pick-random-points-inside-a-sphere/), and during that exploration, I found myself wanting to just be able to generate random values -outside of any program program in particular. So, I wrapped a primitive interface around [the random value +outside of any program in particular. So, I wrapped a primitive interface around [the random value generation library](https://docs.rs/rand/0.8.0/rand/index.html) I was using. I wound up using it selfishly and in a limited fashion for that project, but afterward, decided to expand it a bit and release it, as my first [real Rust crate](https://crates.io/crates/randical).