Appearance
第48期 41 week share 2025-10-17
本周我读到有趣的文章
1、nitro
TIP
Nitro is a full-stack framework, compatible with any runtime. It extends your Vite application with a production-ready server.
TIP
The Python stack to build web apps at light speed
3、字图 CDN
TIP
让中文字体在互联网世界起飞
4、ffetch
TIP
A production-ready TypeScript-first drop-in replacement for native fetch, or any fetch-compatible implementation.
5、zed
TIP
Zed is a next-generation code editor designed for high-performance collaboration with humans and AI.
TIP
Postgres 18: OLD and NEW Rows in the RETURNING Clause
sql
UPDATE fruit
SET quantity = 300
WHERE item = 'Apples'
RETURNING OLD.*, NEW.*;
id | item | quantity | id | item | quantity
----+--------+----------+----+--------+----------
5 | Apples | 200 | 5 | Apples | 300
(1 row)7、Rate Limiting & DDoS Mitigation
bash
limit_req_zone $binary_remote_addr zone=req_limit_per_ip:10m rate=10r/s;
server {
location / {
limit_req zone=req_limit_per_ip burst=20 nodelay;
}
}