智能助手网
标签聚合 in

/tag/in

www.ithome.com · 2026-04-18 22:25:08+08:00 · tech

IT之家 4 月 18 日消息,联想官网 4 月 10 日公布了 ThinkPad T16 Gen 5(Intel)相关资料,这款新机目前已经在海外开启预售或正式开售,国行版本预计近期发布,港版(Ultra 5 332 vPro 版本)显示 14990 港币(现汇率约合 13083 元人民币)。 ThinkPad T16 Gen 5 首次引入 Intel Panther Lake 平台并搭载 LPCAMM2 内存,成为当前市面上为数不多同时拥有高性能核显与可更换内存的机型之一。 该机型在 2026 年世界移动通信大会(MWC)上亮相,当时只透露将于 4 月在欧洲市场率先开售,起售价约 1500 欧元(IT之家注:现汇率约合 12069 元人民币)。 该机型最大的升级在于其搭载了 Intel 最新的第三代酷睿 Ultra 处理器(代号 Panther Lake),最高可选 16 核 CPU(4 个性能核、8 个能效核和 4 个低功耗能效核),集成 12 个 X e 3 核心的 Arc B390 GPU,NPU 算力最高可达 50 TOPS,整体 AI 算力可轻松突破 100 TOPS。 联想还强调,新款 T16 Gen 5 在散热系统上有所增强,其 Panther Lake CPU 的 TDP(热设计功耗)设定为 30W,高于旧款 T 系列机型的基本 TDP,为持续高性能输出提供了保障。 该机型采用了全新的 LPCAMM2 可插拔内存,最高支持 64GB LPDDR5X-8533MHz 内存,既保留了低功耗特性,又赋予了用户自行升级的自由,打破了以往商务本“内存焊死不可升”的局限,为用户提供了更大的后期灵活性。 同时,该机型维持了经典的商务外观,A 面升级为铝合金材质,并采用更宽的条形铰链设计,实现了单手开合。屏幕可选 16 英寸 WUXGA(1920x1200)IPS 屏(400 尼特亮度)、2.8K(2880x1800)OLED 屏,支持 120Hz 可变刷新率和 DisplayHDR True Black 600,并保留防窥屏版本。 接口方面,该机型左侧依次排布了 2 个雷电 4、2 个 USB-A 5Gbps(其中一个支持关机供电)、HDMI 2.1 以及 RJ45 千兆网口,右侧则保留了 3.5mm 耳麦孔、可选 Nano-SIM 卡槽和读卡器。 其他方面,该机电池容量跃升至 75Wh,标配 dTPM 2.0 安全芯片、指纹电源键和红外摄像头(支持 Windows Hello),并引入基于计算机视觉的 Human Presence Detection(人体存在检测)功能。部分机型支持 Intel vPro Enterprise 平台,方便 IT 部门进行远程管理和维护。 此外,该机大量采用回收材料(PCC),如键盘支架采用 90% 回收镁合金,键帽采用 85% 回收塑料,并获得 EPEAT Gold 和 TCO 10 认证;同时进一步强化可维修性,其内置电池仅需按下两个卡扣即可轻松取出,USB-C 充电接口也采用模块化设计,用户可自行更换,进一步降低了维护成本并延长了设备的使用寿命。

linux.do · 2026-04-18 22:23:28+08:00 · tech

