Skip to content

Commit 44b6d67

Browse files
committed
new(log)
1 parent 243336e commit 44b6d67

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

public/logs/logs.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
[
2+
{
3+
"category": "Article",
4+
"date": "2025-11-03",
5+
"link": "https://endtimes.dev/why-your-website-should-be-under-14kb-in-size/",
6+
"rating": 4,
7+
"slug": "why-your-website-should-be-under-14kb-in-size",
8+
"source": "Nathaniel",
9+
"title": "Why your website should be under 14kB in size"
10+
},
211
{
312
"author": "Albert Camus",
413
"category": "Book",
@@ -117,4 +126,4 @@
117126
"slug": "food-omelette",
118127
"title": "Omelette"
119128
}
120-
]
129+
]
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
### Summary of "Why your website should be under 14kB in size"
2+
3+
The article argues that for optimal performance, a website's initial load should be under 14kB. This is due to the TCP slow start algorithm, which typically sends the first 10 TCP packets in the initial burst. Since each packet is about 1.46kB, this adds up to 14.6kB. By keeping the initial load under this size, a website can avoid additional round trips, significantly reducing latency and improving the user experience, especially on slower networks.
4+
5+
### Strong Sides
6+
7+
* **Clear Technical Explanation:** The article does an excellent job of explaining a complex technical topic (TCP slow start) in a way that is easy to understand.
8+
* **Actionable Advice:** It provides concrete steps that developers can take to reduce their website's size, such as optimizing images, removing unnecessary frameworks, and prioritizing above-the-fold content.
9+
* **Relevant to Modern Web Development:** Despite the increasing availability of high-speed internet, the article correctly points out that many users still experience slow connections, making this advice highly relevant.
10+
11+
### Important Parts
12+
13+
* **The 14kB Rule:** The core concept of the article, which is that a website's initial load should be under 14kB to avoid additional round trips.
14+
* **TCP Slow Start:** The underlying technical reason for the 14kB rule.
15+
* **Latency:** The article's emphasis on the importance of latency in user experience.
16+
* **Actionable Advice:** The practical steps that developers can take to reduce their website's size.

0 commit comments

Comments
 (0)