Skip to content

Instantly share code, notes, and snippets.

View suchasplus's full-sized avatar

suchasplus suchasplus

  • xmly.work
  • Beijing
View GitHub Profile
@suchasplus
suchasplus / discourse.ts
Created March 20, 2026 18:24
discourse 刷阅读量 from opus4.6
(async () => {
const SCROLL_STEP = 300; // 每次滚动像素
const SCROLL_INTERVAL = 800; // 滚动间隔(ms)
const IDLE_WAIT = 3000; // 到底后等待加载时间(ms)
const MAX_IDLE_RETRIES = 5; // 最大等待加载重试次数
const sleep = ms => new Promise(r => setTimeout(r, ms));
let idleCount = 0;
let lastHeight = 0;