diff --git a/web/_posts/2007-04-04-problems-with-yui-datatable.md b/web/_posts/2007-04-04-problems-with-yui-datatable.md index f62b1874..d241aaf0 100755 --- a/web/_posts/2007-04-04-problems-with-yui-datatable.md +++ b/web/_posts/2007-04-04-problems-with-yui-datatable.md @@ -8,7 +8,7 @@ tags: - popular-posts-total deprecated: true feedtrim: true -postRankTotalViews: 12 +postRankTotalViews: 13 --- If you have read anything I’ve written before or know me at all, you know that my go-to JavaScript library is the one and only YUI. So obviously, when I was looking around for a Grid (or as YUI jargon goes, a DataTable), naturally I’m going to turn to YUI compatible components. First, I looked at Jack Slocum’s EXT, which has a nice looking Grid component that had a lot of features I wouldn’t need, but I didn’t really want to take a 0.5 MB hit for the limited feature set I was requiring. Adding the YUI DataTable would only tack on approximately 70-75 KB of additional download. So first, let me establish what I’m going for: diff --git a/web/_posts/2008-04-22-dont-let-the-door-hit-you-onunload-and-onbeforeunload.md b/web/_posts/2008-04-22-dont-let-the-door-hit-you-onunload-and-onbeforeunload.md index 5da933ac..f16b9131 100755 --- a/web/_posts/2008-04-22-dont-let-the-door-hit-you-onunload-and-onbeforeunload.md +++ b/web/_posts/2008-04-22-dont-let-the-door-hit-you-onunload-and-onbeforeunload.md @@ -9,7 +9,7 @@ tags: - research - popular-posts - popular-posts-total -postRank: 13 +postRank: 12 postRankTotalViews: 3 --- diff --git a/web/_posts/2008-05-10-selecting-xml-with-javascript.md b/web/_posts/2008-05-10-selecting-xml-with-javascript.md index 801933c7..04cf88d2 100755 --- a/web/_posts/2008-05-10-selecting-xml-with-javascript.md +++ b/web/_posts/2008-05-10-selecting-xml-with-javascript.md @@ -6,7 +6,9 @@ smalltitle: true tags: - highlight - research + - popular-posts - popular-posts-total +postRank: 19 postRankTotalViews: 4 --- diff --git a/web/_posts/2011-05-12-fittext-and-bigtext.md b/web/_posts/2011-05-12-fittext-and-bigtext.md index 6b8fc9ae..8c10e3d6 100755 --- a/web/_posts/2011-05-12-fittext-and-bigtext.md +++ b/web/_posts/2011-05-12-fittext-and-bigtext.md @@ -9,7 +9,7 @@ tags: - font-loading - popular-posts - popular-posts-total -postRank: 20 +postRank: 18 postRankTotalViews: 5 --- diff --git a/web/_posts/2015-01-22-faux-font-loading.md b/web/_posts/2015-01-22-faux-font-loading.md index d8f7c6db..14a2afe1 100644 --- a/web/_posts/2015-01-22-faux-font-loading.md +++ b/web/_posts/2015-01-22-faux-font-loading.md @@ -11,7 +11,7 @@ tags: - font-loading - popular-posts - popular-posts-total -postRank: 19 +postRank: 17 postRankTotalViews: 16 --- diff --git a/web/_posts/2016-01-04-critical-webfonts.md b/web/_posts/2016-01-04-critical-webfonts.md index 8a035615..7c3acbb4 100644 --- a/web/_posts/2016-01-04-critical-webfonts.md +++ b/web/_posts/2016-01-04-critical-webfonts.md @@ -10,7 +10,7 @@ tags: - font-loading - popular-posts - popular-posts-total -postRank: 12 +postRank: 11 postRankTotalViews: 11 --- diff --git a/web/_posts/2016-04-05-webfonts-preloaded.md b/web/_posts/2016-04-05-webfonts-preloaded.md index 0eb1a19f..ebddd718 100644 --- a/web/_posts/2016-04-05-webfonts-preloaded.md +++ b/web/_posts/2016-04-05-webfonts-preloaded.md @@ -11,8 +11,8 @@ tags: - font-loading - popular-posts - popular-posts-total -postRank: 11 -postRankTotalViews: 13 +postRank: 10 +postRankTotalViews: 12 --- ***Summary**: If you’re not currently using a font loading strategy, using `preload` with web fonts will reduce the amount of FOIT visitors will see when they visit your site—paid for by sacrificing initial render time. Don’t preload too much or the cost to initial render will be too high. For devs using a font loading strategy, the same rules apply. Try to only preload a single web font, whether that be the only font in a single stage load or the subset font in the first stage of a two stage load. Further, `preload` is an improvement over Data URIs for two stage font loads in supporting browsers, and I will be happy to welcome it as a best practice when its browser support grows.* diff --git a/web/_posts/2017-05-25-fontsmooth.md b/web/_posts/2017-05-25-fontsmooth.md index a176edae..025f9330 100644 --- a/web/_posts/2017-05-25-fontsmooth.md +++ b/web/_posts/2017-05-25-fontsmooth.md @@ -7,7 +7,7 @@ tags: - research - highlight - popular-posts -postRank: 18 +postRank: 16 --- _Recently, Twitter made a global anti-aliasing CSS change to their website. Before writing this post, I didn’t know very much about anti-aliasing—so I decided to learn everything I could about it to better understand the reasoning behind a decision like that. Here’s what I learned._ diff --git a/web/_posts/2017-06-15-aliasing.md b/web/_posts/2017-06-15-aliasing.md index f1a1efdf..91a22223 100644 --- a/web/_posts/2017-06-15-aliasing.md +++ b/web/_posts/2017-06-15-aliasing.md @@ -7,7 +7,7 @@ tags: - research - highlight - popular-posts -postRank: 14 +postRank: 13 --- Are you tired of developers abusing the smooth traditionalism of Helvetica? Do you wish your web page was a little bit more fun? Do you also want to avoid discussing things with your peers? Well, do I have some code for you. Add this little block into your project and it will globally alias (rename) Helvetica to Comic Sans MS (and Chalkboard SE, [browser support](http://fontfamily.io/Comic_Sans_MS,Chalkboard_SE)). _(Yes, I know I recently wrote a blog post about [anti-aliasing](/web/font-smooth/)—that’s a different thing.)_ diff --git a/web/_posts/2017-08-13-webfont-glossary.md b/web/_posts/2017-08-13-webfont-glossary.md index e383e204..04f9286c 100644 --- a/web/_posts/2017-08-13-webfont-glossary.md +++ b/web/_posts/2017-08-13-webfont-glossary.md @@ -5,7 +5,7 @@ categories: tags: - font-loading - popular-posts -postRank: 16 +postRank: 14 --- After publishing [The Comprehensive Guide to Font Loading Strategies](/web/comprehensive-webfonts/), I had a few requests to define a few terms used there. This document is a response to those requests. If something is missing below, please [let me know on Twitter @zachleat](https://twitter.com/zachleat) or in the comments. diff --git a/web/_posts/2017-11-21-23-minutes-font-loading.md b/web/_posts/2017-11-21-23-minutes-font-loading.md index fdd230af..4ad3cea8 100644 --- a/web/_posts/2017-11-21-23-minutes-font-loading.md +++ b/web/_posts/2017-11-21-23-minutes-font-loading.md @@ -7,7 +7,7 @@ tags: - font-loading - popular-posts - popular-posts-total -postRank: 8 +postRank: 7 postRankTotalViews: 15 --- diff --git a/web/_posts/2018-02-12-introducing-eleventy.md b/web/_posts/2018-02-12-introducing-eleventy.md index 206d9bf6..a9a54b1e 100644 --- a/web/_posts/2018-02-12-introducing-eleventy.md +++ b/web/_posts/2018-02-12-introducing-eleventy.md @@ -4,6 +4,8 @@ tags: - eleventy - project - highlight + - popular-posts +postRank: 20 ---

diff --git a/web/_posts/2019-05-09-google-fonts-display.md b/web/_posts/2019-05-09-google-fonts-display.md index 812cace3..1fa6bc00 100644 --- a/web/_posts/2019-05-09-google-fonts-display.md +++ b/web/_posts/2019-05-09-google-fonts-display.md @@ -4,7 +4,7 @@ tags: - font-loading - popular-posts - popular-posts-total -postRank: 2 +postRank: 1 postRankTotalViews: 9 ---

May 15, 2019 renamed URL parameter to display. Thank you Mathias!

diff --git a/web/_posts/2019-05-22-font-display-icon-fonts.md b/web/_posts/2019-05-22-font-display-icon-fonts.md index cb3c1f8b..c8be61fb 100644 --- a/web/_posts/2019-05-22-font-display-icon-fonts.md +++ b/web/_posts/2019-05-22-font-display-icon-fonts.md @@ -3,7 +3,7 @@ title: font-display is Incompatible with Icon Fonts tags: - font-loading - popular-posts -postRank: 7 +postRank: 8 --- There are myriad problems with icon fonts. I won’t rehash those again here but I did a section on this specific topic in [The Scoville Scale of Web Font Loading Opinions](/web/scoville-scale/). A bunch of people have written about this before: diff --git a/web/_posts/2019-06-10-facepile.md b/web/_posts/2019-06-10-facepile.md index 97a92bcf..eb094cf0 100644 --- a/web/_posts/2019-06-10-facepile.md +++ b/web/_posts/2019-06-10-facepile.md @@ -1,8 +1,6 @@ --- title: The Crushing Weight of the Facepile -tags: - - popular-posts -postRank: 17 +tags: [] --- I was cruising my own web site with DevTools open (as one does) and browsed to my latest blog post only to be _slapped in the face_ with a 3.7MB web site. My web site (on a blog post page without content images) is normally about 400KB. What happened?? diff --git a/web/_posts/2019-06-26-css-tricks-web-fonts.md b/web/_posts/2019-06-26-css-tricks-web-fonts.md index 214fbe9e..b04c0baa 100644 --- a/web/_posts/2019-06-26-css-tricks-web-fonts.md +++ b/web/_posts/2019-06-26-css-tricks-web-fonts.md @@ -3,7 +3,7 @@ title: Developing a Robust Font Loading Strategy for CSS-Tricks tags: - font-loading - popular-posts -postRank: 1 +postRank: 2 ---