You’re not eligible for the free trial, but you can still subscribe without it Cancel anytime in Subscriptions on Google Play A temporary authorization hold may be placed on your payment method up to 2 days before your renewal date 有佬知道什么原因吗,页面上0$,支付的时候却是原价 1 个帖子 - 1 位参与者 阅读完整话题
IT之家 4 月 18 日消息,据路透社报道,人工智能芯片制造商 Cerebras Systems 昨天披露美股 IPO(首次公开募股)申请文件, 试图进入公开资本市场挑战 AI 巨头英伟达 。 据报道,Cerebras 曾在去年 10 月申请 IPO,但在完成 10 亿美元(IT之家注:现汇率约合 68.34 亿元人民币)融资后不久撤回了申请。 同时,Cerebras 致力于“走英伟达没走过的路”,旗下 AI 芯片设计避免依赖 HBM 内存。公司致力于布局推理领域,目前已与 OpenAI 达成价值 200 亿美元(现汇率约合 1366.82 亿元人民币)的多年协议,将为 OpenAI 部署 750 兆瓦规模芯片。 此外,Cerebras 计划在纳斯达克上市,股票代码拟定为“CBRS”,此次发行的主要承销商有摩根士丹利、花旗集团、巴克莱和瑞银等。
4 个帖子 - 3 位参与者 阅读完整话题
排查了好久,很烦,每次测试ssh tunnel都是通的,一连接就报错 1 个帖子 - 1 位参与者 阅读完整话题
起因 今天在使用WSL上的Centos时, 发现Vscode远程连接上不上了, 然后想起来vscode之前下载claude插件自动更新了一次, 导致它的版本变成了v1.106.0, 然后就连不上了. 从 VS Code 1.99(2025年3月发布) 开始,官方预编译的 VS Code Server 对 Linux 发行版的系统依赖做了升级,要求远端服务器必须满足: glibc >= 2.28 libstdc++ >= 3.4.25 以及对应的动态链接环境 ssh远程连接时错误信息如下: [2026-04-18 03:33:45.663] Starting server: /home/user/.vscode-server/bin/ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57/bin/code-server --host=127.0.0.1 --port=0 --connection-token=1869292326-2464295744-3154885190-4149685785 --use-host-proxy --without-browser-env-var --disable-websocket-compression --accept-server-license-terms --telemetry-level=all [2026-04-18 03:33:45.664] /home/user/.vscode-server/bin/ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57/node: /lib64/libm.so.6: version `GLIBC_2.27' not found (required by /home/user/.vscode-server/bin/ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57/node) [2026-04-18 03:33:45.664] /home/user/.vscode-server/bin/ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57/node: /lib64/libc.so.6: version `GLIBC_2.27' not found (required by /home/user/.vscode-server/bin/ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57/node) [2026-04-18 03:33:45.664] /home/user/.vscode-server/bin/ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57/node: /lib64/libc.so.6: version `GLIBC_2.28' not found (required by /home/user/.vscode-server/bin/ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57/node) [2026-04-18 03:33:45.664] /home/user/.vscode-server/bin/ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57/node: /lib64/libc.so.6: version `GLIBC_2.25' not found (required by /home/user/.vscode-server/bin/ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57/node) 解决方法一: 官方推荐的自定义运行库法 code.visualstudio.com Can I run VS Code Server on older Linux distributions? - Remote Development FAQ This article covers frequently asked questions for each of the Visual Studio Code Remote Development extensions. See the SSH, Containers, and WSL articles for more details on setting up and working with each of their respective capabilities. Or try... 以下是AI关于这个文档的解释: VS Code 1.99 之后,官方发的 VS Code Server 二进制 默认要求远端系统有较新的: glibc >= 2.28 libstdc++ >= 3.4.25 以及相应动态链接环境 如果你的老服务器系统本身太旧,比如 CentOS 7,没有这些库,Server 本体会启动失败 这时候可以额外准备一套“较新的运行库目录”,让 VS Code Server 不要使用系统自带旧 glibc,而是改为加载你提供的那一套新库. 这个“较新的运行库目录”,官方建议你用 Crosstool-ng 去构建,这就是文档里说的 sysroot 准备工具: v0.18.x 以上的 patchelf. Release 0.18.0 · NixOS/patchelf · GitHub 在 rpmfind.net 中找到所需要的 glibc 2.28 地址: RPM resource glibc 选择AlmaLinux 8.10 BaseOS for aarch64 glibc-2.28-251.el8_10.31.aarch64.rpm 在 rpmfind.net 中找到所需要的 libstdc++ 地址: https://www.rpmfind.net/linux/almalinux/8.10/BaseOS/x86_64/os/Packages/libstdc++-8.5.0-28.el8_10.alma.1.i686.rpm 选择AlmaLinux 8.10 BaseOS for aarch64 libstdc++-8.5.0-28.el8_10.alma.1.i686.rpm 不要直接安装 rpm!!! mkdir -p /home/user/lib/vscode_server_linux_root mv glibc-2.28-251.el8.x86_64.rpm /home/user/lib/vscode_server_linux_root/ mv libstdc++-8.5.0-21.el8.x86_64.rpm /home/user/lib/vscode_server_linux_root/ cd /home/user/lib/vscode_server_linux_root # 将rpm文件解压到当前目录 rpm2cpio glibc-2.28-251.el8.x86_64.rpm | cpio -idmv rpm2cpio libstdc++-8.5.0-21.el8.x86_64.rpm | cpio -idmv # 检查下 so 文件中的 ABI 兼容版本是否符合 VSCode 或者 Node.js 的要求 strings ./usr/lib/libc.so.6 | grep -E '^GLIBC_[0-9.]+' | sort strings ./usr/lib/libstdc++.so.6 | grep -E '^GLIBCXX_[0-9.]+' | sort # 设置环境变量, 两个环境变量都试一下 export VSCODE_SERVER_CUSTOM_GLIBC_LINKER=/home/user/my_lib/vscode_server_linux_root/usr/lib # export VSCODE_SERVER_CUSTOM_GLIBC_LINKER=/home/flipped/my_lib/vscode_server_linux_root/usr/lib/ld-linux.so.2 export VSCODE_SERVER_CUSTOM_GLIBC_PATH=/home/user/my_lib/vscode_server_linux_root/usr/lib export VSCODE_SERVER_PATCHELF_PATH=/home/user/my_lib/vscode_server_linux_root/bin 理论上这样之后, node 应该可以正常启动了, 但是我在wsl上的centos7.9进行测试时, 即使设置了环境变量, 服务器上的node也没有到我指定的目录下去找2.28的glibc. 然后我也尝试了手动patch node. 但发现patch后, node --version 都运行不了. [!NOTE] 不一定起作用 若环境变量不生效,可尝试直接修改 VS Code Server 内嵌 Node.js 的动态链接路径: patchelf --set-interpreter ${CUSTOM_LIB_DIR}/usr/lib64/ld-linux-x86-64.so.2 \ --set-rpath ${CUSTOM_LIB_DIR}/usr/lib64 \ ~/.vscode-server/bin/<VSCode版本号>/node 解决方法2: 第三方补丁工具 从社区仓库下载与本地 VS Code 版本匹配的包: 仓库地址: MikeWang000000/vscode-server-centos7 查看本地 VS Code 版本:点击左下角齿轮 → 关于 → 复制版本哈希(如 ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57 ) # 1. 创建VS Code Server目录(若已存在则跳过) mkdir -p ~/.vscode-server # 2. 解压下载的预补丁包 tar xzf vscode-server_*.tar.gz -C ~/.vscode-server --strip-components 1 # 3. 执行补丁脚本 ~/.vscode-server/code-latest --patch-now # 4. 替换官方内嵌的Node.js(替换为预编译的兼容版本) cp -f ~/.vscode-server/cli/servers/Stable-<版本哈希>/server/node \ ~/.vscode-server/bin/<版本哈希>/node 使用这个方案, 我电脑上能够连接到centos了, 但是远程连接后, 无法在vscode的集成终端中使用 code a.log 打开服务器上的文件, 报错如下: user@user:test$ code . Unable to connect to VS Code server: Error in request. Error: connect ENOENT /run/user/1000/vscode-ipc-d2af735a-73ee-499c-9f8c-48fa19a6199e.sock at PipeConnectWrap.afterConnect [as oncomplete] (node:net:1637:16) { errno: -2, code: 'ENOENT', syscall: 'connect', address: '/run/user/1000/vscode-ipc-d2af735a-73ee-499c-9f8c-48fa19a6199e.sock' } 除了上面给出的预编译后的node文件, 在下面这个issue里面针对centos上运行v18以后的nodejs的问题, 也提供了一个预编译好的版本 github.com/nodejs/node Node.js is showing error "node: /lib64/libm.so.6: version `GLIBC_2.27' not found (required by node)" 已打开 05:40AM - 28 Mar 24 UTC 已关闭 08:38PM - 17 May 25 UTC yogeshlc ### Version node-v20.11.0-linux-x64.tar.xz ### Platform Linux yogVM 5.4.17-21 … 36.325.5.1.el7uek.x86_64 ### Subsystem _No response_ ### What steps will reproduce the bug? - Extract node.js tar at location /usr/local - check node --version cmd which is failing with error Error: node --version node: /lib64/libm.so.6: version `GLIBC_2.27' not found (required by node) node: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by node) node: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by node) node: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by node) node: /lib64/libc.so.6: version `GLIBC_2.28' not found (required by node) node: /lib64/libc.so.6: version `GLIBC_2.25' not found (required by node) ### How often does it reproduce? Is there a required condition? _No response_ ### What is the expected behavior? Why is that the expected behavior? node --version v20.11.0 ### What do you see instead? node --version node: /lib64/libm.so.6: version `GLIBC_2.27' not found (required by node) node: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by node) node: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by node) node: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by node) node: /lib64/libc.so.6: version `GLIBC_2.28' not found (required by node) node: /lib64/libc.so.6: version `GLIBC_2.25' not found (required by node) ### Additional information _No response_ 但我用这个, 虽然也能正常连接, 但无法打开vscode中的集成终端. 报错如下. 结尾 佬友们帮忙看看, 为什么我使用官方文档里面的方法, 设置环境变量之后还是没有办法让服务器上的node到我指定的目录下去找glibc. 2 个帖子 - 2 位参与者 阅读完整话题
参考豆包专家的资料整的 英文提示词通用: transform this anime character into a realistic human, maintain exact hairstyle, hair color, eye color, facial proportions and expression, natural skin pores, detailed eyes and lips, even studio lighting, clear facial contours 多图的话,把this改成these ,Character后面加个s 删掉into后面的a 不然傻傻的豆包可能就帮你把所有图片融合起来,生成一张图片了() 直接看看豆包5.0效果吧,我不是很喜欢,但是某些AI形象创建必须要真实人脸 把二次元的头部比例复刻到这里还是很奇怪喵 3 个帖子 - 3 位参与者 阅读完整话题
Read an article about analyzing Garmin data with AI. Sounded great — except I didn't want to send my health data to any cloud service. So I asked Claude to write me 2-3 scripts and a dashboard. This escalated a bit. 30 days and 20$ later I have this: A local-first Garmin archive with interactive HTML dashboards, Excel exports, weather and pollen context, AES-256 encrypted token storage, and a self-healing data pipeline with 515 automated tests. Windows desktop app, no terminal needed. Nothing leaves your machine. I never wrote a line of Python. I understood the problems and made the architectural decisions. Claude wrote everything else. GitHub: github.com/Wewoc/Garmin_Local_Archive Comments URL: https://news.ycombinator.com/item?id=47814208 Points: 1 # Comments: 0
IT之家 4 月 18 日消息,消息人士 @redphx 昨天在 X 平台放出挖掘代码,显示微软 XGP 游戏订阅服务将提供“Triton”和“Duet”两个新档位。 据推测,“Triton”档位可能只提供《光环》《毁灭战士》等 Xbox 第一方游戏, 而“Duet”则可能整合 Netflix 订阅服务 。 同时根据目前的泄露代码,这两个新档位都有可能支持 Xbox Cloud Gaming 云游戏服务。不过微软可能会引入限时游玩机制,减轻服务器负载。类似英伟达 GeForce Now 的限流措施。 值得注意的是,每月 29.99 美元(IT之家注:现汇率约合 205 元人民币)的微软 XGPU 订阅提供无限制串流服务。而英伟达 GeForce Now 则是一开始不限制游玩时长,但后续对付费方案设定每月 100 小时使用上限。
Hi HN, I've been doing freelance work and realized the most stressful part of the entire lifecycle isn't doing the work, it's the final handoff. You send over the final ZIP file or Figma link, attach your invoice, and then just wait and hope the client actually pays instead of running off with your files. To fix this, I built TimeDrop to act as a mechanical intermediary. It basically removes the "trust" variable from the final delivery. Here is the workflow: You secure your final project link behind a "delivery gate" in the app. The app emails the invoice to the client on your behalf. The client receives the invoice and sees that the files are ready, but the link is strictly locked. The second you mark the invoice as paid on your dashboard, the system automatically unlocks and delivers the final files to the client. It acts as the bad cop so you never have to send another awkward "just following up on the payment" email. The site is https://timedrop.work I would love to hear your thoughts on the mechanics of this workflow, or if you see any glaring edge cases I'm missing.. Comments URL: https://news.ycombinator.com/item?id=47814004 Points: 1 # Comments: 1
21 个帖子 - 16 位参与者 阅读完整话题
进入 claude.ai 网页版,然后点击 design , 一直在 claude.ai/design 和 claude.ai/login?return=%2Fdesign 反复循环重定向。 有大佬遇到过这个情况吗? 1 个帖子 - 1 位参与者 阅读完整话题
手搓了一堆GPT Free号,但是已经几乎没什么用了,几次请求就周限。公益站也一片哀鸿遍野,几乎没什么能用的。 天才程序员纷纷坠落~~ 偶然发现x鱼上的API还可以用,3块钱100刀,已经问了好几个问题,消耗不到10刀,比自己折腾free或者公益站舒服多了,感觉比plus还扛用。 也有按天计算的,胆大的也可以试试月度的,几十块钱一个月——当然,听说薅羊毛的方法被举报到GPT官方了,不知道下周会不会开杀。 本帖不做任何推荐或者保证,只是提供一种思路。 10 个帖子 - 10 位参与者 阅读完整话题
The Cloudflare Blog – 17 Apr 26 Agents that remember: introducing Agent Memory Cloudflare Agent Memory is a managed service that gives AI agents persistent memory, allowing them to recall what matters, forget what doesn't, and get smarter over time. [!quote]+ 今天,我们宣布推出Agent Memory的私有测试版,这是一项托管服务,可以从代理对话中提取信息,并在需要时提供这些信息,而不会填满上下文窗口。 它赋予人工智能代理持久记忆,使其能够记住重要信息,遗忘不重要信息,并随着时间的推移变得更加智能。 1 个帖子 - 1 位参与者 阅读完整话题
大家好,最近在折腾一个具身智能比赛 ManipArena,想来求点建议,也看看有没有佬友愿意一起研究。 我现在研一,对具身智能挺感兴趣,但相关背景还比较弱,很多东西都在边做边补。暑假想找一段具身方向的实习,所以也有点焦虑简历上项目不够,想趁这段时间认真做一个能拿得出手的东西。 目前是在做一个具身智能比赛叫ManipArena,我选了 pi0.5 / OpenPI 这条线做 baseline,正在一点点把训练、推理、评测和比赛接口这些链路接起来。后面也打算继续做 LoRA 微调、baseline 对比,以及看看能不能做一些闭环评测。 不过我现在也有一些困惑: 像我这种基础一般的新人,做 ManipArena 这种比赛值不值得投入? 如果目标是找暑假实习,这类项目应该做到什么程度才比较有说服力? 应该优先把整个 pipeline 跑通,还是尽量做一点自己的改进? 有没有人也在看具身、机器人 policy、VLA、OpenPI 这些方向,愿意一起交流或者组队? 如果有前辈愿意提点一下方向、资料或者避坑建议,我会非常感谢。 如果有朋友正好也在做类似的东西,也欢迎直接回帖或者私信我,一起研究。 5 个帖子 - 4 位参与者 阅读完整话题
这是我网络问题,还是Claude 抽风了啊 一开始看到吓一跳,以为被封号了 1 个帖子 - 1 位参与者 阅读完整话题
IT之家 4 月 18 日消息,据科技媒体 GSMArena 今天报道, 三星 Galaxy Z TriFold 的生命周期非常短暂,这款三折叠手机最初只在韩国限量发售,一段时间后便在当地停售。 不过该机在美国市场还是多卖了一段时间, 官方于 4 月 10 日最后一次补货 ,很快便被抢购一空。 如今,三星确认该机已经在美国停售:“ 限量发售的 Galaxy Z TriFold 已经全部售罄 ”。 三星建议用户持续关注公司官网,“以确保不会错过即将推出的独一无二创新产品”。官方推荐实在想买 Galaxy Z TriFold 的用户看看 Z Fold7 或 S26 Ultra。 IT之家在此援引 GSMArena ,目前有传闻称三星 Galaxy Z TriFold 2 三折叠手机将在明年发布,相比初代机型更加轻薄。虽然从现在的情报来看,Z TriFold 系列的未来仍十分光明。但无可否认,Z TriFold 初代确实是台短命的手机。
一直不太习惯L站的私信页面,在IDC Flare里面看到聊天的页面可以发送直接消息,就像是其他聊天软件一样的聊天页面,但是在L站上面没看到,有知道L站怎么发送直接消息的佬吗 IDC Flare直接消息页面截图 但L站上面只有频道,没有直接消息 3 个帖子 - 2 位参与者 阅读完整话题
因个人兴趣 平时喜欢生成一些 Ai视频,来玩一些,陆陆续续冲过即梦会员和小云雀会员,后面即梦排队巨久,一排有时候就是1-2天 后面就去冲了 小云雀 的会员 不过后续 他俩都卡审核 ,沾一点真人脸基本上就不通过。一开始给图片上一层浅浅的高斯模糊还行的,后面咋整都不行。 我主要是用sedance 2.0 其他 没怎么用过,看了也有香蕉pro 不过估计没有其他平台的api便宜 填一下问卷 大概第二天傍晚就会通过,注册完成会送5000积分 不是很多就只够生成3-4个seedancce 2.0的视频 大概看了一下,应该比即梦和小云雀便宜,主要是不卡人脸 这个是我购买的主要目的 这也是我头一次 知道原来sedance 是可以生成4k视频的 不过目前本人只试过2k(之前一直在用720p) 200块钱 一口气给64800 积分 相当于可以生成43个 1080p 的10秒 视频,个人感觉还是比较爽的 已经在爽玩了 3 个帖子 - 2 位参与者 阅读完整话题
Hi HN, I'm the builder. I realized that using cloud AI APIs for sensitive workflows—like transcribing board meetings, OCRing employment contracts, or cleaning up ID photos—is a massive privacy liability. So I built a client-side workspace using transformers.js, Whisper, and WebGPU. Everything runs locally. You can turn on Airplane Mode after the initial model load, and it still transcribes and extracts text perfectly. To keep myself honest, I wrote a technical audit of how the data flows (or rather, doesn't flow). My only backend is a tiny 2-core node in Singapore running self-hosted Plausible analytics: [ https://gist.github.com/ygx2378/3275b333504c6a9def50ef531b54... ] I'm still learning the ropes of browser-based memory management, so I'd love your feedback on how the models load on your specific GPUs! Comments URL: https://news.ycombinator.com/item?id=47813703 Points: 1 # Comments: 0
是需要自己开店吗?感谢老友的讲解。 目前用的还是挺稳的,最近确实 GPT 倒是不缺了,就是想玩一玩 Grok。一直没有玩过,老是蠢蠢欲动 想买个一年的号试试 佬友们觉得怎么样 2 个帖子 - 2 位参与者 阅读完整话题