Skip to content

Commit 947c49b

Browse files
committed
Merge branch 'main' of github.com:HTTPArchive/almanac.httparchive.org into production
2 parents 58026bf + 396045e commit 947c49b

File tree

41 files changed

+884
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+884
-17
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
WITH totals AS (
2+
SELECT
3+
date,
4+
client,
5+
is_root_page,
6+
COUNT(0) AS num_pages
7+
FROM
8+
`httparchive.crawl.pages`
9+
WHERE
10+
date = '2024-06-01'
11+
GROUP BY
12+
date,
13+
client,
14+
is_root_page
15+
)
16+
17+
SELECT
18+
date,
19+
client,
20+
is_root_page,
21+
COUNTIF(INT64(custom_metrics.other.almanac.scripts.total) > 0) AS pages_using_js,
22+
num_pages,
23+
COUNTIF(INT64(custom_metrics.other.almanac.scripts.total) > 0) / num_pages AS pct_pages_using_js
24+
FROM
25+
`httparchive.crawl.pages`
26+
INNER JOIN
27+
totals
28+
USING (date, client, is_root_page)
29+
WHERE
30+
date = '2024-06-01'
31+
GROUP BY
32+
date,
33+
client,
34+
is_root_page,
35+
num_pages
36+
ORDER BY
37+
date,
38+
client,
39+
is_root_page

src/config/2024.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,7 @@
128128
"part": "IV",
129129
"chapter_number": "16",
130130
"title": "Page Weight",
131-
"slug": "page-weight",
132-
"todo": true
131+
"slug": "page-weight"
133132
},
134133
{
135134
"part": "IV",

src/config/contributors.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1948,7 +1948,8 @@
19481948
"name": "Ines Akrap",
19491949
"teams": {
19501950
"2024": [
1951-
"authors"
1951+
"authors",
1952+
"reviewers"
19521953
]
19531954
},
19541955
"twitter": "InesAkrap",
@@ -3265,6 +3266,19 @@
32653266
"twitter": "mobeenali97",
32663267
"website": "https://siffar.com"
32673268
},
3269+
"montsec": {
3270+
"avatar_url": "3486362",
3271+
"bluesky": "montsecano.bsky.social",
3272+
"github": "montsec",
3273+
"linkedin": "montsecano-senior-digital-marketer",
3274+
"name": "Montserrat Cano",
3275+
"teams": {
3276+
"2024": [
3277+
"editors"
3278+
]
3279+
},
3280+
"website": "https://montserrat-cano.com/"
3281+
},
32683282
"mordy-oberstein": {
32693283
"avatar_url": "104999516",
32703284
"github": "mordy-oberstein",

src/config/last_updated.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -812,9 +812,9 @@
812812
"hash": "a775f6e57c5cc677411cc693529bcc13"
813813
},
814814
"en/2024/chapters/page-weight.html": {
815-
"date_published": "2024-11-11T00:00:00.000Z",
816-
"date_modified": "2024-11-16T00:00:00.000Z",
817-
"hash": "c59c5f4b6983254247f24282d2e72d24"
815+
"date_published": "2024-12-30T00:00:00.000Z",
816+
"date_modified": "2024-12-30T00:00:00.000Z",
817+
"hash": "eeca57e801d371ab543cc3a1584d3c64"
818818
},
819819
"en/2024/chapters/performance.html": {
820820
"date_published": "2024-11-11T00:00:00.000Z",

src/content/en/2024/page-weight.md

Lines changed: 826 additions & 11 deletions
19.8 KB
18.4 KB
19.9 KB
19 KB
19.5 KB

0 commit comments

Comments
 (0)