From 81d55955d2891effb50f1cc0b1484a7ef51499bd Mon Sep 17 00:00:00 2001 From: Cassie Jones Date: Sat, 2 Nov 2019 15:11:20 -0400 Subject: [PATCH] Image messing --- {imgs => img}/2018-08-27-violin-f32.svg | 0 {imgs => img}/2018-08-27-violin-i32.svg | 0 posts/2018/min-benchmark.md | 4 ++-- posts/2019/hello-world-in-0x-a-presses.md | 4 ++-- 4 files changed, 4 insertions(+), 4 deletions(-) rename {imgs => img}/2018-08-27-violin-f32.svg (100%) rename {imgs => img}/2018-08-27-violin-i32.svg (100%) diff --git a/imgs/2018-08-27-violin-f32.svg b/img/2018-08-27-violin-f32.svg similarity index 100% rename from imgs/2018-08-27-violin-f32.svg rename to img/2018-08-27-violin-f32.svg diff --git a/imgs/2018-08-27-violin-i32.svg b/img/2018-08-27-violin-i32.svg similarity index 100% rename from imgs/2018-08-27-violin-i32.svg rename to img/2018-08-27-violin-i32.svg diff --git a/posts/2018/min-benchmark.md b/posts/2018/min-benchmark.md index 55ee21e..d1033fb 100644 --- a/posts/2018/min-benchmark.md +++ b/posts/2018/min-benchmark.md @@ -94,7 +94,7 @@ Looking at [godbolt output][] for a hardcoded case shows that they all get vecto Criterion produces really cool graphs. Here's the results from the two cases: -![violin-i32](/imgs/2018-08-27-violin-i32.svg) -![violin-f32](/imgs/2018-08-27-violin-f32.svg) +![violin-i32](/img/2018-08-27-violin-i32.svg) +![violin-f32](/img/2018-08-27-violin-f32.svg) I suspect if you want to compute the minimum of a *very* large list, you'll benefit from doing tree reductions on independent chunks in a loop. diff --git a/posts/2019/hello-world-in-0x-a-presses.md b/posts/2019/hello-world-in-0x-a-presses.md index 2de674b..8b8c23d 100644 --- a/posts/2019/hello-world-in-0x-a-presses.md +++ b/posts/2019/hello-world-in-0x-a-presses.md @@ -24,7 +24,7 @@ In mid-October I tweeted a joke about doing the "Advent of Code" A Button Challe Advent of Code, A Button Challenge: solve all programs without ever writing the letter A in any of them. {% endtweet %} -This inspired some discussion in the replies by Swift compiler folks discussing ways to try to handle programs `var`. +This inspired some discussion in the replies by Swift compiler folks discussing ways to try to handle programs without needing `var`. It was a lot of fun! Just a few days later I was at [Rust Belt Rust][rbr]. @@ -46,7 +46,7 @@ $ cargo init button And we've already hit trouble. We can't even write `cargo`. -Luckily, bash has out backs here, and we can use command substitution with `printf` to get it. +Luckily, bash has our backs here, and we can use command substitution with `printf` to get it. ```bash $ $(printf 'c\141rgo init button') -- 2.43.2