Skip to content

第55期 49 week share 2025-12-04

本周我读到有趣的文章

1、Next AI Draw.io

TIP

A next.js web application that integrates AI capabilities with draw.io diagram

2、101 Linux commands

TIP

每个命令都配有详细说明、实际使用示例和应用场景,从基础的文件操作到高级的系统管理,循序渐进地展开。

3、PGlite Embeddable Postgres

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.

5、HTML5 Boilerplate

TIP

About A professional front-end template for building fast, robust, and adaptable web apps or sites.

6、jsonriver

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);
  };
}

返回目录

Developed by Orange