标题: 大香蕉 | 韩老魔的快乐
作者: #宫廷玉液酒
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1227324
时间: 2025-11-27 17:41:45
摘要:
作者: #宫廷玉液酒
板块: #搞七捻三
编号:
1227324帖子: https://linux.do/t/topic/1227324
时间: 2025-11-27 17:41:45
摘要:
各位道友,韩老魔的快乐我们也能想象到啦 ~
Gemini team + 站内佬提供的提示词
紫灵
梅凝
慕佩灵
元瑶
银月
宋玉
柳玉
文思月
标题: 夸克 AI 眼镜出了
作者: #ghwolf
板块: #国产替代
编号:
帖子: https://linux.do/t/topic/1227327
时间: 2025-11-27 17:42:15
摘要:
作者: #ghwolf
板块: #国产替代
编号:
1227327帖子: https://linux.do/t/topic/1227327
时间: 2025-11-27 17:42:15
摘要:
刚看完 AK 的解说,看着效果比之前的那些实用性好很多啊。发货有点晚,有没有下单的佬?
标题: Any Router除了每日登录有什么增加积分的机制吗
作者: #web3_song
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1227329
时间: 2025-11-27 17:42:29
摘要:
作者: #web3_song
板块: #开发调优
编号:
1227329帖子: https://linux.do/t/topic/1227329
时间: 2025-11-27 17:42:29
摘要:
我看到有个人 有2万多额度,NB
标题: python算法私有化部署求教
作者: #cooljser
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1227332
时间: 2025-11-27 17:42:51
摘要:
作者: #cooljser
板块: #开发调优
编号:
1227332帖子: https://linux.do/t/topic/1227332
时间: 2025-11-27 17:42:51
摘要:
佬们,最近要把公司自研的 python 算法给客户私有化部署,一般如何加密&混淆呢?有现成的方案不?
标题: llm会话备份工具推荐
作者: #A.Ziegler
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1227336
时间: 2025-11-27 17:43:46
摘要:
作者: #A.Ziegler
板块: #开发调优
编号:
1227336帖子: https://linux.do/t/topic/1227336
时间: 2025-11-27 17:43:46
摘要:
请问大家如何备份、管理Chatgpt、Claude和gemini的会话的,尤其是不同类型的会话,有什么好用的软件推荐吗?
标题: 分享一个订阅链接。大佬们点点赞
作者: #covet9574
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1227356
时间: 2025-11-27 17:48:19
摘要:
作者: #covet9574
板块: #福利羊毛
编号:
1227356帖子: https://linux.do/t/topic/1227356
时间: 2025-11-27 17:48:19
摘要:
CDK分升不上去了额,各位佬友助力一下
https://peige.dpkj.qzz.io/dapei
标题: asu的邮箱会被删除吗?
作者: #liuweiqing
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1227367
时间: 2025-11-27 17:50:58
摘要:
作者: #liuweiqing
板块: #开发调优
编号:
1227367帖子: https://linux.do/t/topic/1227367
时间: 2025-11-27 17:50:58
摘要:
我这里怎么找不到邮箱了
标题: 分享一个golang chromedp单例开发的踩坑记录
作者: #戏子
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1227372
时间: 2025-11-27 17:51:27
摘要:
作者: #戏子
板块: #开发调优
编号:
1227372帖子: https://linux.do/t/topic/1227372
时间: 2025-11-27 17:51:27
摘要:
直接上代码,坑点在注释中已经详细标注出来了,chromedp基于ws协议通过底层的chrome自动化数据协议控制浏览器,实例的生命周期往往在复杂业务中被忽略,导致浏览器进程闪退,并且种因为生命周期结束回收资源造成的进程退出是完全没有日志可追查的,直到我重新搓了一份极简的demo做参照,才爬出来,爬了一个下午
package main
import (
"bufio"
"context"
"fmt"
"log"
"math"
"os"
"strings"
"sync"
"time"
"github.com/chromedp/cdproto/storage"
"github.com/chromedp/chromedp"
)
var (
browserOnce sync.Once
browserCtx context.Context
browserCancel context.CancelFunc
allocatorCancel context.CancelFunc
browserErr error
)
// launchBrowser 按官方推荐的 ExecAllocator 流程启动浏览器并开一个空白页。
// 这里的坑点:下面那个 WithTimeout + defer cancel 会直接把根 context 砍掉,浏览器生命周期被连坐,
// chromedp.Run 一结束就被 cancel,浏览器进程跟着闪退。就是这货导致你和 copy 版本行为不一致,记住了。
func launchBrowser() (context.Context, error) {
browserOnce.Do(func() {
log.Println("调试: 准备构建 ExecAllocatorOptions")
// 使用默认启动参数,非无头 + 禁 GPU,与 testchromedp 对齐
opts := append(chromedp.DefaultExecAllo
标题: 有没有Claude规划, Codex写后端, Gemini前端样式, Claude前端逻辑的MCP
作者: #Monika
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1227378
时间: 2025-11-27 17:52:08
摘要:
作者: #Monika
板块: #搞七捻三
编号:
1227378帖子: https://linux.do/t/topic/1227378
时间: 2025-11-27 17:52:08
摘要:
如果有, 那感觉无敌了
gemini3别的不说, 样式和识图这块真的强啊
标题: chatgpt突然弹窗说有一个月免费plus,你们看看有没有?
作者: #我素熊猫
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1227384
时间: 2025-11-27 17:53:21
摘要:
作者: #我素熊猫
板块: #福利羊毛
编号:
1227384帖子: https://linux.do/t/topic/1227384
时间: 2025-11-27 17:53:21
摘要:
https://chatgpt.com/
标题: 哈基米3.0怒骂GPT5.1是【不懂技术的万金油客服】!!!各位元芳佬友,你怎么看?
作者: #zzpk0
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1227391
时间: 2025-11-27 17:54:45
摘要:
作者: #zzpk0
板块: #搞七捻三
编号:
1227391帖子: https://linux.do/t/topic/1227391
时间: 2025-11-27 17:54:45
摘要:
Gemini 3.0 pro (学生pro版)
--------————————————–-我是华丽的分割线-------------—————-----------
ChatGPT 5.1pro (Team版)
哈哈,各位元芳来投个票吧~
(ps:另外和哈基米一个窗口对话长一点以后,就只能正确读取文字prompt信息了,发送图片直接已读乱回,读成最早发给这个对话窗口的图片了 )
Click to view the poll.
标题: 糟糕,出门没带耳机,下班路上屏蔽罩没了~
作者: #Michael J
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1227407
时间: 2025-11-27 17:57:32
摘要:
作者: #Michael J
板块: #搞七捻三
编号:
1227407帖子: https://linux.do/t/topic/1227407
时间: 2025-11-27 17:57:32
摘要:
看看今晚能不能碰到小忍的coser,然后全程闭目养神
标题: Perplexity 学生白嫖12个月pro?
作者: #leetype
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1227410
时间: 2025-11-27 17:57:44
摘要:
作者: #leetype
板块: #搞七捻三
编号:
1227410帖子: https://linux.do/t/topic/1227410
时间: 2025-11-27 17:57:44
摘要:
地区列表里居然有China,这是我没想到的。能不能过,有没有佬友试过?
标题: 这是为什么呢
作者: #Naruto
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1227411
时间: 2025-11-27 17:58:01
摘要:
作者: #Naruto
板块: #搞七捻三
编号:
1227411帖子: https://linux.do/t/topic/1227411
时间: 2025-11-27 17:58:01
摘要:
所以是为什么呢
标题: 请教一下,买了Gemini Enterprise 商业版,api咋弄呢?是不是要另外单独购买?
作者: #drfy
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1227417
时间: 2025-11-27 17:58:48
摘要:
作者: #drfy
板块: #搞七捻三
编号:
1227417帖子: https://linux.do/t/topic/1227417
时间: 2025-11-27 17:58:48
摘要:
在哪个位置呢,感觉好好混乱
标题: 【Gemini Business Team】我也来开个车,留邮箱,先到先得
作者: #epiphany
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1227428
时间: 2025-11-27 18:00:10
摘要:
作者: #epiphany
板块: #福利羊毛
编号:
1227428帖子: https://linux.do/t/topic/1227428
时间: 2025-11-27 18:00:10
摘要:
如题,先到先得!