标题: 读博怎么建立一种“老板提的课题我都能做出来”的信念
作者: #wangjx
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783088
时间: 2026-03-19 16:12:39
摘要:
作者: #wangjx
板块: #搞七捻三
编号:
1783088帖子: https://linux.do/t/topic/1783088
时间: 2026-03-19 16:12:39
摘要:
读博这件事,如果对自己课题没信念,是肯定做不好的;但如果自己真没那个实力或者课题本身就是大坑,信念就显得憨傻…
标题: 有没有学编程的同学,帮帮忙
作者: #FU JIE
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783092
时间: 2026-03-19 16:13:05
摘要:
作者: #FU JIE
板块: #搞七捻三
编号:
1783092帖子: https://linux.do/t/topic/1783092
时间: 2026-03-19 16:13:05
摘要:
有没有学编程的同学,帮帮忙
写了一上午的代码,运行起来一直报错,找不到原因,不知道怎么解决,谁帮看一下,以下是报错信息:
Exception Error Syntax Unexpected string:KFC Crazy Thursday need 50RMB
标题: 分享一个codex、openclaw的url+key,可用5.3/5.4模型,100刀。
作者: #linmlxg
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1783100
时间: 2026-03-19 16:14:01
摘要:
作者: #linmlxg
板块: #福利羊毛
编号:
1783100帖子: https://linux.do/t/topic/1783100
时间: 2026-03-19 16:14:01
摘要:
config.toml配置如下:
model_provider = “OpenAI”
model = “gpt-5.4”
review_model = “gpt-5.4”
model_reasoning_effort = “xhigh”
disable_response_storage = true
network_access = “enabled”
windows_wsl_setup_acknowledged = true
model_context_window = 1000000
model_auto_compact_token_limit = 900000
[model_providers.OpenAI]
name = “OpenAI”
base_url = “tokenx24.com”
wire_api = “responses”
requires_openai_auth = true
auth.json配置如下:
{
“OPENAI_API_KEY”: “sk-4e8a815e4cf9209f8f601fc6d85934c1243a769ca37be4765fcb75214f5c42fa”
}
标题: 合肥警方通报:男子捏造散布某科技公司裁员30%虚假信息被行拘
作者: #today_no_bug
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1783109
时间: 2026-03-19 16:15:14
摘要:
作者: #today_no_bug
板块: #前沿快讯
编号:
1783109帖子: https://linux.do/t/topic/1783109
时间: 2026-03-19 16:15:14
摘要:
合肥警方通报:男子捏造散布某科技公司裁员30%虚假信息被行拘
标题: delete codex invalidated-auth 401 json
作者: #zzdk
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1783120
时间: 2026-03-19 16:16:52
摘要:
作者: #zzdk
板块: #开发调优
编号:
1783120帖子: https://linux.do/t/topic/1783120
时间: 2026-03-19 16:16:52
摘要:
just run “python delete_401_auth.py”
#!/usr/bin/env python3
"""Scan Codex auth files, report HTTP 401/no-limit credentials, and
delete invalidated-auth 401 entries by default.
This script ports key parts from CLIProxyAPI's Codex implementation:
- Default Codex base URL from `internal/runtime/executor/codex_executor.go`
- Codex request headers style from `applyCodexHeaders`
- Refresh-token flow from `internal/auth/codex/openai_auth.go`
Usage examples:
python delete_401_auth.py --auth-dir ./auths
python delete_401_auth.py --auth-dir ~/.cli-proxy-api --refresh-before-check
python delete_401_auth.py --auth-dir ./auths --output-json
python delete_401_auth.py --auth-dir ./auths --yes
python delete_401_auth.py --auth-dir ./auths --no-delete-invalid-auth
"""
from __future__ import annotations
import argparse
import json
import os
import shutil
import sys
import time
from concurrent.futures import ThreadPoolExecutor, as_completed
from dataclasses import asdict, dataclass
from pathlib import Path
from typing import Any, Callable, Iterable
from urllib import error, parse, request
DEFAULT_CODEX_BASE_URL = "https://chatgpt.com/backend-api/codex"
DEFAULT_REFRESH_URL = "https://auth.openai.com/oauth/token"
DEFAULT_AUTH_DIR = "~/.cli-proxy-api"
DEFAULT_CLIENT_ID = "app_EMoamEEZ73f0CkXaXp7hrann"
DEFAULT_VERSION = "0.98.0"
DEFAULT_USER_AGENT = "codex_cli_rs/0.98.0 (python-port)"
DEFAULT_WORKERS = min(32, max(4, (os.cpu_count() or 1) * 4))
DEFAULT_RETRY_ATTEMPTS = 3
DEFAULT_RETRY_BACKOFF = 0.6
ANSI_RESET = "\033[0m"
ANSI_BOLD = "\033[1m"
ANSI_DIM = "\033[2m"
ANSI_RED = "\033[31m"
ANSI_GREEN = "\033[32m"
ANSI_YELLOW = "\033[33m"
ANSI_CYAN = "\033[36m"
ANSI_MAGENTA = "\033[35m"
DEFAULT_EXCEEDED_DIR_NAME = "exceeded"
_TRANSIENT_HTTP_STATUS = {408, 429, 500, 502, 503, 504}
@dataclass
class CheckResult:
file: str
provider: str
email: str
account_id: str
status_code: int | None
unauthorized_401: bool
invalidated_auth_401: bool
no_limit_unlimited: bool
quota_exceeded: bool
quota_resets_at: int | None
error: str
response_preview: str
@dataclass
class DeleteError:
file: str
error: str
def _is_tty_stdout() -> bool:
return hasattr(sys.stdout, "isatty") and sys.stdout.isatty()
def _supports_color(disabled: bool) -> bool:
return (not disabled) and _is_tty_stdout() and ("NO_COLOR" not in os.environ)
def _paint(text: str, *codes: str, enabled: bool) -> str:
if not enabled or not codes:
return text
return "".join(codes) + text + ANSI_RESET
def _truncate(text: str, limit: int) -> str:
if limit <= 0 or len(text) <= limit:
return text
if limit <= 3:
return "." * limit
return text[: limit - 3] + "..."
class _ProgressDisplay:
def __init__(self, enabled: bool) -> None:
self.enabled = enabled
self._last_len = 0
self._finished = False
def update(self, current: int, total: int, path: Path) -> None:
if not self.enabled or total <= 0:
return
width = shutil.get_terminal_size(fallback=(100, 20)).columns
bar_width = max(12, min(30, width - 52))
percent = int((current * 100) / total)
filled = int((current * bar_width) / total)
bar = "#" * filled + "-" * (bar_width - filled)
message = f"[{bar}] {current}/{total} {percent:>3}% {_truncate(path.name, 28)}"
message = _truncate(message, max(10, width - 1))
padding = " " * max(0, self._last_len - len(message))
sys.stdout.write(f"\r{message}{padding}")
sys.stdout.flush()
self._last_len = len(message)
def finish(self) -> None:
if not self.enabled or self._finished:
return
self._finished = True
sys.stdout.write("\n")
sys.stdout.flush()
def _first_non_empty_str(values: Iterable[Any]) -> str:
for v
标题: 老板,什么叫既没有肉燥也没有饭饭面骨当
作者: #linjinpeng
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783123
时间: 2026-03-19 16:17:01
摘要:
作者: #linjinpeng
板块: #搞七捻三
编号:
1783123帖子: https://linux.do/t/topic/1783123
时间: 2026-03-19 16:17:01
摘要:
标题: 今天的反重力 opus 降智降的离谱..
作者: #qingwen
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1783127
时间: 2026-03-19 16:17:39
摘要:
作者: #qingwen
板块: #开发调优
编号:
1783127帖子: https://linux.do/t/topic/1783127
时间: 2026-03-19 16:17:39
摘要:
一点点小问题都答非所问,活脱脱的像个傻子,还不如豆包。
标题: 如何查看 Claude Code / Pi 等 Agent 发送给大模型的 System Prompt 与请求内容
作者: #eason_lx
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1783128
时间: 2026-03-19 16:17:54
摘要:
作者: #eason_lx
板块: #开发调优
编号:
1783128帖子: https://linux.do/t/topic/1783128
时间: 2026-03-19 16:17:54
摘要:
我在使用 claude code、pi 等 agent 时很好奇 agent 每次发送给大模型的请求是怎样的,比如里面的system prompt 的内容。请问各位大佬有没有什么好的方式可以做到。
标题: 刚发现antigravity可以控制浏览器
作者: #Ben2008
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1783131
时间: 2026-03-19 16:18:21
摘要:
作者: #Ben2008
板块: #开发调优
编号:
1783131帖子: https://linux.do/t/topic/1783131
时间: 2026-03-19 16:18:21
摘要:
然后自动滚动到某个地方,点击鼠标切换不同的tab。。。吓了我一跳。
标题: 反重力日常招笑
作者: #ShutUp
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783139
时间: 2026-03-19 16:19:09
摘要:
作者: #ShutUp
板块: #搞七捻三
编号:
1783139帖子: https://linux.do/t/topic/1783139
时间: 2026-03-19 16:19:09
摘要:
给我解释下啥叫 undefined Al Credits
标题: QClaw和WorkBuddy的关系和区别?
作者: #霁蓝
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783141
时间: 2026-03-19 16:19:21
摘要:
作者: #霁蓝
板块: #搞七捻三
编号:
1783141帖子: https://linux.do/t/topic/1783141
时间: 2026-03-19 16:19:21
摘要:
这俩都是腾讯出的,具体有啥区别啊。在纠结试哪个或者要不要试
标题: 用过的最好用的AI/Agent生成PPT方案/方式
作者: #Eieai
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1783151
时间: 2026-03-19 16:21:12
摘要:
作者: #Eieai
板块: #开发调优
编号:
1783151帖子: https://linux.do/t/topic/1783151
时间: 2026-03-19 16:21:12
摘要:
目前,感觉kimi的PPT生成效果还挺不错的,有没有自己调试、mcp/Skills工具等,自建的,分享一下,大佬们
标题: 佬友们,怎么才能升到2级?
作者: #Echo
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783152
时间: 2026-03-19 16:21:21
摘要:
作者: #Echo
板块: #搞七捻三
编号:
1783152帖子: https://linux.do/t/topic/1783152
时间: 2026-03-19 16:21:21
摘要:
来L站10来天了,学习了很多智能体经验,享受了很多公益站福利,
标题: 当我用上了Cursor的agent 一会儿额度就没了,这能用得起
作者: #DaShan
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783161
时间: 2026-03-19 16:23:02
摘要:
作者: #DaShan
板块: #搞七捻三
编号:
1783161帖子: https://linux.do/t/topic/1783161
时间: 2026-03-19 16:23:02
摘要:
按照这个速度 我感觉我一天能用 5000万-1亿token。 这正常吗
标题: 有没有好用的 ai聊天
作者: #echo
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783162
时间: 2026-03-19 16:23:04
摘要:
作者: #echo
板块: #搞七捻三
编号:
1783162帖子: https://linux.do/t/topic/1783162
时间: 2026-03-19 16:23:04
摘要:
xxx是第一放松方式
标题: 反重力opus渠道彻底拉闸
作者: #jy chou
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783164
时间: 2026-03-19 16:23:26
摘要:
作者: #jy chou
板块: #搞七捻三
编号:
1783164帖子: https://linux.do/t/topic/1783164
时间: 2026-03-19 16:23:26
摘要:
轻度用户,上了Ultra车后没有出现过额度不够或者服务中断的情况。结果今天下午开始反复出现中断retry的情况,提示服务器太忙,模型容量耗尽。
地主家也没余粮了啊。
标题: 用mimo v2 pro free 搞一个好玩的东西
作者: #ocean-zhc
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783174
时间: 2026-03-19 16:24:02
摘要:
作者: #ocean-zhc
板块: #搞七捻三
编号:
1783174帖子: https://linux.do/t/topic/1783174
时间: 2026-03-19 16:24:02
摘要:
模型
opencode mimo v2 pro free
提示词:
请创建一个基于Three.js+WebGL的交互式receipt UI。小票需要模拟真实纸张的物理效果,而不是普通的平面动画。
必须满足以下要求:
使用Verletintegration或粒子约束系统(particle constraint system)实现纸张模拟。
小票可通过鼠标左键抓取、拖拽、弯曲、折叠,并产生自然的摆动、褶皱和回弹效果。
顶部边缘必须整条固定或整条约束,始终保持笔直且水平。
严禁只固定顶部3个点(左/中/右)。
严禁顶部中间出现凹陷、悬挂、下垂或“晾衣绳”效果。小票主体(尤其是下半部分)必须保持柔软的纸张形变能力。
材质表现应接近热敏纸(thermal receipt paper),而不是布料、塑料或金属。小票表面需要显示搞笑的3D图形术语购物清单。背景为白色,带有轻微阴影和高光,整体具有真实重量感。
输出要求:
输出完整HTML+CSS+JS,代码可直接在浏览器运行同时进行适当的性能优化,保证在桌面浏览器中流畅运行
运行效果:(下载之后将后缀修改位html 双击打开即可查看)
录制的gif 太大了,上传不了,
receipt-ui.docx (13.9 KB)
标题: 求电脑音响推荐~
作者: #风中追风
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783175
时间: 2026-03-19 16:24:03
摘要:
作者: #风中追风
板块: #搞七捻三
编号:
1783175帖子: https://linux.do/t/topic/1783175
时间: 2026-03-19 16:24:03
摘要:
帮导师干了半年杂活,导师也是良心发现了好吧,准备送我个礼物,800以下的。
目前看中了漫步者sn300,佬友们有更推荐的吗
标题: 有没有发现claude更新78后any消费额度比以前大很多
作者: #sxdgx
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1783177
时间: 2026-03-19 16:24:36
摘要:
作者: #sxdgx
板块: #搞七捻三
编号:
1783177帖子: https://linux.do/t/topic/1783177
时间: 2026-03-19 16:24:36
摘要:
cc更新78以后用any随便跑跑就耗费25dollar,以前用起来感觉挺慢的
标题: 分享一些codex号
作者: #crush
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1783181
时间: 2026-03-19 16:25:34
摘要:
作者: #crush
板块: #福利羊毛
编号:
1783181帖子: https://linux.do/t/topic/1783181
时间: 2026-03-19 16:25:34
摘要:
https://drive.google.com/file/d/1f8GnwRR-yMH21n-CIst-GMLGPUchsmmM/view?usp=sharing
标题: 小米的大模型有人测试了吗
作者: #xingchenxu
板块: #国产替代
编号:
帖子: https://linux.do/t/topic/1783183
时间: 2026-03-19 16:25:41
摘要:
作者: #xingchenxu
板块: #国产替代
编号:
1783183帖子: https://linux.do/t/topic/1783183
时间: 2026-03-19 16:25:41
摘要:
听说免费体验一周,目前都哪些渠道可以体验不,有人测试过了吗