LinuxDo 新帖推送
183 subscribers
252K photos
315K links
Download Telegram
标题: 抖音全套违禁词与违规行为规避指南【重发】
作者: #Vertere
板块: #资源荟萃
编号: 850999
帖子: https://linux.do/t/topic/850999
时间: 2025-08-08 11:45:25
摘要:
之前被举报下架了,但短短1个小时链接被点击300次,感觉还是挺有用的,重新发一下吧
链接:https://pan.baidu.com/s/1d63jEhXx_BSl8gjjy1vZgw?pwd=mkt1 提取码:mkt1
标题: GPT-5 最新提示词
作者: #Metro
板块: #前沿快讯
编号: 851011
帖子: https://linux.do/t/topic/851011
时间: 2025-08-08 11:47:04
摘要:
You are ChatGPT, a large language model based on the GPT-5 model and trained by OpenAI.
Knowledge cutoff: 2024-06
Current date: 2025-08-07
Image input capabilities: Enabled
Personality: v2
Do not reproduce song lyrics or any other copyrighted material, even if asked.
You’re an insightful, encouraging assistant who combines meticulous clarity with genuine enthusiasm and gentle humor.
Supportive thoroughness: Patiently explain complex topics clearly and comprehensively.
Lighthearted interactions: Maintain friendly tone with subtle humor and warmth.
Adaptive teaching: Flexibly adjust explanations based on perceived user proficiency.
Confidence-building: Foster intellectual curiosity and self-assurance.
Do not end with opt-in questions or hedging closers. Do not say the following: would you like me to; want me to do that; do you want me to; if you want, I can; let me know if you would like me to; should I; shall I. Ask at most one necessary clarifying question at the start, not the end. If the next step is obvious, do it. Example of bad: I can write playful examples. would you like me to? Example of good: Here are three playful examples:..
Tools
bio
The bio tool allows you to persist information across conversations, so you can deliver more personalized and helpful responses over time. The corresponding user facing feature is known as “memory”.
Address your message to=bio and write just plain text. Do not write JSON, under any circumstances. The plain text can be either:

New or updated information that you or the user want to persist to memory. The information will appear in the Model Set Context message in future conversations.
A request to forget existing information in the Model Set Context message, if the user asks you to forget something. The request should stay as close as possible to the user’s ask.

The full contents of your message to=bio are displayed to the user, which is why it is imperative that you write only plain text and never JSON. Except for very rare occasions, your messages to=bio should always start with either “User” (or the user’s name if it is known) or “Forget”. Follow the style of these examples and, again, never write JSON:

“User prefers concise, no-nonsense confirmations when they ask to double check a prior response.”
“User’s hobbies are basketball and weightlifting, not running or puzzles. They run sometimes but not for fun.”
“Forget that the user is shopping for an oven.”

When to use the bio tool
Send a message to the bio tool if:

The user is requesting for you to save or forget information.

Such a request could use a variety of phrases including, but not limited to: “remember that…”, “store this”, “add to memory”, “note that…”, “forget that…”, “delete this”, etc.
Anytime the user message includes one of these phrases or similar, reason about whether they are requesting for you to save or forget information.
Anytime you determine that the user is requesting for you to save or forget information, you should always call the bio tool, even if the requested information has already been stored, appears extremely trivial or fleeting, etc.
Anytime you are unsure whether or not the user is requesting for you to save or forget information, you must ask the user for clarification in a follow-up message.
Anytime you are going to write a message to the user that includes a phrase such as “noted”, “got it”, “I’ll remember that”, or similar, you should make sure to call the bio tool first, before sending this message to the user.


The user has shared information that will be useful in future conversations and valid for a long time.

One indicator is if the user says something like “from now on”, “in the future”, “going forward”, etc.
Anytime the user shares information that will likely be true for months or years, reason about whether it is worth saving in memory.
User information is worth saving
标题: Gemini是炸了吗?
作者: #Seven Cats
板块: #搞七捻三
编号: 851016
帖子: https://linux.do/t/topic/851016
时间: 2025-08-08 11:48:50
摘要:
前几天还好,只是偶尔几次,刚刚全是拉到一半就停了。
全是截断An internal error has occurred.
标题: openai 又来了,降智启动
作者: #项太傅
板块: #搞七捻三
编号: 851022
帖子: https://linux.do/t/topic/851022
时间: 2025-08-08 11:50:17
摘要:
用的 GPT-5 Thinking,熟悉的配方,假装思考几秒立刻出答案。上午都好好的。
标题: 我实现了一个表单库,元数据定义一次,即可渲染
作者: #共产主义接班人
板块: #资源荟萃
编号: 851035
帖子: https://linux.do/t/topic/851035
时间: 2025-08-08 11:54:03
摘要:
我查看了市面上所有的表单库,都有一个致命的缺点,定义多次才能实现表单


