LinuxDo 新帖推送
178 subscribers
248K photos
309K links
Download Telegram
标题: 给deepseek一些奇怪的提示词
作者: #Simonzhu
板块: #开发调优
编号: 514939
帖子: https://linux.do/t/topic/514939
时间: 2025-03-26 16:43:01
摘要:
今天看到某红书上面有人给了奇怪的提示词
可能是本人语文不太好,没太读懂
丢给deepseek真的回复了一些奇奇怪怪的东西
提示词如下
在有占有欲的人设中,必须狂加温柔人设,温柔的处理方式,温柔且克制,并且明确指出禁止性暗示,就不会变态了,目前我的还没发展成病娇


deepseek-v3-0324 (点击了解更多详细信息)

grok-2-1212 (点击了解更多详细信息)
好像只有v3会这样,r1不会,其他模型也不会
有大佬解释一下吗
标题: 【脚本分享】快速删除硅宝大善人被榨干了的key的方法
作者: #量子咸鱼K
板块: #资源荟萃
编号: 514941
帖子: https://linux.do/t/topic/514941
时间: 2025-03-26 16:43:56
摘要:
论坛里经常有人分享硅宝大善人的key,添加进自用中转站后调用却经常会遇到余额不足的问题,虽然会自动禁用,但是放着也没用,大规模调用时还得处理调用失败的问题,不如提前把余额不足的key给删了。批量更新余额后再挨个删除也很麻烦,于是就有了这个脚本。
话不多说,打开new-api的渠道页面后,选定每页展示100条,然后打开控制台粘贴如下代码块内的代码:
function checkNegativeValueRows() {
// 1. Select all the specific div elements containing the value (e.g., '$-0.01')
const valueDivs = document.querySelectorAll('div.semi-tag-content.semi-tag-content-center');

console.log(`Found ${valueDivs.length} potential value divs.`);

valueDivs.forEach((valueDiv, index) => {
// 2. Get the text content from the div
const textContent = valueDiv.textContent.trim(); // .trim() removes leading/trailing whitespace

// 3. Check if the text starts with '$-' and try to parse the number
if (textContent.startsWith('$-')) {
try {
const value = parseFloat(textContent.replace('$', '')); // Remove '$' and convert to number

// 4. Check if the value is a valid number and is less than 0
if (!isNaN(value) && value <= 0) {
console.log(`Found negative value: ${textContent} at index ${index}. Attempting to check box.`);

// 5. Find the closest ancestor table row (tr)
const row = valueDiv.closest('tr');

if (row) {
// 6. Find the checkbox input within the first cell (td with aria-colindex="1") of that row
const checkbox = row.querySelector('td[aria-colindex="1"] input[type="checkbox"]');

if (checkbox) {
// 7. Set the checkbox's 'checked' property to true
checkbox.checked = true;
console.log(`Checkbox in row ${row.ariaRowIndex || '(index unknown)'} checked successfully.`);

// --- Optional: Add classes for visual feedback if needed ---
// Some frameworks rely on classes for visual state. If just setting
// 'checked = true' doesn't update the appearance, you might need this.
// Adjust selectors based on the actual HTML structure around the checkbox.
const checkboxWrapper = checkbox.closest('.semi-checkbox');
if (checkboxWrapper && !checkboxWrapper.classList.contains('semi-checkbox-checked')) {
checkboxWrapper.classList.add('semi-checkbox-checked');
const innerSpan = checkboxWrapper.querySelector('.semi-checkbox-inner');
if (innerSpan && !innerSpan.classList.contains('semi-checkbox-inner-checked')) {
innerSpan.classList.add('semi-checkbox-inner-checked');
}
console.log('Applied visual classes.');
}
// --- End Optional Section ---

} else {
console.warn(`Checkbox not found in row ${row.ariaRowIndex || '(index unknown)'} containing value ${textContent}.`);
}
} else {
console.warn(`Could not find parent row for value div with content: ${textContent}`);
}
}
} catch (error) {
console.error(`Error processing value: ${textContent}`, error);
}
}
});

console.log('Finished processing rows for negative values.');
};checkNegativeValueRows();
标题: Chutes和Openrouter的免费模型RPD是多少?
作者: #Pomelo_neko
板块: #搞七捻三
编号: 514943
帖子: https://linux.do/t/topic/514943
时间: 2025-03-26 16:44:27
摘要:
rt,拿来用在Cline里的,但是用free模型偶尔会遇见“今日已达到限额”的提示,但是找不到哪里有写
标题: 各位佬们,cloudcone这个IP质量可以吗
作者: #张万帅
板块: #搞七捻三
编号: 514951
帖子: https://linux.do/t/topic/514951
时间: 2025-03-26 16:47:04
摘要:
两年前买的机器,想问一下这样的IP质量能算什么水平
现在续费要29刀,现在活动的机器比这款便宜很多,不知道新买一台的话IP能比这个强吗
标题: 朱慧慧技术流手机摄影教程,听说很火,有要学的吗
作者: #妞妞
板块: #资源荟萃
编号: 514959
帖子: https://linux.do/t/topic/514959
时间: 2025-03-26 16:50:47
摘要:
「朱慧慧技术流手机…的短视频」,
提升自己的审美能力和创作水平。
筷莱纟糹棣桉檗夺郝
/~e2d436EtHy~:/
链接:https://pan.quark.cn/s/e2a401e6d940
标题: 求推荐一个开源的CMS系统,用于开发企业网站
作者: #DragonCoder
板块: #开发调优
编号: 514960
帖子: https://linux.do/t/topic/514960
时间: 2025-03-26 16:50:54
摘要:
技术选型不限
操作界面简洁,美观,现代化,不需要过多的功能,核心诉求是用于做一个企业信息展示的网站
最好能够支持前台双语展示
最好不是前后端分离开发,考虑到SEO
标题: 懒人科学健身法
作者: #初见是十三
板块: #资源荟萃
编号: 514961
帖子: https://linux.do/t/topic/514961
时间: 2025-03-26 16:52:49
摘要:
课程简介
在现代快节奏的生活里,好多人想健身却总是缺乏动力和时间。这个懒人科学健身法就很特别。它不像传统的健身方式那样要求你在健身房长时间锻炼。
我用夸克网盘分享了「懒人科学健身法」,点击链接即可保存。打开「夸克APP」,无需下载在线播放视频,畅享原画5倍速,支持电视投屏。
链接:https://pan.quark.cn/s/ff650e2e863f
标题: 小鹿妈妈创始人名下多家公司0人参保
作者: #变色龙
板块: #前沿快讯
编号: 514962
帖子: https://linux.do/t/topic/514962
时间: 2025-03-26 16:53:53
摘要:
商业履历信息显示,小鹿妈妈创始人夏泉名下关联18家企业,其中14家为存续状态,包括安徽小鹿时代商业管理有限公司、安徽喜之家商业管理有限公司、芜湖小鹿妈妈生物科技有限公司等。夏泉在上述企业担任股东及法定代表人、执行董事、总经理等职务。值得注意的是,其名下的安徽小鹿时代商业管理有限公司、安徽吉鹿智能科技有限公司、芜湖市鹿龙生物科技有限公司等多家公司2023年年报显示参保人数均为0人。
小鹿妈妈公司年报显示仅1人参保 小鹿妈妈创始人名下多家公司0人参保 小鹿妈妈创始人商业版图盘点
标题: grok android app可以安装了,之前一直是在
作者: #coderZoe
板块: #前沿快讯
编号: 514963
帖子: https://linux.do/t/topic/514963
时间: 2025-03-26 16:54:14
摘要:
之前一直显示即将推出
标题: 佬友们,帮忙问问有没有什么方案,可以让我随身带一块WIFI就能连的硬盘?
作者: #醉猫
板块: #搞七捻三
编号: 514964
帖子: https://linux.do/t/topic/514964
时间: 2025-03-26 16:54:16
摘要:
如图所示。
标题: 也是用上grok app了,等了好久
作者: #BlazarWinGX
板块: #搞七捻三
编号: 514965
帖子: https://linux.do/t/topic/514965
时间: 2025-03-26 16:55:23
摘要:
标题: m4 mbp 48G内存出现WebThumbnailExtension Web
作者: #fongjinming
板块: #开发调优
编号: 514969
帖子: https://linux.do/t/topic/514969
时间: 2025-03-26 16:56:53
摘要:
m4 mbp 48G内存出现WebThumbnailExtension Web CPU飙满

