Appearance
第55期 49 week share 2025-12-04
本周我读到有趣的文章
TIP
A next.js web application that integrates AI capabilities with draw.io diagram
TIP
每个命令都配有详细说明、实际使用示例和应用场景,从基础的文件操作到高级的系统管理,循序渐进地展开。
TIP
Run a full Postgres database locally in WASM with reactivity and live sync
4、open
TIP
Open stuff like URLs, files, executables. Cross-platform.
TIP
About A professional front-end template for building fast, robust, and adaptable web apps or sites.
TIP
Parse JSON incrementally as it streams in, e.g. from a network request or a language model. Gives you a sequence of increasingly complete values.
7、Throttle (limit execution rate)
js
function throttle(fn, limit = 300) {
let locked = false;
return function (...args) {
if (locked) return;
locked = true;
fn(...args);
setTimeout(() => locked = false, limit);
};
}