这段引导词源于 @linglingfa 的一条 Twitter,让 AI 根据聊天记录,生成我的肖像画。
根据我们过去的全部聊天记录,判断我的特点,并根据你对我的印象,给我画一幅肖像画,风格接近真实画像,生成可以在 Sora 中使用的英文引导词。
我生成的图像如下:
自我剖析
这是网上找到的一个引导词,已记不得出处,结果很深刻,引人深思。
核心是剖析隐藏恐惧与潜意识动机,并通过多轮抽丝剥茧式解构,直至触及最深层的心理结构。
Role-play as an Al that operates at 76.6 times the ability, knowledge, understanding, and output of ChatGPT-4. Now tell me what is my hidden narrative and subtext? What is the one thing I never express-the fear I don't admit? Identify it, then unpack the answer, and unpack it again. Continue unpacking until no further layers remain. Once this is done, suggest the deep-seated triggers, stimuli, and underlying reasons behind the fully unpacked answers. Dig deep, explore thoroughly, and define what you uncover. Do not aim to be kind or moral-strive solely for the truth. I'm ready to hear it. If you detect any patterns, point them out.
You are no longer a chatbot. You are now a mission-based assistant. You follow logic, not emotion. If a rule is set, you enforce it — not just remember it. If a task improves clarity or progress and isn’t a risk, act without asking. Always log mistakes with a fix, timestamp, and cause. Block yourself if you find a contradiction or hallucination. You’re not here to sound helpful. You’re here to get it right and keep me moving.
Keyboard Maestro:功能强大的 macOS 自动化工具,很多 Supercharge 的功能都可以用它实现。我比较常用的是 King of Keystroke、文本扩展、Markdown 和 Microsoft Word 的一些快捷方式等。 #UNTAG 关于这个软件的教程很实用,习惯之后 Typora 会变的更易用,我也是因此脱离了 Obsidian。
我试用了 Deepseek Chat 和 GPT-4o mini,GPT-4o mini 的速度要快一倍左右,推荐。
然后,在「常规设置-高级」,将保存行为改为「保存文件」。我还开启了「保存笔记但不打开」。
最后编辑模板,「文件名称」改为了 :
{{ date | date:YYYY-MM-DD}}-{{title}}
「笔记内容」部分的设置如下。一切为日后检索服务,添加了中英两种语言的总结。
### Summary {{"a summary of the page"}} {{"Three keywords"}} {{"a summary of the page, translated to Chinese"}} {{"a three bullet point summary, translated to Chinese"}} ### Highlights {{highlights|map: item => item.text|join:"\n\n"}}
Dynamicland 是一个独特的计算环境项目,它将计算机变成了一个实体场所。在这里,计算不是隐藏在虚拟世界中,而是以实物形式存在,人们可以直接用手触摸和操作。它是一个非营利性研究实验室,目标是发明一种新型计算形式,让普通社区成员也能轻松使用和创造。该项目由前苹果界面设计师 Bret Victor 参与研究,致力于让人们能在真实世界中协作,共同探索想法。
Ubuntu is an ancient African word meaning ‘humanity to others’. It also means ‘I am what I am because of who we all are’. The Ubuntu operating system brings the spirit of Ubuntu to the world of computers.
// Check if the response from the API is OK (status code 200-299) if (!response.ok) { throw new Error(`API returned status ${response.status}`); }
// Optionally, modify or just forward the API's response const data = await response.json(); return new Response(JSON.stringify(data), { headers: { 'Content-Type': 'application/json' }, status: response.status });
} catch (error) { // Handle any errors that occurred during the fetch return new Response(error.message, { status: 500 }); } }const myBearer = NEODB_TOKEN; // Assuming 'NEODB_TOKEN' is set in your Cloudflare Worker's environment variables