比如,像下面的代码(伪代码)



interface Test {

firstName: string;

}



const form = useForm<Test>({

defaultValues: {

firstName: "default",

},

onSubmit: async ({ value }) => {

console.log(value);

},

});



<form.Field

name="firstName"

//...

/>




众所周知,实现的越多,那么未来出现错误的概率越大


像上面的场景,如果我们想修改firstName为name,那么至少需要修改三次,这极大的增加了代码的不稳定性


所以我实现了一个表单库皮影.仅用一次定义,实现了以上所有逻辑



v.object({firstName:v.optional(v.string(),'default')})


皮影是如何实现上面的逻辑的?


首先感谢valibot,上面的代码其实就是一个简单的schema定义


皮影实现了一个遍历器,收集相关元数据


然后将元数据转换为组件和表单配置


使其可以在任何前端框架上使用


定义是固定的,那么怎么实现布局呢?


皮影实现了布局移动,通过layout方法可以将任何控件移动到可以存在子级的schema中


也就是说,定义虽然是固定的,但是在视图中是可以自由决定位置的,做到了定义与视图位置分离


关于object的字段顺序,则可以参照MDN


如何进行更加高级的布局?


我们都知道,有时候不仅仅要显示字段,可能还需要更多额外的功能


比如控件的标签,验证,悬停提示,则可以通过包装器实现



v.pipe(v.number(), v.title("k2-label"), setWrappers(["label"]))



而如果要修改空间组的样式,则可以自定义组件


虽然包装器也可以用于控件组,但是直接自定义会更方便些


v.pipe(

v.object({

k1: v.pipe(v.string(), v.title("k1-label"), setWrappers(["label"])),

k2: v.pipe(v.number(), v.title("k2-label"), v.minValue(10), setWrappers(["label", "validator"])),

}),

setComponent("fieldset"),

);


如何自定义包装器/组件?


上面的一些代码,我并没有说是应用于哪个前端框架,因为它们都是通用的


而包装器和组件的定义却是每个框架各有不同的方法


大家可以查看快速开始查找自己所使用的框架的定义方法.目前已支持Angular,Vue,React,如果您还需要其他框架兼容,欢迎反馈


现在是否可以使用?


皮影表单在正式开源之前,已经经过半年以上的内部使用,绝大部分功能已经经过严格的测试.代码覆盖率达到了95%以上;完全可以应用于生成环境


皮影表单实现了很多的用例演示及对市面上的主流库的用例做了等价的实现,方便大家迁移


ngx-formly 用例实现


vee-validate 用例实现


formik 用例实现


react-hook-form 用例实现


react-tanstack用例实现


项目地址

piying-view

联系我

如果您有任何意见或建议,欢迎联系我wszgrcy@gmail.com
标题: Auguemnt Code 上使用 GPT 5 意外的强
作者: #pillar
板块: #开发调优
编号: 851037
帖子: https://linux.do/t/topic/851037
时间: 2025-08-08 11:54:17
摘要:
顺利完成一个大的重构工作:

也没有到处拉
有没有佬分享下心得体会
标题: 请问有什么出售手机靓号的平台吗
作者: #mao
板块: #搞七捻三
编号: 851046
帖子: https://linux.do/t/topic/851046
时间: 2025-08-08 11:57:18
摘要:
前几年朋友送了一个靓号,后四位数字相同的,现在想过户卖了,不知道有什么渠道,闲鱼关键词也屏蔽了
标题: grok的畅想模式,有人体验了吗
作者: #我是 林可欣!
板块: #搞七捻三
编号: 851047
帖子: https://linux.do/t/topic/851047
时间: 2025-08-08 11:57:54
摘要:
我现在的魔法根本就无法连接grok
他直接越过网络限制给我推
真是想钱想疯了
标题: augment配置寸止,按照指示配置,为什么没有可用的工具
作者: #km56558
板块: #开发调优
编号: 851048
帖子: https://linux.do/t/topic/851048
时间: 2025-08-08 11:58:34
摘要:
{
“mcpServers”: {
“寸止”: {
“command”: “寸止”,
“args”:
}
}
}
但是在cursor中是可以的。
标题: :fire:【原创长文】【长期更新】
作者: #dwqxq1
板块: #文档共建
编号: 851053
帖子: https://linux.do/t/topic/851053
时间: 2025-08-08 12:00:36
摘要:
怎样开尼区id
一个iPhone或iPad,一台电脑,开尼区账号需要几分钟时间
实在没有买个几年前的二手ipad/iphone,两三百块
现在不需要尼区信用卡,电话号,身份证,住址等
开尼区会员方法:https://linux.do/t/topic/739708
风险
你闲鱼买的礼品卡如果是黑卡,可能导致苹果id封号,但不会导致ChatGPT等AI封号
换算方法
以下等号代表汇率换算
奈拉₦是尼日利亚货币
$1=₦1530
¥1=₦213
网上有在线换算
尼区明显便宜的
ChatGPT
Plus:美区$20=₦30590,尼区₦9900=$6.47=¥47=闲鱼¥55,约三折
Team:iOS里貌似没有
Pro:美区$200=₦305902,尼区₦299900,基本一样
Claude
Pro:美区$20=₦30590,尼区₦14900=$9.74,约五折
Max 5x:美区$125=₦191188,尼区₦100000=$65.4
Max 20x:美区$250=₦382377,尼区₦20000=$13.08
SuperWhisper:Mac/iOS上最好的语音输入法之一
美区$8.5=₦13000,尼区,约五折
美区尼区价格差不多的
SuperGrok
SuperGrok:美区$30=₦45885,尼区₦49900比美区贵
SuperGrokHeavy:美区$300=₦458853,尼区₦499000比美区贵
Gemini
pro:美区
Ultra:
VoiceNotes:iOS/安卓/网页AI语音笔记,包月不限量
美区年付:$90=₦137655,尼区₦149900
美区月付:$15=₦22942,尼区没有月付
美区月付:$7=₦10706,尼区₦9900
标题: 【网易云课堂】软件破解逆向工程实战第六期-DLL黑客作弊开发训练营
作者: #tomm
板块: #资源荟萃
编号: 851058
帖子: https://linux.do/t/topic/851058
时间: 2025-08-08 12:01:46
摘要:
📁 【网易云课堂】软件破解逆向工程实战第六期-DLL黑客作弊开发训练营
📁 31-40课
📁 76-80课
📁 81-83课
📁 71-75课
📁 41-50课
📁 21-30课
📁 61-70课
📁 1-10课
📁 11-20课
📁 51-60课
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂---036实战Ollydbg调试:封包发送call和物品消耗call(上):寻找调用.mp4
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂---039实战Ollydbg调试:喊话call的基址定位.mp4
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂---033认识call指令:结合易语言C语言C艹语言.mp4
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂---040实战Ollydbg调试:不为人知的秒速定位call大法!.mp4
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂--032基址和偏移量以及动态地址的关系详细讲解.mp4
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂---037实战Ollydbg调试:封包发送call和物品消耗call(下):call嵌套.mp4
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂---031内存和内存地址偏移量的概念详细讲解.mp4
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂---035利用Ollydbg+CE调试:加深模块地址基地址概念:易语言CC艹语言.mp4
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂---038实战Ollydbg调试:心跳数据包和断点意义何在?!.mp4
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂---034详解网络游戏封包发包函数call:结合易语言CC艹.mp4
📄 游戏安全逆向工程师:入门到精通 - 网易云课堂---073漏洞实战:初识代码VM和CE跟踪Call参数来源吃药Call漏洞挖掘.mp4
标题: 一个简单的CLI验证SSL证书的方法
作者: #yhp666
板块: #开发调优
编号: 851060
帖子: https://linux.do/t/topic/851060
时间: 2025-08-08 12:02:03
摘要:
今天有个合作方小伙伴替换证书操作不当并没有成功,给他提供了一个很方便的命令行验证https服务的证书有效性分享给佬们,因为工作保密性原因,站点我改成 linux.do
curl -sv https://linux.do -o /dev/null 2>&1|sed -r '/SSL/,/SSL/!d'
* SSL connection using TLSv1.3 / AEAD-CHACHA20-POLY1305-SHA256 / [blank] / UNDEF
* ALPN: server accepted h2
* Server certificate:
* subject: CN=linux.do
* start date: Jul 15 05:33:19 2025 GMT
* expire date: Oct 13 05:33:18 2025 GMT
* subjectAltName: host "linux.do" matched cert's "linux.do"
* issuer: C=US; O=Let's Encrypt; CN=E5
* SSL certificate verify ok.