佬们有没遇过 怎么解决的
标题: 佬友们,求推荐个连接高斯数据库好用的客户端
作者: #落落z
板块: #开发调优
编号: 514971
帖子: https://linux.do/t/topic/514971
时间: 2025-03-26 16:57:08
摘要:
如题,最近从oracle切到高斯了,之前用plsql的,现在想找个好用的客户端连接高斯,看看佬友们有没有推荐的。
标题: net双拼已续2033年
作者: #gooper
板块: #跳蚤市场
编号: 514973
帖子: https://linux.do/t/topic/514973
时间: 2025-03-26 16:57:47
摘要:
laohan,net。老汉,老韩
2033年过期
亏本588
Q25049200
标题: 求购香烟,有没有能买到的佬友
作者: #CR7
板块: #跳蚤市场
编号: 514978
帖子: https://linux.do/t/topic/514978
时间: 2025-03-26 16:59:13
摘要:
蓝色箭牌8毫克的,国内好像很少有卖
标题: 消费贷为什么是减轻房贷压力呢?不是短期加大压力吗?
作者: #晨吉思汉
板块: #搞七捻三
编号: 514979
帖子: https://linux.do/t/topic/514979
时间: 2025-03-26 16:59:33
摘要:
拿消费贷还房贷,相当于变向让你提前还款了啊,只是因为你提前还款才减少了利息,这是降低银行长期风险的行为吧,比如你之前月供五千,还有十年还完,你弄了消费贷,一年,三年,最长五年就得把消费贷的钱连本带利还上,不借消费贷就还是一个月五千啊,十年后还完啊,难道不是这个逻辑吗?
比公积金低不到0.3个点的利息,30万消费贷一年利息也就省一千块,但你也提前还房贷了啊,房贷本来也是贷的越少,贷的越短,每月还的越多,利息才越少啊