(() => { // 如果之前跑过,先停掉旧脚本 if (window.__autoScrollCtl?.stop) { window.__autoScrollCtl.stop(); } const STEP_PX = 260; // 每次下滑距离 const INTERVAL_MS = 1500; // 每次间隔,约为之前的 1/3 const SMOOTH = true; // 是否平滑滚动 const MAX_IDLE_TICKS = 20; // 连续多少次几乎没动就认为到底了 const scroller = document.scrollingElement || document.documentElement; let timer = null; let running = false; let lastTop = scroller.scrollTop; let idleTicks = 0; function tick() { const before = scroller.scrollTop; window.scrollBy({ top: STEP_PX, left: 0, behavior: SMOOTH ? "smooth" : "auto", }); setTimeout(() => { const after = scroller.scrollTop; const moved = Math.abs(after - before); if (moved < 5) { idleTicks += 1; } else { idleTicks = 0; } lastTop = after; if (idleTicks >= MAX_IDLE_TICKS) { console.log("[auto-scroll] 可能已经到底,自动暂停"); pause(); } }, Math.min(900, Math.max(300, INTERVAL_MS - 200))); } function start() { if (running) return; running = true; timer = setInterval(tick, INTERVAL_MS); console.log( `[auto-scroll] 已启动: ${STEP_PX}px / ${INTERVAL_MS}ms` ); } function pause() { if (!running) return; clearInterval(timer); timer = null; running = false; console.log("[auto-scroll] 已暂停"); } function resume() { if (running) return; idleTicks = 0; start(); } function stop() { clearInterval(timer); timer = null; running = false; idleTicks = 0; console.log("[auto-scroll] 已停止"); } window.__autoScrollCtl = { start, pause, resume, stop, status() { return { running, top: scroller.scrollTop, height: scroller.scrollHeight, viewport: window.innerHeight, stepPx: STEP_PX, intervalMs: INTERVAL_MS, idleTicks, }; }, }; start(); })(); 1、用在哪? 比如我看一篇长帖子、或者文章、或者小说,不想自己动手了,可以让浏览器自己下滚 2、怎么用 打开浏览器控制台,找到 console,代码贴进去回车就好了 暂停: __autoScrollCtl.pause() 继续: __autoScrollCtl.resume() 停止: __autoScrollCtl.stop() 查看状态: __autoScrollCtl.status() 1 个帖子 - 1 位参与者 阅读完整话题

linux.do · 2026-04-18 22:06:31+08:00 · tech

1:结构化agents/claude 初始提示词. 只应该放置你是谁你在什么环境,本机有什么内容,现在的项目介绍一句话. 2:mcp标准化简略化. 可以配置disable 把不需要的mcp 工具给关闭. 3:skill搭配mcp工具特化如grok/context7/adb/chrome/supabase等 4:重点model基本化 配置示范 codex config.toml (点击了解更多详细信息) claude CLAUDE.md (点击了解更多详细信息) 项目说明使用 github.com GitHub - TokenRollAI/llmdoc: TokenRoll LLMDoc for Coding Agent TokenRoll LLMDoc for Coding Agent 记忆管理使用 github.com GitHub - gaoziman/claude-context-manager: claude-context-manager for claude code claude-context-manager for claude code model setting 使用 high 代替xhigh. todoplan 任务纲要使用 chatgpt 网页的pro对话完成 pro 反代公益站点 一次对话完成一件事情. 避免长上下文. 第一是我打出来的高缓存+高token 对话切费率低. 如果你们看懂了 就知道我说的是什么. llm最爱 代码行数低于1000/1个文件 组织结构化的文件目录. 清晰的顶层目录 每个大目录都应该有claude/agents文档. 从0~1~95%号池自建 自建号池状态页1Etoken=67刀 留下小爱心 冲击lv 3 1 个帖子 - 1 位参与者 阅读完整话题

hnrss.org · 2026-04-18 21:10:24+08:00 · tech

Readox is a Chrome extension that reads web pages, PDFs, selections, text files (ie markdown), and text input notes aloud with TTS. You can just play the current page, or save things to a library and queue them up. It highlights as it reads, keeps your place across items, and can OCR scanned PDFs. TTS (for text and PDF) and OCR run on-device, and it works offline after setup. I’m interested on feedback on the library collections as a "playlist-like" functionality, or if most people just want a play button for the current page. Also interested in anything that feels missing or awkward. Thanks! Comments URL: https://news.ycombinator.com/item?id=47815638 Points: 2 # Comments: 0

linux.do · 2026-04-18 21:09:24+08:00 · tech

new_api_panic: Panic detected, error: runtime error: invalid memory address or nil pointer dereference. Please submit a issue here: GitHub - QuantumNous/new-api: A unified AI model hub for aggregation & distribution. It supports cross-converting various LLMs into OpenAI-compatible, Claude-compatible, or Gemini-compatible formats. A centralized gateway for personal and enterprise model management. 🍥 · GitHub | Upstream: {“error”:{“message”:“Panic detected, error: runtime error: invalid memory address or nil pointer dereference. Please submit a issue here: https://github.com/Calcium-Ion/new-api",“type”:"new_api_panic ”}} 2 个帖子 - 2 位参与者 阅读完整话题

linux.do · 2026-04-18 21:08:34+08:00 · tech

本帖使用社区开源推广,符合推广要求。我申明并遵循社区要求的以下内容: 我的帖子已经打上 开源推广 标签: 是 我的开源项目完整开源,无未开源部分: 是 我的开源项目已链接认可 LINUX DO 社区: 是 我帖子内的项目介绍,AI生成、润色内容部分已截图发出: 是 以上选择我承诺是永久有效的,接受社区和佬友监督: 是 以下为项目介绍正文内容,AI生成、润色内容已使用截图方式发出 前言: 事情起因,我想给虚拟机显卡能力提升下,在网上找到个工具,可以给虚拟机分配显卡,还有硬件直通,因为没玩过这玩意,显卡直通直接给物理机弄黑屏了,绷。当时害怕是因为,以为这电脑没核显,那没救了。后面通过改bios混合模式才救回来。然后就对cc和codex一顿拷打,实现这个工具,可以让物理机和虚拟机同时使用显卡。 功能: 一键为 Hyper-V 虚拟机配置 GPU 半虚拟化(GPU-PV),自动完成 GPU 分配和驱动复制。 使用过程: 主界面 — 选择 GPU、虚拟机,输入显存大小 配置前 — VM 设备管理器,只有 Hyper-V 视频 配置成功 — GPU-PV 配置完成,驱动已复制 配置后 — VM 设备管理器,RTX 4060 已识别 GPU 跑分 — VM 内运行 FurMark,GPU 正常工作 要我说使用感受的话,我感觉也就是虚拟机可以看到显卡,具体划分多少性能过去了,咱也不懂。反正多少是能用了。 免责声明 本人电脑(物理机win11 iot ltsc,虚拟机win10 ltsc)使用没事,但涉及虚拟机及数据方面,我觉得还是要谨慎点 项目地址 github.com GitHub - sec1900/HyperV-GPUshare 通过在 GitHub 上创建帐户来为 sec1900/HyperV-GPUshare 开发做出贡献。 觉得有用的佬们给点点star 如果有其他更好的方式去实现,也希望能甩我几个关键词或者帖子看看 1 个帖子 - 1 位参与者 阅读完整话题

hnrss.org · 2026-04-18 20:30:16+08:00 · tech

I built LogsGo as a learning project to explore log ingestion, querying, and storage tradeoffs. It’s a small Go-based system where logs come in over gRPC, land in memory first, then flush into local storage and optionally S3-compatible object storage. I also added a simple query language plus a small UI to inspect log occurrences over time. This wasn’t built because I think the world needed “another logging system” or because I’m an expert here. I mostly wanted to learn by building something end to end: ingestion paths, storage layering, querying, retention, auth/TLS, and some UI work. Repo: https://github.com/Saumya40-codes/LogsGO I’d genuinely appreciate feedback, including “this design is wrong for X reason” type feedback. If parts of it feel overengineered / naive / badly thought through, that’s useful for me too. Comments URL: https://news.ycombinator.com/item?id=47815402 Points: 1 # Comments: 0