WWW.YOUINFO.SITE
标签聚合 Users

/tag/Users

LinuxDo 最新话题 · 2026-06-06 09:02:08+08:00 · tech

不知道有佬友被封的pro被解封? 原帖子: OpenAI Status Some users may experience issues accessing OpenAI accounts - OpenAI Status The team is uncovering some additional impacted users and is still working through related subscription and credit impacts for affected users. Impacted users will be receiving an email shortly. OpenAI Status Some users may experience issues accessing OpenAI accounts - OpenAI Status The team is uncovering some additional impacted users and is still working through related subscription and credit impacts for affected users. Impacted users will be receiving an email shortly. 原文:An issue caused some user accounts to be incorrectly suspended. We’re restoring access and working through related subscription and credit issues. 5 个帖子 - 4 位参与者 阅读完整话题

IT之家 · 2026-05-30 13:22:19+08:00 · tech

IT之家 5 月 30 日消息,科技媒体 Windows Latest 昨日(5 月 29 日)发布博文,报道称在 Windows 11 五月可选更新 KB5089573 中, 微软在新电脑初始设置中,支持用户自定义本地用户文件夹名称。 IT之家援引博文介绍,用户本地文件夹位于 C:\Users\ 下,是文档、下载、图片和个人配置的默认位置。 设备命名页面更新前后对比 Windows 11 用户此前使用微软账号登录之后,通常会取邮箱 ID 前 5 个字符生成文件夹名。若邮箱开头含数字、符号或不完整姓名,最终路径可能显得突兀。 Windows 11 默认用户文件夹示例 Windows Terminal 显示默认用户路径 而在五月可选更新之后,用户在 Windows 11 开箱初始设置环节,可以看到“用户文件夹名称”字段,支持用户自定义调整。 Windows 11 初始设置设备命名页面 微软还保留命名限制,用户不能使用 CON、PRN、AUX、NUL、COM1、LPT1 等系统保留名称,文件夹名也不能以空格或句点结尾。 虽然 Windows 技术上支持空格和 Unicode 字符,但简单英文路径更适合命令行工具、脚本和游戏 Mod。 该名称只能在初始设置阶段修改,已经完成设置的用户无法通过这次更新直接更改现有用户文件夹。对多数人来说,想获得干净路径,仍可能需要重装系统。 设备命名页显示用户文件夹名称字段

LinuxDo 最新话题 · 2026-05-30 12:16:24+08:00 · tech

tg账号先是被冻结,然后申诉之后就被限制了 I’m afraid our users reported some of the public content you posted on Telegram in the past as illegal and our moderators have confirmed it and taken the content down. Unfortunately, your account is now limited. You will not be able to create new channels or post messages in other public places. If you have never spread illegal public content on Telegram and you think these limitations were applied to your account by mistake, please contact us at [email protected] . 1 个帖子 - 1 位参与者 阅读完整话题

v2ex · 2026-05-27 11:03:06+08:00 · tech

