Skip to content

Commit

Permalink
CMS 2024 chapter (#3832)
Browse files Browse the repository at this point in the history
* Initital Conversion

* Initial figure markup

* Add figures

* Link

* Typos

* Chart fixes

* Add missing chart

* Add missing image

* Move SQL to correct directory

* Address some TODOs

* Linting

* More chart descriptions

* ignificant places

* Lighthouse chart descriptions

* Final image descriptions
  • Loading branch information
tunetheweb authored Nov 10, 2024
1 parent 673a3ea commit ef6e5de
Show file tree
Hide file tree
Showing 33 changed files with 869 additions and 13 deletions.
51 changes: 51 additions & 0 deletions sql/2024/cms/cms_adoption_by_rank_all.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#standardSQL
# CMS adoption per rank
SELECT
client,
rank_grouping,
CASE rank_grouping
WHEN 1e8 THEN 'all'
ELSE TRIM(CAST(rank_grouping AS STRING FORMAT '99,999,999'))
END AS rank_grouping_text,
COUNT(DISTINCT page) AS pages,
MAX(total) AS total,
COUNT(DISTINCT page) / MAX(total) AS pct
FROM (
SELECT
client,
page,
rank_grouping
FROM
`httparchive.all.pages`,
UNNEST(technologies) AS tech,
UNNEST(tech.categories) AS category,
UNNEST([1e3, 1e4, 1e5, 1e6, 1e7, 1e8]) AS rank_grouping
WHERE
date = '2024-06-01' AND
rank <= rank_grouping AND
is_root_page AND
category = 'CMS'
)
JOIN (
SELECT
client,
rank_grouping,
COUNT(0) AS total
FROM
`httparchive.all.pages`,
UNNEST([1e3, 1e4, 1e5, 1e6, 1e7, 1e8]) AS rank_grouping
WHERE
date = '2024-06-01' AND
rank <= rank_grouping AND
is_root_page
GROUP BY
client,
rank_grouping)
USING
(client, rank_grouping)
GROUP BY
client,
rank_grouping
ORDER BY
rank_grouping,
pages DESC
3 changes: 1 addition & 2 deletions src/config/2024.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@
"part": "III",
"chapter_number": "14",
"title": "CMS",
"slug": "cms",
"todo": true
"slug": "cms"
},
{
"part": "III",
Expand Down
49 changes: 49 additions & 0 deletions src/config/contributors.json
Original file line number Diff line number Diff line change
Expand Up @@ -2223,6 +2223,10 @@
],
"2022": [
"authors"
],
"2024": [
"analysts",
"authors"
]
},
"twitter": "sirjonathan",
Expand Down Expand Up @@ -2583,6 +2587,17 @@
]
}
},
"LoraRaykova": {
"avatar_url": "166594702",
"github": "LoraRaykova",
"linkedin": "lraykova",
"name": "Lora Raykova",
"teams": {
"2024": [
"authors"
]
}
},
"veluca93": {
"avatar_url": "1896483",
"github": "veluca93",
Expand Down Expand Up @@ -3145,6 +3160,17 @@
"twitter": "dark_mefody",
"website": "https://mefody.dev/"
},
"niko-kaleev": {
"avatar_url": "163424699",
"github": "niko-kaleev",
"linkedin": "niko-kaleev-8760a9131",
"name": "Niko Kaleev",
"teams": {
"2024": [
"authors"
]
}
},
"NishuGoel": {
"avatar_url": "26349046",
"github": "NishuGoel",
Expand Down Expand Up @@ -3225,6 +3251,7 @@
"authors"
],
"2024": [
"analysts",
"leads",
"reviewers"
]
Expand Down Expand Up @@ -3493,6 +3520,16 @@
},
"twitter": "rachellcostello"
},
"raewrites": {
"avatar_url": "7201324",
"github": "raewrites",
"name": "Raelene Morey",
"teams": {
"2024": [
"reviewers"
]
}
},
"lebreRafael": {
"avatar_url": "13899924",
"github": "lebreRafael",
Expand Down Expand Up @@ -4086,6 +4123,18 @@
"twitter": "tpiros",
"website": "https://tamas.io"
},
"karmatosed": {
"avatar_url": "253067",
"github": "karmatosed",
"name": "Tammie Lister",
"teams": {
"2024": [
"reviewers"
]
},
"twitter": "karmatosed",
"website": "https://tammielister.com/"
},
"tammyeverts": {
"avatar_url": "15661032",
"github": "tammyeverts",
Expand Down
779 changes: 768 additions & 11 deletions src/content/en/2024/cms.md

Large diffs are not rendered by default.

Binary file added src/static/images/2024/cms/cls-yoy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/2024/cms/cms-adoption.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/2024/cms/cms-size-of-css.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/2024/cms/cms-size-of-fonts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/2024/cms/cms-size-of-html.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/2024/cms/cms-size-of-images.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/2024/cms/cms-size-of-js.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/2024/cms/inp-yoy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/2024/cms/lcp-yoy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/images/2024/cms/top-cms-by-rank.png
Binary file added src/static/images/2024/cms/top-cms-yoy.png

0 comments on commit ef6e5de

Please sign in to comment.