LinuxDo 新帖推送
188 subscribers
254K photos
317K links
Download Telegram
标题: 开车犯困的时候大家都是怎么解决的?
作者: #球儿
板块: #搞七捻三
编号: 1082583
帖子: https://linux.do/t/topic/1082583
时间: 2025-10-24 01:12:45
摘要:
如题,我发现我开车的时候总是突然困,尤其是戴口罩的时候,突然就困了,困到什么程度呢?就是秒关机那种,这是不是病啊 
好吓人啊这种事情
大家怎么应对这种情况?
标题: 【求问】QQ邮箱能用QQ不能登,怎么解
作者: #五竹
板块: #搞七捻三
编号: 1082586
帖子: https://linux.do/t/topic/1082586
时间: 2025-10-24 01:14:35
摘要:
现象是这样的:
QQ小号登录不上,忘了密码了,找回要让N个好友发消息,很难做到。
但是,QQ小号的邮箱,在手机上(安卓,华为)QQ邮箱的app上登录着,一直没退,接、发邮件啥的都正常。
想问下万能的佬友,这种情况有没有办法找回我的QQ号。 thx~~~
标题: 求助codex不能正常使用
作者: #yi R
板块: #开发调优
编号: 1082625
帖子: https://linux.do/t/topic/1082625
时间: 2025-10-24 01:48:10
摘要:
今天都不能正常使用,我上下文都没有多长就出现了这个问题,只能开新窗口,对话稍微长点,又出现这个问题,根本使用不了,前几天都正常的
标题: cursor pro 账号密码5个(10月24日第五期)
作者: #ywxc
板块: #福利羊毛
编号: 1082632
帖子: https://linux.do/t/topic/1082632
时间: 2025-10-24 01:53:42
摘要:
抽奖主题: cursor pro 账号密码5个(10月24日第五期)
第四期忘记开抽奖了,无法关闭话题,这期一起补上。
奖品详情:
[奖品 1]:cursor pro 账号密码5个(一位中奖者1个,抽五位)
活动时间:
开始时间:Fri, Oct 24, 2025 11:20 PM CST
截止时间:Fri, Oct 24, 2025 11:59 PM CST
参与方式:
在本帖下任意回复
抽奖规则:
每位用户仅允许参与一次。
使用官方抽奖工具随机抽取中奖者。
标题: 有没有好用的推特帖子管理软件?
作者: #ori
板块: #搞七捻三
编号: 1082643
帖子: https://linux.do/t/topic/1082643
时间: 2025-10-24 02:06:51
摘要:
推特本身没有什么管理软件,我平时会收藏点赞很多帖子,但是管理起来非常麻烦,有没有可以推荐的我用的是firefox浏览器,我看chrome下面有一个管理工具,但是不适用.
最好有搜索功能和标签功能
标题: Stitch+AIstudioBuild组合拳真的太爽了
作者: #CJACK
板块: #开发调优
编号: 1082646
帖子: https://linux.do/t/topic/1082646
时间: 2025-10-24 02:08:20
摘要:
今晚突发奇想让stitch出来的原型丢给build看看会怎么样。
果然谷歌这套组合拳工具,让你半小时不到能不用写一点代码把项目MVP落地







这个效果爽到我了,还得是专门的工具调教的写前端的ai工具stitch,配合build新版本界面甚至纯手机都能开发项目
今晚只是抱着试一试的态度,后面还要重新微调开发,不过这是一次性直出的效果,已经很惊艳了
标题: 夸克已整合qwen3 max
作者: #114yiyis
板块: #前沿快讯
编号: 1082653
帖子: https://linux.do/t/topic/1082653
时间: 2025-10-24 02:14:23
摘要:
夸克AI助手模式可无限使用通义Qwen最新模型。不同于普通聊天对话AI,它与夸克App原生功能深度融合,用户在对话中不仅可进行复杂问答,还能直接调用搜索、AI相机、拍照搜题、AI写作、翻译、电话等功能,实现从提问到行动的一体化体验。
标题: 来个侦探,这个老师傅和这么多大美女合照,是不是ai合成的??
作者: #老王
板块: #搞七捻三
编号: 1082654
帖子: https://linux.do/t/topic/1082654
时间: 2025-10-24 02:16:13
摘要:
有没有人能看出来,我放了几个到 GPT5 检查,说看不出ai 合成。
id “金子黄” 或者 点击网页版




xiaohongshu.com





小红书
标题: 稍微優化了一下一個BILI 的字幕下載腳本 知道能幹嘛的就知道
作者: #善解人意屬實有點害羞
板块: #开发调优
编号: 1082658
帖子: https://linux.do/t/topic/1082658
时间: 2025-10-24 02:20:35
摘要:
// ==UserScript==
// @name bilibili 字幕下载器
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Download subtitles from Bilibili videos using the AI assistant feature and clicking the subtitle list
// @author Claude
// @match https://www.bilibili.com/video/*
// @grant none
// @license MIT
// ==/UserScript==