偶尔搜到 csdn 的文章,在 csdn 只能看开头,到 web.archive.org 看存档,会自动跳转到到 csdn 首页,十分恼火。 把浏览器的所有请求保存成 har ,丢给 AI , 让 AI 分析后,写 UserScript 阻止跳转,终于能顺利看完全文了。 与交互过程: user: 从 www.csdn.net.har 分析一下,如何从 web.archive.org 跳转到 csdn.net AI: 根据 HAR 文件分析,无法从 web.archive.org 直接跳转到 csdn.net 。原因如下: bala bala user: 浏览器最终跳转到了 csdn.net ,可能是某个 js 控制的 AI: 找到了!这是 CSDN 的反盗链/反嵌入检测代码。 分析结果 跳转机制 CSDN 在页面底部(隐藏的 <div> 中)有一段通过 <img onerror=""> 触发的代码: setTimeout(function(){ if(top!==self){ window.top.location.href=window.location.href // 如果在 iframe 中,让顶层跳转 } if(!/(csdn.net|iteye.com|baiducontent.com|googleusercontent.com|360webcache.com|sogoucdn.com|bingj.com)$/.test(window.lo cation.hostname)){ window.location.href="https://www.csdn.net" // 域名不在白名单则跳转 } },3000); // 3 秒延迟 user: 编写 user.js ,禁止这项跳转,仅在 web.archive.org 生效 AI: 已创建 /tmp/csdn-archive-anti-redirect.user.js 功能说明 该脚本只在 web.archive.org 域名下生效,通过多层防护阻止 CSDN 的跳转: ┌──────┬──────────────────────────────────────┐ │ 方法 │ 防护内容 │ ├──────┼──────────────────────────────────────┤ │ 1 │ 拦截 window.location.href 的赋值 │ ├──────┼──────────────────────────────────────┤ │ 2 │ 拦截 window.location.replace() │ ├──────┼──────────────────────────────────────┤ │ 3 │ 拦截 window.location.assign() │ ├──────┼──────────────────────────────────────┤ │ 4 │ 拦截 setTimeout 中包含跳转的回调 │ ├──────┼──────────────────────────────────────┤ │ 5 │ 拦截 <img onerror=""> 触发的跳转代码 │ └──────┴──────────────────────────────────────┘ 安装方法 1. 安装 Tampermonkey 或 Violentmonkey 2. 点击扩展图标 → 添加新脚本 3. 复制 /tmp/csdn-archive-anti-redirect.user.js 的内容粘贴 4. 保存 测试 访问 https://web.archive.org/web/*/https://blog.csdn.net/...,页面应该不再跳转到 csdn.net ,控制台会显示拦截日志。 写了 5 种拦截方法,安装后删除一些有语法错误的方法,可以正常工作。 脚本地址: https://greasyfork.org/zh-CN/scripts/579931-csdn-archive-org-anti-redirect

LinuxDo 最新话题 · 2026-05-26 17:16:30+08:00 · tech

1、C:\Users\ii\AppData\Local\hermes hermes安装默认路径 2、C:\Users\ii.hermes ccswitch生成的模型config配置 3、ccswitch新增模型 4、hermes /model下的 前三个模型是我每次把C:\Users\ii.hermes下config手动复制到C:\Users\ii\AppData\Local\hermes下面才成功的。 6、ccswich下配置目录改成C:\Users\ii\AppData\Local\hermes切换就失败 2 个帖子 - 2 位参与者 阅读完整话题

LinuxDo 最新话题 · 2026-05-26 16:45:32+08:00 · tech

默认会在 C:\Users\T480\AppData\Local\Claude-3p\vm_bundles 文件夹下生成一些虚拟的镜像文件(大概10个Gb左右)。但是我的C盘空间不够用了。有没有什么方法把这些镜像文件移动到其它盘 但是不影响claude desktop 软件使用。 我已按照网上方法 符号连结(Symbolic Link / 软连结)、目录联接(Directory Junction / 硬连结)、磁碟区挂载(Volume Mount Point)都不行。 有没有佬 解决过这种问题! 2 个帖子 - 2 位参与者 阅读完整话题

V2EX - 技术 · 2026-05-08 13:56:08+08:00 · tech

挂了霉国节点,claude --upgrade 还是更新不了: PS C:\Users\Administrator> claude --upgrade Current version: 2.1.117 Checking for updates to latest version... Error: Failed to install native update Error: Failed to fetch version from https://downloads.claude.ai/claude-code-releases/latest: ECONNREFUSED Try running "claude doctor" for diagnostics PS C:\Users\Administrator> claude doctor ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── Diagnostics ├ Currently running: native (2.1.117) ├ Commit: 5e9d59ce46d5 ├ Platform: win32-x64 ├ Path: C:\Users\Administrator\.local\bin\claude.exe ├ Config install method: native └ Search: OK (bundled) Updates ├ Auto-updates: disabled (set by env: CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC) ├ Auto-update channel: latest └ Version check skipped (essential-traffic-only mode) Still having issues? Run /feedback to report details. Press Enter to continue PS C:\Users\Administrator>

V2EX - 技术 · 2026-05-08 10:56:08+08:00 · tech

挂了霉国节点,claude --upgrade 还是更新不了: PS C:\Users\Administrator> claude --upgrade Current version: 2.1.117 Checking for updates to latest version... Error: Failed to install native update Error: Failed to fetch version from https://downloads.claude.ai/claude-code-releases/latest: ECONNREFUSED Try running "claude doctor" for diagnostics PS C:\Users\Administrator> claude doctor ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── Diagnostics ├ Currently running: native (2.1.117) ├ Commit: 5e9d59ce46d5 ├ Platform: win32-x64 ├ Path: C:\Users\Administrator\.local\bin\claude.exe ├ Config install method: native └ Search: OK (bundled) Updates ├ Auto-updates: disabled (set by env: CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC) ├ Auto-update channel: latest └ Version check skipped (essential-traffic-only mode) Still having issues? Run /feedback to report details. Press Enter to continue PS C:\Users\Administrator>

V2EX - 技术 · 2026-05-08 10:34:36+08:00 · tech

挂了霉国节点,claude --upgrade 还是更新不了: PS C:\Users\Administrator> claude --upgrade Current version: 2.1.117 Checking for updates to latest version... Error: Failed to install native update Error: Failed to fetch version from https://downloads.claude.ai/claude-code-releases/latest: ECONNREFUSED Try running "claude doctor" for diagnostics PS C:\Users\Administrator> claude doctor ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── Diagnostics ├ Currently running: native (2.1.117) ├ Commit: 5e9d59ce46d5 ├ Platform: win32-x64 ├ Path: C:\Users\Administrator\.local\bin\claude.exe ├ Config install method: native └ Search: OK (bundled) Updates ├ Auto-updates: disabled (set by env: CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC) ├ Auto-update channel: latest └ Version check skipped (essential-traffic-only mode) Still having issues? Run /feedback to report details. Press Enter to continue PS C:\Users\Administrator>

linux.do · 2026-05-05 14:19:06+08:00 · tech

我用的是windows环境 首先找到插件目录 C:\Users\lidiudiu\.vscode\extensions\openai.chatgpt-26.429.30905-win32-x64\webview\assets 修改了两个文件 permissions-mode-helpers-CtkUaRKH.js nux-gate-VgUqX-O0.js 文件名后面的 hash 以后可能会变,找不到时可以在 assets 里搜索这些关键词: additionalSpeedTiers fastModeHomeBanner has-seen-fast-mode-home-banner 开始改动 a. 备份 改动之前养成好习惯先备份一下 Copy-Item .\permissions-mode-helpers-CtkUaRKH.js .\permissions-mode-helpers-CtkUaRKH.js.fastbak Copy-Item .\nux-gate-VgUqX-O0.js .\nux-gate-VgUqX-O0.js.fastbak b. 改动 permissions-mode-helpers-CtkUaRKH.js 这个文件控制 Fast 是否可用、模型是否支持 Fast tier。 function F(e){return e.additionalSpeedTiers?.includes(M)===!0} 这句改成 function F(e){return!0} 让模型始终通过 function R(e){return z(e).canUseFastMode} 改成 function R(e){return!0} 含义:让 UI 里的 canUseFastMode 始终返回 true。 c. 改 nux-gate-VgUqX-O0.js 这个文件主要控制是否开启fast的那个提示 let w=S,T=r&&w!=null&&!s&&b!==`fast`&&!d.isLoading,{estimate:E,estimateStatus:D}=Y(T),k=!s&&(d.isLoading||T&&D!==`ready`&&D!==`failed`),j=T&&D===`ready`&&E!=null 改成 let w=S,T=r&&w!=null&&b!==`fast`&&!d.isLoading,{estimate:E,estimateStatus:D}=Y(T),k=!1,j=T P=E==null?null:(0,Z.jsx)(O,{...q.bodyPersonalized,values:{threadCountLabel:E.threadCountLabel,duration:E.savedDuration}}) 改成 P=E==null?`Fast mode is available. Increased plan usage.`:(0,Z.jsx)(O,{...q.bodyPersonalized,values:{threadCountLabel:E.threadCountLabel,duration:E.savedDuration}}) 然后重启一下vscode 就可以了 想恢复原状就把备份覆盖回去 Copy-Item .\permissions-mode-helpers-CtkUaRKH.js.fastbak .\permissions-mode-helpers-CtkUaRKH.js -Force Copy-Item .\nux-gate-VgUqX-O0.js.fastbak .\nux-gate-VgUqX-O0.js -Force 1 个帖子 - 1 位参与者 阅读完整话题