LinuxDo 新帖推送
185 subscribers
253K photos
315K links
Download Telegram
标题: 请教下怎么付款48个月team的这个账单
作者: #ning
板块: #开发调优
编号: 2152301
帖子: https://linux.do/t/topic/2152301
时间: 2026-05-11 10:54:25
摘要:
如题,求教一下

目前只有一张招商银行的visa卡,这个账单地址必须填写澳大利亚的地址吗,该怎么付款呢,帮帮孩子吧
标题: 智谱是不是又暗改了
作者: #WReck
板块: #搞七捻三
编号: 2152311
帖子: https://linux.do/t/topic/2152311
时间: 2026-05-11 10:55:08
摘要:
pro套餐今天用了下感觉额度下的飞快,看token统计里用了30M,但claude里的上下文估计也就用了170k
标题: 请教路由器科学上网的问题
作者: #dhshenc
板块: #搞七捻三
编号: 2152315
帖子: https://linux.do/t/topic/2152315
时间: 2026-05-11 10:56:10
摘要:
请教各位佬,TP-Link AX3000 WIFI6能实现 科学上网的功能吗?不行的话,都哪些路由器可以实现这个功能?
标题: 分享一下今天发现的通过uu远程ssh连接内网机器的方案
作者: #noise
板块: #开发调优
编号: 2152333
帖子: https://linux.do/t/topic/2152333
时间: 2026-05-11 10:57:54
摘要:
家里有一台闲置笔记本改的内网服务器,但有时候需要外网使用,之前在外面都是通过tailscale连接的,但是公司网和家里无法p2p连接,延迟很高,用起来很不爽
然后今天突然发现uu远程居然有内网穿透的功能:

但是uu现在还没有linux版本,于是直接装了win虚拟机(qemu,让codex帮我装的),然后在虚拟机上运行uu远程,
最后在本地的机器配置好端口映射,把本地端口映射到宿主机的22端口上:

然后本地就可以直接连接啦:
ssh 用户名@127.0.0.1 -p 端口

体验十分丝滑!
标题: 关于开设中转站我的精神状态,我想说:我是否还在人间?
作者: #苏苏 OneToken.sh
板块: #搞七捻三
编号: 2152344
帖子: https://linux.do/t/topic/2152344
时间: 2026-05-11 10:59:04
摘要:
直接贴图:



还有其他的 环境删了 我就不贴图了

5.9买的GPT Pro今天封的:

以及之前买的1天就封


等等等等,包括在我QQ群的佬们也知道,9号那天开了5个Claude,全2小时内阵亡。
昨天不信邪,又开了一个号,在群友用了1小时后,漏头秒。
重点来了,在我没开启封控中心之前,一直以为运气不好,直到今天加入了OpenAI的审计API


本站自打成立就一直采用官方订阅的正价号,从不采用低价、漏洞、礼品卡等任何不稳定的方式,就是想保证用户体验。我们开始定价GPT-5.5 3块/M,然后降价到2,又降价到1.5,不是为了赚的多吸引用户,而是因为我们觉得能控制住成本,尽可能让大家得到优惠,但是怎么总有这种**?我不知道出于什么心理?我十分不理解,我写这篇文章时候感到非常气愤与不理解。
标题: gpt business的chatgpt席位的codex用量怎么算的?
作者: #yishun
板块: #搞七捻三
编号: 2152364
帖子: https://linux.do/t/topic/2152364
时间: 2026-05-11 11:00:58
摘要:
我这边有2个车位,自己用的是chatgpt席位,我感觉我都没有开始用codex啊,用这么快?怎么换算成美元余额,百分比不够明显?还有没有其他换算单位?麻烦佬友解释一下?
标题: 求助gpt接码
作者: #一摩尔氚
板块: #开发调优
编号: 2152365
帖子: https://linux.do/t/topic/2152365
时间: 2026-05-11 11:00:59
摘要:
rt.

可以口令红包付钱。求求佬友们。有点急
标题: 一个自用的图片拼接工具(网页版)
作者: #𝓕-𝓓𝓻𝓸𝓲𝓭
板块: #搞七捻三
编号: 2152369
帖子: https://linux.do/t/topic/2152369
时间: 2026-05-11 11:01:25
摘要:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>图片拼接工具</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 20px;
}

.container {
max-width: 1200px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
overflow: hidden;
}

header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 30px;
text-align: center;
}

header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}

header p {
opacity: 0.9;
font-size: 1.1em;
}

.main-content {
display: flex;
gap: 30px;
padding: 30px;
}

.left-panel {
flex: 1;
min-width: 300px;
}

.right-panel {
flex: 2;
min-width: 500px;
}

.section {
background: #f8f9fa;
border-radius: 15px;
padding: 25px;
margin-bottom: 20px;
}

.section h2 {
color: #333;
margin-bottom: 20px;
font-size: 1.3em;
display: flex;
align-items: center;
gap: 10px;
}

.section h2::before {
content: '';
width: 4px;
height: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 2px;
}

/* 上传区域 */
.upload-area {
border: 3px dashed #ddd;
border-radius: 15px;
padding: 40px 20px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
background: white;
}

.upload-area:hover {
border-color: #667eea;
background: #f0f4ff;
}

.upload-area.dragover {
border-color: #667eea;
background: #e8eeff;
transform: scale(1.02);
}

.upload-icon {
font-size: 60px;
margin-bottom: 15px;
}

.upload-text {
color: #666;
font-size: 1.1em;
}

.upload-hint {
color: #999;
font-size: 0.9em;
margin-top: 10px;
}

input[type="file"] {
display: none;
}

/* 布局选项 */
.layout-options {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}

.layout-option {
background: white;
border: 2px solid #e0e0e0;
border-radius: 12px;
padding: 15px;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
}

.layout-option:hover {
border-color: #667eea;
transform: translateY(-2px);
}

.layout-option.active {
border-color: #667eea;
background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
}

.layout-preview {
display: flex;
justify-content: center;
align-items: center;
height: 50px;
margin-bottom: 10px;
}

.layout-preview .box {
background: linear-gradient(135d
标题: 求推 Obsidian好用的模板和插件
作者: #mengdc
板块: #开发调优
编号: 2152382
帖子: https://linux.do/t/topic/2152382
时间: 2026-05-11 11:02:50
摘要:
各位大佬 有没有很好用的Obsidian的模版和插件使用的
标题: 各位佬,ChatGPT这是怎么了,上传不了文件?
作者: #刘德发
板块: #开发调优
编号: 2152389
帖子: https://linux.do/t/topic/2152389
时间: 2026-05-11 11:03:31
摘要:
今早八点多开始,上传不了文件,会一直卡着,然后报错:“未知错误”
标题: 我觉得ai code的发展会让程序员的水平拉开更大的差距
作者: #黑色幽默
板块: #搞七捻三
编号: 2152400
帖子: https://linux.do/t/topic/2152400
时间: 2026-05-11 11:04:23
摘要:
想想现在ai 发展这么迅猛,写代码的门槛越来越低,以后可能更多的都是傻瓜式操作,大家都不需要去理解底层的东西了,所以普遍的技术能力会退化,和那些对代码有兴趣愿意钻研底层的人的差距会拉开更多
标题: 618智能产品采购建议
作者: #wpthad
板块: #搞七捻三
编号: 2152413
帖子: https://linux.do/t/topic/2152413
时间: 2026-05-11 11:05:34
摘要:
马上618了,佬友们有没有比较好用的智能产品推荐,主要是生活类的,能省力或者省时间的