(function() {
'use strict';

// Wait for the video page to fully load before adding our button
window.addEventListener('load', function() {
// Add a small delay to ensure all elements are loaded
setTimeout(addDownloadButton, 2000);
});

// Function to add our download button to the page
function addDownloadButton() {
// Check if our button already exists to avoid duplicates
if (document.querySelector('#subtitle-download-container')) {
return;
}

// Create a floating button container
const downloadContainer = document.createElement('div');
downloadContainer.id = 'subtitle-download-container';
downloadContainer.style.position = 'fixed';
downloadContainer.style.left = '0';
downloadContainer.style.top = '50%';
downloadContainer.style.transform = 'translateY(-50%)';
downloadContainer.style.backgroundColor = 'rgba(251, 114, 153, 0.7)'; // Bilibili pink with transparency
downloadContainer.style.color = 'white';
downloadContainer.style.padding = '5px 8px'; // 50% of original padding
downloadContainer.style.borderRadius = '0 4px 4px 0';
downloadContainer.style.cursor = 'pointer';
downloadContainer.style.zIndex = '999';
downloadContainer.style.display = 'flex';
downloadContainer.style.alignItems = 'center';
downloadContainer.style.boxShadow = '2px 2px 10px rgba(0, 0, 0, 0.2)';
downloadContainer.style.transition = 'all 0.3s ease';
downloadContainer.style.fontSize = '12px'; // Smaller font size

// Create the icon element
const iconSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
iconSvg.setAttribute('width', '10'); // 50% of original size
iconSvg.setAttribute('height', '10'); // 50% of original size
iconSvg.setAttribute('viewBox', '0 0 24 24');
iconSvg.setAttribute('fill', 'none');
iconSvg.style.marginRight = '4px'; // 50% of original margin
iconSvg.id = 'subtitle-download-icon';

// Add SVG content for a download icon
iconSvg.innerHTML = `
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4C12.5523 4 13 4.44772 13 5V13.5858L15.2929 11.2929C15.6834 10.9024 16.3166 10.9024 16.7071 11.2929C17.0976 11.6834 17.0976 12.3166 16.7071 12.7071L12.7071 16.7071C12.3166 17.0976 11.6834 17.0976 11.2929 16.7071L7.29289 12.7071C6.90237 12.3166 6.90237 11.6834 7.29289 11.2929C7.68342 10.9024 8.31658 10.9024 8.70711 11.2929L11 13.5858V5C11 4.44772 11.4477 4 12 4ZM4 14C4.55228 14 5 14.4477 5 15V17C5 17.5523 5.44772 18 6 18H18C18.5523 18 19 17.5523 19 17V15C19 14.4477 19.4477 14 20 14C20.5523 14 21 14.4477 21 15V17C21 18.6569 19.6569 20 18 20H6C4.34315 20 3 18.6569 3 17V15C3 14.4477 3.44772 14 4 14Z" fill="white"/>
`;

// Add the icon to the container
downloadContainer.appendChild(iconSvg);

// Add text label
const textLabel = document.createElement('span');
textLabel.textContent = '下载字幕';
textLabel.style.fontSize = '12px'; // 50% of original font size
textLabel.id = 'subtitle-download-text';
downloadContainer.appendChild(textLabel);

// Add click event to the container
downloadContainer.addEventListener('click', extractAndDownloadSubtitles);

// Add the button to the body
document.body.appendChild(downloadContainer);

console.log('Subtitle downl
标题: 越想越气,号不要了也要挂你
作者: #White Black
板块: #搞七捻三
编号: 1082685
帖子: https://linux.do/t/topic/1082685
时间: 2025-10-24 02:53:31
摘要:
我提了一嘴户晨风

他立马让我给美国人当狗。

他认为观念不同就可以随意辱骂我

然后我违法社区规则发帖挂了他,有一人评论我料想结局:好斗

后来我那篇帖子被举报隐藏了,本来想着算了,等管理人员白天上号评判。
结果又有人让我当狗。

越想越气,号不要了。。。必须挂他!!!
标题: 站内好像只有Claude的中转价格整理,但没有codex的?
作者: #Az0809
板块: #搞七捻三
编号: 1082716
帖子: https://linux.do/t/topic/1082716
时间: 2025-10-24 03:17:33
摘要:
RT
看到有好多人整理中转站价格对比的时候 都是只对比Claude,为什么没有做codex中转价格对比的?是因为codex太便宜了 没必要吗?