diff --git a/_posts/2019-09-01-binary-format-shootout.md b/_posts/2019-09-01-binary-format-shootout.md index 192eb03..a38cd5d 100644 --- a/_posts/2019-09-01-binary-format-shootout.md +++ b/_posts/2019-09-01-binary-format-shootout.md @@ -140,8 +140,8 @@ NOTE: Need to expand on this, but numbers reported below are from the IEX's 2019 Serialization -| | median | 99th Pctl | 99.9th Pctl | Total | -|----------------------|--------|-----------|-------------|--------| +| Schema | Median | 99th Pctl | 99.9th Pctl | Total | +|:---------------------|:-------|:----------|:------------|:-------| | Cap'n Proto Packed | 413ns | 1751ns | 2943ns | 14.80s | | Cap'n Proto Unpacked | 273ns | 1828ns | 2836ns | 10.65s | | Flatbuffers | 355ns | 2185ns | 3497ns | 14.31s | @@ -149,8 +149,8 @@ Serialization Deserialization -| | median | 99th Pctl | 99.9th Pctl | Total | -|----------------------|--------|-----------|-------------|--------| +| Schema | Median | 99th Pctl | 99.9th Pctl | Total | +|:---------------------|:-------|:----------|:------------|:-------| | Cap'n Proto Packed | 539ns | 1216ns | 2599ns | 18.92s | | Cap'n Proto Unpacked | 366ns | 737ns | 1583ns | 12.32s | | Flatbuffers | 173ns | 421ns | 1007ns | 6.00s | diff --git a/_sass/components/_article.scss b/_sass/components/_article.scss index f6aae37..46979ca 100644 --- a/_sass/components/_article.scss +++ b/_sass/components/_article.scss @@ -113,8 +113,16 @@ border-bottom-width: 1px; } + table { + border-collapse: collapse; + border-style: hidden; + } + td, th { + padding-left: .1em; padding-right: 2em; + border-style: solid; + border-width: .1em; } }