V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  faoisdjioga  ›  全部回复第 1 页 / 共 2 页
回复总数  32
1  2  
2 天前
回复了 faoisdjioga 创建的主题 OpenAI [吐槽] Codex 使用方法
@TimePPT 好主意!
2 天前
回复了 faoisdjioga 创建的主题 OpenAI [吐槽] Codex 使用方法
@paopjian 我纯粹是为了装 X 用的。
2 天前
回复了 faoisdjioga 创建的主题 OpenAI [吐槽] Codex 使用方法
@zhonghao01 我确实告诉他我改了代码,让他不要改(i have change something, notice it, do not update what i have changed)。
反思了一下我自己,但是我没有和他说重新阅读。可能是这个方向有偏差,印象中 codex 好你没有执行 [重新读代码] 这个动作
2 天前
回复了 faoisdjioga 创建的主题 OpenAI [吐槽] Codex 使用方法
聪明想让我骂自己就开始没有做好规划

1. Try to read the parameter named fccut from self.params (self.get('fccut', …)).
2. If fccut is not set, fall back to self.get('fc_cut', 2 ** 0.5)—we look for fc_cut, and if that also isn’t set, use the
default 2 ** 0.5 (~1.414).
3. Wrap the final value in float(...) so the cutoff is always stored as a Python float.

So it supports both spellings (fccut from older configs, fc_cut from newer ones) while keeping the same default.
2 天前
回复了 faoisdjioga 创建的主题 OpenAI [吐槽] Codex 使用方法
MOHTER FUCKER! MOHTER FUCKER!



› mother fucker, you udpate my build reference, i told you not update, just write logs, did you update it?


• I did adjust build_reference beyond just adding log lines earlier (counts-layer check, filtering missing columns, summary,
etc.). If you want it reverted to your previous logic and only add logging, let me know and I’ll roll it back to your version
before making further changes.
2 天前
回复了 faoisdjioga 创建的主题 OpenAI [吐槽] Codex 使用方法
i see what you are getting. [Pasted Content 2101 chars] this is template, you code put function outside if__name__==__mian__ parenthesis, that is not what i want. also do not write you own fucntion, just copy what is in template, update the details params that is method specfic is fine

我说的不清楚嘛
@NickLuan 服务器是公司内部的计算服务器,因此没有您说的这个问题。运营商的服务器没有用过,不太清楚
@NickLuan 刚刚我理解错了。服务器是在国内。 代理是在国外。
@NickLuan 国外。走的 trojan-go
用他,注意是在 Remote-Server
{
"http.proxy": "http://127.0.0.1:1080",
"http.proxyStrictSSL": false,
"http.systemCertificates": false
}
# 1. Create a global proxy agent file
mkdir -p ~/.vscode-server/extensions
cat > ~/.vscode-server/extensions/proxy-agent.js <<'EOF'
const { setGlobalDispatcher, ProxyAgent } = require('undici');
const proxy = process.env.HTTPS_PROXY || process.env.HTTP_PROXY;
if (proxy) {
console.log('[VSCode Proxy] Using proxy:', proxy);
setGlobalDispatcher(new ProxyAgent(proxy));
}
EOF


# 2. Export proxy and Node options globally
echo 'export HTTP_PROXY="socks5://127.0.0.1:1080"' >> ~/.bashrc
echo 'export HTTPS_PROXY="socks5://127.0.0.1:1080"' >> ~/.bashrc
echo 'export NODE_OPTIONS="--require ~/.vscode-server/extensions/proxy-agent.js"' >> ~/.bashrc
source ~/.bashrc


因为没有 root ,chatgpt 给了我一个方式成功了。chatgpt 的解释为

🧠 1. What the problem really was

When you run VS Code Remote SSH, the “editor” part runs on your Mac,
but the extensions (ChatGPT, Copilot, Supermaven, R, etc.) run on the remote Linux server inside a Node.js process called the extension host:

VSCode (Mac)
└── SSH tunnel
└── vscode-server (Ubuntu)
└── node --type=extensionHost
└── openai.chatgpt-0.4.19-linux-x64


That Node process makes its own outbound HTTPS calls (to api.openai.com, etc.).
By default, it doesn’t inherit your system or VS Code proxy because:

VS Code starts that process with --useHostProxy=false (no host proxy forwarding)

Node’s internal HTTP client ignores http.proxy from VS Code settings

Therefore → all extension network traffic bypasses your proxy

So the ChatGPT / CodeX extension couldn’t reach the Internet unless the server itself had open access.
@jayeli 服务端我也挂了代理服务,我想要是的如何让在服务端的 codex 插件使用这个代理。

目前情况上,在通过 remote ssh 链接到服务端之后,服务端的 codex 插件好像用不了。
81 天前
回复了 faoisdjioga 创建的主题 Claude 如何贫穷的使用 CCR
@xiaket 已经用上,先试试。 目前使用配置为。
export ANTHROPIC_MODEL=deepseek-reasoner
export ANTHROPIC_SMALL_FAST_MODEL=deepseek-chat

关于这个使用,您还有什么调教经验可以分享嘛!
81 天前
回复了 faoisdjioga 创建的主题 Claude 如何贫穷的使用 CCR
@javalaw2010 Okay ,谢谢。我做数据的,主要是 python/R 。
81 天前
回复了 faoisdjioga 创建的主题 Claude 如何贫穷的使用 CCR
@xiaket 考虑一切便宜好用的。这个我先了解一下
86 天前
回复了 faoisdjioga 创建的主题 macOS 苹果系统复制内容会失败嘛?
有些工作场景很影响体验,超级差!尤其是在做 ppt.时候。组图特别头疼!
100 天前
回复了 GaryLee 创建的主题 程序员 目前最好用的 AI 补全插件是哪个?
@alleluya 目前只用过 windsurf 和 cursor ,听说 augment code 很厉害,但是没用过
108 天前
回复了 GaryLee 创建的主题 程序员 目前最好用的 AI 补全插件是哪个?
用过 windsurf 和 cursor ,觉得 windsurf 比 cusor 好。
我的代码和数据关联性很强,补全效果都不会太好。
1. cusor 会一下出很多补完,基本是都不对。windsurf 会根据自己写的代码补全,效果会好一些,
2. 在这方面的体验上来说, windsurf 会好很多,cursor 过多的错误补全会很影响写代码的逻辑,尤其是写一些数据挖掘性的代码。
要不要加个 Attention 试试呢?简单的加一个加权 Attention layer 就行,或者加一个 transformer encoder layer 呢? 我之前在做 NLP 时候遇到类似的瓶颈,加上 Attention 会好一些
151 天前
回复了 faoisdjioga 创建的主题 Linux NAS 磁盘挂载 symlinks error
@ntedshen webadv 还没尝试过,我后续测试一下。 “跑挂载盘上做符号链接” 是我使用的软件有这个操作。之前我的解决方法是把数据拷贝到系统上,跑这个程序,然后再把结果 copy to nas.

我使用的软件比较多,有些在 ubuntu 上,有些在 windows 上。因此我软件统一安装在系统上,数据全放在 nas 上通路网络挂载。
1  2  
关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   Solana   ·   2763 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 24ms · UTC 14:05 · PVG 22:05 · LAX 06:05 · JFK 09:05
♥ Do have faith in what you're doing.