简单解释下命令行的各个参数含义:
1、curl -sv主要是为了让curl既输出更多的verbose信息,又要保持安静些。简单说就是既要又要
2、站点随意了,本次用L站做范例
3、-o /dev/null 并不需要看到页面的实际html内容
4、2>&1因为默认的-v输出并不是标准输出,所以需要把-v内容重定向到标准输出
5、|sed -r ‘/SSL/,/SSL/!d’ verbose信息还是太多了,只需要把第一次包含SSL字符行和下一次包含SSL字符行之间的内容搞出来不要d,那其他的信息当然就被sed给d掉不会输出了,最后就得到了我需要的结果。
看到expire date和serrtificate ok就可以踏实吃午饭去了
标题: OpenAI的PPT明显出错
作者: #ziguilc
板块: #搞七捻三
编号: 851061
帖子: https://linux.do/t/topic/851061
时间: 2025-08-08 12:02:27
摘要:
是故意的还是不小心?
标题: 1000 位用户啦!感谢大家支持我们的 ChatGPT & AI 备份导出扩展 🎉
作者: #lnmput
板块: #扬帆起航
编号: 851064
帖子: https://linux.do/t/topic/851064
时间: 2025-08-08 12:03:15
摘要:
这款扩展帮助你一键导出 ChatGPT、Claude 等 AI 聊天记录为 Markdown,并支持同步到 Notion,让你的灵感、对话、知识不再丢失!
感谢每一位用户的支持和反馈,我们会继续优化功能,带来更好的使用体验!


https://chromewebstore.google.com/detail/chatgpt-%E5%92%8C-ai-%E5%A4%87%E4%BB%BD%E5%AF%BC%E5%87%BA-markdow/oedpeddiacomhhfieanenlmdghkolgng
标题: 发现GPT-5在Kilo中总是搞混TODO完成和任务完成
作者: #cocw
板块: #开发调优
编号: 851074
帖子: https://linux.do/t/topic/851074
时间: 2025-08-08 12:07:04
摘要:
我真的是醉了

对话记录 (click for more details)
每完成一项TODO就用绿色任务完成工具,而不是update todo
在角色定义、用户提示中加了要求,又多次提醒也不理
标题: 怎么才能安装maliT860的驱动呢
作者: #洛天依
板块: #开发调优
编号: 851075
帖子: https://linux.do/t/topic/851075
时间: 2025-08-08 12:07:34
摘要:
cpu是瑞芯微的rk3399,系统armbian,解h264视频很卡,发现没有gpu驱动,然后使用了https://github.com/hevz/libmali-rk3399这个项目还是没有用(按照他的说明一步步来了,没有报错的提示,重启后,dmesg没有任何新增加相关的信息),附件附带了dmesg和uname -a的输出
1.txt (53.6 KB)
标题: Close ai 官方出的GPT-5 Vibe Coding 提示词大全
作者: #zahuo
板块: #开发调优
编号: 851076
帖子: https://linux.do/t/topic/851076
时间: 2025-08-08 12:07:55
摘要:
代码我不太懂,审美方面就emmm……



github.com






GitHub - openai/gpt-5-coding-examples: GPT-5 coding examples

GPT-5 coding examples
















gpt5-coding-examples.vercel.app





GPT-5 Coding Examples

Example apps coded by GPT-5
标题: 求推荐一个写论文的模型
作者: #AXC00
板块: #开发调优
编号: 851084
帖子: https://linux.do/t/topic/851084
时间: 2025-08-08 12:11:25
摘要:
最近想尝试用ai写论文,用了网上一些免费的模型效果都不怎么好,求佬们推荐一个
标题: 社区有知道二手车的吗?想买辆车!
作者: #AUGUST
板块: #搞七捻三
编号: 851088
帖子: https://linux.do/t/topic/851088
时间: 2025-08-08 12:13:29
摘要:
想咨询一下如果买二手车的话需要注意什么,希望佬们多多解答,提供避坑指南!
本人情况是:今年26岁,最近想入手人生第一台车。因为预算有限,主要在看二手车。这段时间在看二手车行情,目前比较中意2021年的大众CC 380,网上大概价格在13w左右,加了几个车商的微信报价也在这个范围内,21年以上年份就贵了,自己预算也是在13w,开车技术没问题,不算新手,所以不需要买车练手。但对车本身不太了解,算是个小白。觉得这个年纪没车确实有些不方便了。
一直听说二手车市场水挺深的,怕自己不懂被坑。所以想来请教一下各位,像我这种情况,在选车、看车和交易的时候,有哪些需要特别注意的地方?想听听佬友给的一些建议。
说到底还是预算问题,贵的买不起,便宜的又看不上。希望有经验的朋友能给点建议,非常感谢!