diff options
| author | Franklin Wei <franklin@rockbox.org> | 2020-01-06 16:19:33 -0500 |
|---|---|---|
| committer | Franklin Wei <franklin@rockbox.org> | 2020-01-06 16:19:33 -0500 |
| commit | ebe7b0f333a259da02a14e0f428fe3314d782762 (patch) | |
| tree | a70dd2192af2587c66d9fedf8f9fd4b28907d7f3 | |
| parent | 4049086731557554200c1ba36dde604c40123f5c (diff) | |
| download | blog-ebe7b0f333a259da02a14e0f428fe3314d782762.zip blog-ebe7b0f333a259da02a14e0f428fe3314d782762.tar.gz blog-ebe7b0f333a259da02a14e0f428fe3314d782762.tar.bz2 blog-ebe7b0f333a259da02a14e0f428fe3314d782762.tar.xz | |
Whitespace fix
| -rw-r--r-- | posts/a-c-programmer-learns-javascript.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posts/a-c-programmer-learns-javascript.md b/posts/a-c-programmer-learns-javascript.md index f4592f4..3990df3 100644 --- a/posts/a-c-programmer-learns-javascript.md +++ b/posts/a-c-programmer-learns-javascript.md @@ -253,7 +253,7 @@ result on a piece of material is a shape like this: </figure> The overall path, then, is the result of combining a sequence of these -shapes with common endpoints. [^2] +shapes with common endpoints.[^2] Though this formulation is fairly straightforward to describe mathematically, implementing it in code was more difficult than I'd @@ -318,7 +318,7 @@ The most technically interesting piece of RasterCarve Live ended up being the aggressive caching system I built, largely by accident. The client-side code first computes a MD5 hash of the user's input image and sends that hash in a request, along with the engraving parameters, -in place of the actual file data. [^4] It works as follows: +in place of the actual file data.[^4] It works as follows: 1. If the server has served an earlier request (with the exact same parameters) on an image with the same hash, simply return the result |