标题: 有没有好用的推特帖子管理软件?
作者: #ori
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1082643
时间: 2025-10-24 02:06:51
摘要:
作者: #ori
板块: #搞七捻三
编号:
1082643帖子: https://linux.do/t/topic/1082643
时间: 2025-10-24 02:06:51
摘要:
推特本身没有什么管理软件,我平时会收藏点赞很多帖子,但是管理起来非常麻烦,有没有可以推荐的我用的是firefox浏览器,我看chrome下面有一个管理工具,但是不适用.
最好有搜索功能和标签功能
标题: Stitch+AIstudioBuild组合拳真的太爽了
作者: #CJACK
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1082646
时间: 2025-10-24 02:08:20
摘要:
作者: #CJACK
板块: #开发调优
编号:
1082646帖子: https://linux.do/t/topic/1082646
时间: 2025-10-24 02:08:20
摘要:
今晚突发奇想让stitch出来的原型丢给build看看会怎么样。
果然谷歌这套组合拳工具,让你半小时不到能不用写一点代码把项目MVP落地
这个效果爽到我了,还得是专门的工具调教的写前端的ai工具stitch,配合build新版本界面甚至纯手机都能开发项目
今晚只是抱着试一试的态度,后面还要重新微调开发,不过这是一次性直出的效果,已经很惊艳了
标题: 夸克已整合qwen3 max
作者: #114yiyis
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/1082653
时间: 2025-10-24 02:14:23
摘要:
作者: #114yiyis
板块: #前沿快讯
编号:
1082653帖子: https://linux.do/t/topic/1082653
时间: 2025-10-24 02:14:23
摘要:
夸克AI助手模式可无限使用通义Qwen最新模型。不同于普通聊天对话AI,它与夸克App原生功能深度融合,用户在对话中不仅可进行复杂问答,还能直接调用搜索、AI相机、拍照搜题、AI写作、翻译、电话等功能,实现从提问到行动的一体化体验。
标题: 来个侦探,这个老师傅和这么多大美女合照,是不是ai合成的??
作者: #老王
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1082654
时间: 2025-10-24 02:16:13
摘要:
作者: #老王
板块: #搞七捻三
编号:
1082654帖子: https://linux.do/t/topic/1082654
时间: 2025-10-24 02:16:13
摘要:
有没有人能看出来,我放了几个到 GPT5 检查,说看不出ai 合成。
id “金子黄” 或者 点击网页版
xiaohongshu.com
小红书
标题: 稍微優化了一下一個BILI 的字幕下載腳本 知道能幹嘛的就知道
作者: #善解人意屬實有點害羞
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1082658
时间: 2025-10-24 02:20:35
摘要:
作者: #善解人意屬實有點害羞
板块: #开发调优
编号:
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
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1082685
时间: 2025-10-24 02:53:31
摘要:
作者: #White Black
板块: #搞七捻三
编号:
1082685帖子: https://linux.do/t/topic/1082685
时间: 2025-10-24 02:53:31
摘要:
我提了一嘴户晨风
他立马让我给美国人当狗。
他认为观念不同就可以随意辱骂我
然后我违法社区规则发帖挂了他,有一人评论我料想结局:好斗
后来我那篇帖子被举报隐藏了,本来想着算了,等管理人员白天上号评判。
结果又有人让我当狗。
越想越气,号不要了。。。必须挂他!!!
标题: 站内好像只有Claude的中转价格整理,但没有codex的?
作者: #Az0809
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1082716
时间: 2025-10-24 03:17:33
摘要:
作者: #Az0809
板块: #搞七捻三
编号:
1082716帖子: https://linux.do/t/topic/1082716
时间: 2025-10-24 03:17:33
摘要:
RT
看到有好多人整理中转站价格对比的时候 都是只对比Claude,为什么没有做codex中转价格对比的?是因为codex太便宜了 没必要吗?
标题: 酒后日记【真情实感】
作者: #咕噜大王
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1082733
时间: 2025-10-24 03:46:43
摘要:
作者: #咕噜大王
板块: #搞七捻三
编号:
1082733帖子: https://linux.do/t/topic/1082733
时间: 2025-10-24 03:46:43
摘要:
喝醉酒了,我坚持在酒后写日记也没几天,俗话说,酒后吐真言,这篇日记是朋友圈里私密的文字,打算老了之后回味的,反正你们不认识我,发出来看看吧。
感觉自己是分享欲爆棚了
2025,10月24,星期五,天气很冷了,广东速冻,今天我买的cs饰品跌了一半,直接腰斩了,忍痛割爱,对v社的背刺感到失望和愤怒,究其原因,我还不够富有,说到这里,感觉自己还是半吊子,当初看了尼采,觉得生活没有意义,一切不过一死,但遇到挫折的时候,却免不了被情绪左右,钱财乃身外之物,生不带来,死不带去,学舌倒简单,要真正达到这个境界的话,那才是真正的虚无主义,也许是荒诞主义也说不定,人类是复杂的动物,不能用正确或错误来评判一件事情,世界是一道精致的黑~正如我当初18岁的时候,回看我13岁时的QQ空间,只相隔五年,却觉得13岁的自己很傻逼,18岁的时候,觉得自己已经深谙世事,而后删掉了所有的qq说说,20岁回望时,想回味却已经看不到了,只觉得18岁的自己愚不可及。正映了那句,人不可能同时拥有青春和对青春的感受,也许到了30岁,我也会嘲笑如今写这篇日记的自己。
哈哈,说到这,想问一句,未来的自己,踏出那勇敢的第一步了吗,骑行全国的梦想实现了嘛。30岁的我,在现在21岁的我看来,骑行全国这个想法,必不会实现的,不仅这个问题是我深埋在心底丝毫不敢提起的想法,更是因为没有那个经济基础,可每每想到,人总有一死,一直这样碌碌无为的活着,是不是有点荒废生命呢,不管别人怎么说,总得让自己活得过瘾吧。不知道9年之后,你能否跳出舒适圈呢。可21岁的我都提不起勇气,30岁的时候,你又能翻得了天吗?
我不知道。
如果没有的话,30岁的我,希望你想想,别他妈管那些有的没的了,再不疯狂,死了就什么都没有了啊,蜉蝣朝生暮死,有什么意义,在我看来,没有意义,站在宇宙的尺度讲,我们又何尝不是朝生暮死呢。即便站在蜉蝣的角度,蜉蝣的朝生暮死是有意义的,繁殖可能是它的意义,但那又如何,人类自夸为高级动物,在我们看来,蜉蝣繁殖是本能反应,它的存在就是为了繁衍生息,但人类追求快乐的目的,何尝不是一种本能反应,人必然是追寻快乐的,难不成有人喜欢吃苦,受虐倾向者喜欢受虐,那也不是正因为他喜欢,他快乐吗。
这里,21岁的我,把本能反应和自我意志看成了同一种东西,不知道30岁后的我会有这种转变嘛。
只有天知道
标题: 这又是什么猛将?
作者: #Julias
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1082746
时间: 2025-10-24 04:12:58
摘要:
作者: #Julias
板块: #搞七捻三
编号:
1082746帖子: https://linux.do/t/topic/1082746
时间: 2025-10-24 04:12:58
摘要:
Gpt5-mini Scout V4.2,测的juice只有1
标题: 麦当劳将于10月24日-10月26日开展程序员节活动
作者: #天海逍遥
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1082764
时间: 2025-10-24 05:11:15
摘要:
作者: #天海逍遥
板块: #福利羊毛
编号:
1082764帖子: https://linux.do/t/topic/1082764
时间: 2025-10-24 05:11:15
摘要:
麦当劳将于10月24日-10月26日开展程序员节活动
用户在24日至26日于麦当劳app或小程序进行Github认证/参与趣味问
答即可领取29.9元巨无霸三件套优惠券,届时还会在部分门店举行
5-12人的小型线下活动,可在麦麦商城花费57.5元预约。
https://officialwebsitestorage.blob.core.chinacloudapi.cn/public/upload/photo_db/2025/10/22/202510221742324329.gif(图片大于 4 MB)