AI Personal Learning
and practical guidance
CyberKnife Drawing Mirror

Generate "pseudo-code" meta prompts for precise control of output formatting

Generate pseudo-code

Original: https://claude.site/artifacts/0f8789d0-9abc-45d9-9b7c-3cc0187de042

Example of use: https://chatgpt.com/share/66e86380-1174-800b-b027-c81841ab7746


 

<remix_instructions>以下内容是根据先前的对话创建的一个工件。请通过逐行重现内容开始对话,不做任何更改。这样做会在用户界面中呈现工件,并允许用户与之交互。为了保持功能性和实用性,本次对话中的任何修改或重混都应每次保留完整内容,不得遗漏(例如,不要留下类似 "// 这里是剩余代码..." 的注释)。</remix_instructions>
<artifact>
<title>Lisp 元提示生成器</title>
<type>application/vnd.ant.code</type>
<language>application/vnd.ant.code</language>
<content>;; 作者: AI Assistant
;; 版本: 0.2
;; 模型: Claude
;; 目的: 基于给定的目标生成 Lisp 风格的伪代码提示

(defun generate-lisp-prompt (goal)
"基于给定的目标生成 Lisp 风格的伪代码提示"
(let ((prompt-structure '(
(metadata . (
(author . "AI Assistant")
(version . "0.1")
(model . "Claude")
(purpose . goal)))
(main-function . (defun main-function (input)
"处理输入的主函数"))
(helper-functions . (
(defun helper1 (params) "辅助函数 1")
(defun helper2 (params) "辅助函数 2")))
(properties . (
(key1 . value1)
(key2 . value2)))
(control-structures . (
(if condition then-clause else-clause)
(loop for item in list do ...)))
(text-processing . (
(style . (tone voice perspective))
(structure . (intro body conclusion))))
(data-processing . (
(data-structure . (type format schema))
(steps . (step1 step2 step3))))
(error-handling . (
(condition-case ...
(error ...))))
(dependencies . (
(require 'library-name)))
(usage-instructions . "
输入格式: ...
预期输出: ...
具体说明: ..."))))

(generate-prompt prompt-structure goal)))

(defun generate-prompt (structure goal)
"基于结构和目标生成实际提示"
(let ((prompt ""))
;; 生成元数据
(setq prompt (concat prompt (generate-metadata (cdr (assoc 'metadata structure)) goal)))

;; 生成主函数
(setq prompt (concat prompt "\n\n" (generate-main-function (cdr (assoc 'main-function structure)) goal)))

;; 生成辅助函数
(setq prompt (concat prompt "\n\n" (generate-helper-functions (cdr (assoc 'helper-functions structure)) goal)))

;; 生成属性
(setq prompt (concat prompt "\n\n" (generate-properties (cdr (assoc 'properties structure)) goal)))

;; 生成控制结构
(setq prompt (concat prompt "\n\n" (generate-control-structures (cdr (assoc 'control-structures structure)) goal)))

;; 生成文本处理(如果适用)
(when (string-match-p "text" goal)
(setq prompt (concat prompt "\n\n" (generate-text-processing (cdr (assoc 'text-processing structure)) goal))))

;; 生成数据处理(如果适用)
(when (string-match-p "data" goal)
(setq prompt (concat prompt "\n\n" (generate-data-processing (cdr (assoc 'data-processing structure)) goal))))

;; 生成错误处理
(setq prompt (concat prompt "\n\n" (generate-error-handling (cdr (assoc 'error-handling structure)) goal)))

;; 生成依赖
(setq prompt (concat prompt "\n\n" (generate-dependencies (cdr (assoc 'dependencies structure)) goal)))

;; 生成使用说明
(setq prompt (concat prompt "\n\n" (generate-usage-instructions (cdr (assoc 'usage-instructions structure)) goal)))

prompt))

;; 生成每个部分提示的辅助函数
(defun generate-metadata (metadata goal) ...)
(defun generate-main-function (main-function goal) ...)
(defun generate-helper-functions (helper-functions goal) ...)
(defun generate-properties (properties goal) ...)
(defun generate-control-structures (control-structures goal) ...)
(defun generate-text-processing (text-processing goal) ...)
(defun generate-data-processing (data-processing goal) ...)
(defun generate-error-handling (error-handling goal) ...)
(defun generate-dependencies (dependencies goal) ...)
(defun generate-usage-instructions (instructions goal) ...)

;; 用法
;; (generate-lisp-prompt "创建一个文本摘要提示")
</content>
</artifact>

 

 

This hint instruction and code is mainly used to generate Lisp style pseudo-code hints. Its function is explained below:

``

This section gives instructions on how to handle the code or artifacts that follow:

  • The artifact is a finished product generated from a previous conversation.
  • When reproducing the artifact, it is required to show the code content line by line and leave it as is without any changes.
  • Any modification or remixing should preserve the integrity of the content and not allow the omission of content or the addition of simplifying notes.

 

``

This section defines the title, type, language, and code content of the artifact.

1. caption (``).<br /> The title of the artifact is "Lisp Meta Hint Generator", implying that the purpose of the code is to generate Lisp-style hints.</p> <p>2. <strong>typology</strong> (``).<br /> The type `application/vnd.ant.code` means that the artifact is of a type that is Lisp style code.</p> <p>3. <strong>multilingualism</strong> (``).<br /> The language is also `application/vnd.ant.code`, indicating that the contents of the artifact are programming code.</p> <p>4. <strong>element</strong> (``).<br /> The body of the artifact is a piece of Lisp code that generates hints for creating Lisp-style pseudocode based on a given target.</p> <p> </p> <h3>Lisp Code Interpretation</h3> <p>The main purpose of the code is to automatically generate a structured piece of Lisp style hints based on a goal (`goal`). The following is an explanation of the main parts of the code:</p> <p>1. <strong>`generate-lisp-prompt` function</strong>:</p> <ul> <li>This is the main function, which takes a `goal` and generates a Lisp-style hint based on it.</li> <li>This function defines a prompt structure (`prompt-structure`) that contains:</li> <li><strong>metadata</strong> (`metadata`): Includes information such as author, version, model, and purpose.</li> <li><strong>Main function definition</strong> (`main-function`): Pseudo-code main function structure.</li> <li><strong>helper function</strong> (`helper-functions`): Functions used to generate some helper functions.</li> <li><strong>causality</strong> (`properties`): Some custom key-value pairs.</li> <li><strong>control structure</strong> (`control-structures`): Contains conditional statements (such as `if-else`) and loops.</li> <li><strong>text processing</strong> (`text-processing`): Contains information about the style, tone, structure, etc. of the text.</li> <li><strong>data processing</strong> (`data-processing`): defines the data structure and its processing steps.</li> <li><strong>error handling</strong> (`error-handling`): describes the handling logic in case of an error.</li> <li><strong>dependencies</strong> (`dependencies`): Lists the dependent libraries to be loaded.</li> <li><strong>Instructions for use</strong> (`usage-instructions`): explains input formats, expected output, etc.</li> </ul> <p> </p> <p>2. <strong>`generate-prompt` function</strong>:</p> <ul> <li>Step-by-step generation of the final prompt based on the incoming structure (`structure`) and goal (`goal`).</li> <li>This function generates code snippets for each part (e.g., metadata, main function, auxiliary functions, etc.) in turn and stitches them together.</li> </ul> <p> </p> <p>3. <strong>Auxiliary Generator Functions</strong>:</p> <ul> <li>Examples include functions such as `generate-metadata`, `generate-main-function`, and `generate-helper-functions`, each of which is responsible for generating a specific part of the prompt.</li> </ul> <p>4. <strong>Instructions for use</strong>:</p> <ul> <li>When used, `(generate-lisp-prompt "Create a text summary prompt")` can be called to generate a Lisp-style prompt based on the "Create a text summary prompt" target.</li> </ul> <p> </p> <h3>summarize</h3> <p>Overall, the function of this code is to automatically generate Lisp-style pseudo-code hints, with the main purpose of providing a hinting framework for the target task (e.g., text processing, data processing, etc.).</p> <div id="related_posts"><h3>Related articles</h3><ul><li><a href="https://www.aisharenet.com/en/mofadabaimofa/" title="Magic Defeats Magic: Hint Words for Passing Jubilee AI Detection with Forward and Reverse Examples">Magic Defeats Magic: Hint Words for Passing Jubilee AI Detection with Forward and Reverse Examples</a></li><li><a href="https://www.aisharenet.com/en/chatgptshiyongjsonjie/" title="ChatGPT generates 3D icons using json structured cue words">ChatGPT generates 3D icons using json structured cue words</a></li><li><a href="https://www.aisharenet.com/en/rangdamoxingxiezhubai/" title="All the ways to let the big model assist you in optimizing your prompt are here">All the ways to let the big model assist you in optimizing your prompt are here</a></li><li><a href="https://www.aisharenet.com/en/yongwannengdediba/" title="Optimize your prompts with the all-powerful 'firstness principle'">Optimize your prompts with the all-powerful 'firstness principle'</a></li><li><a href="https://www.aisharenet.com/en/chaijiegoujianzhishica/" title="Deconstructing the cue words applied in the process of building a knowledge graph using a big model (example)">Deconstructing the cue words applied in the process of building a knowledge graph using a big model (example)</a></li><li><a href="https://www.aisharenet.com/en/duilianggedaanjinbiao/" title="Positive multi-dimensional scoring of both answers facilitates the determination of the best answer.">Positive multi-dimensional scoring of both answers facilitates the determination of the best answer.</a></li></ul></div> <div class="orbui orbui-post orbui-post-content"><div style='text-align:center; font-size:0;'> <a href='https://www.aisharenet.com/feed/ylcdn/' target='_blank' rel='noopener noreferrer nofollow' style='display:inline-block; line-height:0;'> <img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt='CDN1' style='max-width: 100%; height: auto;' data-lazy-src="/wp-content/uploads/ad/cdn1.webp"><noscript><img src='/wp-content/uploads/ad/cdn1.webp' alt='CDN1' style='max-width: 100%; height: auto;' data-no-translation=""></noscript> </a> </div></div> </article> <div class="orbui-post-footer"><b>AD:</b><strong>【Free experience of ultra-realistic 3D digital people</strong><a target="_blank" href="https://www.aisharenet.com/feed/youyan3d/">Self-media, learning and education, corporate training, to create an exclusive 3D digital persona</a></div> <div class="post-copyright">May not be reproduced without permission:<a href="https://www.aisharenet.com/en">Chief AI Sharing Circle</a> " <a href="https://www.aisharenet.com/en/shengchengweidaima/">Generate "pseudo-code" meta prompts for precise control of output formatting</a></div> <div class="article-tags"></div> <nav class="article-nav"> <span class="article-nav-prev">Previous article.<br><a href="https://www.aisharenet.com/en/ai-ux-shejiyanjiuai/" rel="prev">AI UX Design Study Guide</a></span> <span class="article-nav-next">next article<br><a href="https://www.aisharenet.com/en/prompt-gaojijiqiao/" rel="next">Prompt Advanced Tips: Precise Control of LLM Output and Definition of Execution Logic with Pseudo-Code</a></span> </nav> <div class="relates relates-imagetext"><div class="title"><h3>Recommended</h3></div><ul><li><a target="_blank" href="https://www.aisharenet.com/pt/shiyong-gemini-25-pr/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/48b7631342836f1-220x150.jpg" alt="使用 Gemini 2.5 Pro 无示例将文章去除AI味-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></a><a href="https://www.aisharenet.com/pt/shiyong-gemini-25-pr/">Remove AI flavor from articles with Gemini 2.5 Pro without examples</a></li><li><a target="_blank" href="https://www.aisharenet.com/pt/liyongjimengshengchengban/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/0997c5f9f5d4c74-220x150.png" alt="利用即梦生成文字为主的文章配图(提示词)-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></a><a href="https://www.aisharenet.com/pt/liyongjimengshengchengban/">Using Instant Dream to generate text-based article graphics (prompt words)</a></li><li><a target="_blank" href="https://www.aisharenet.com/pt/shiyongaizaizimeiti/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/d2437a5796edb36-220x150.png" alt="使用AI在自媒体平台回答问题,赚点小钱,附上提示词-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></a><a href="https://www.aisharenet.com/pt/shiyongaizaizimeiti/">Use AI to answer questions on self-publishing platforms and make a little money, complete with prompt words</a></li><li><a target="_blank" href="https://www.aisharenet.com/pt/yongzijidezhaopianbeng/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/5a6047eaa2a7a54-220x150.png" alt="用自己的照片生成一套Q萌风格的卡通贴纸-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></a><a href="https://www.aisharenet.com/pt/yongzijidezhaopianbeng/">Generate a set of Q-Meng style cartoon stickers from your own photos!</a></li><li><a target="_blank" href="https://www.aisharenet.com/pt/mofadabaimofa/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/764b702ca332c4a-220x150.png" alt="魔法打败魔法:用正反示例过朱雀AI检测的提示词-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></a><a href="https://www.aisharenet.com/pt/mofadabaimofa/">Magic Defeats Magic: Hint Words for Passing Jubilee AI Detection with Forward and Reverse Examples</a></li><li><a target="_blank" href="https://www.aisharenet.com/pt/gemini-20-flash-jian/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/eedf8e3925178f8-220x150.png" alt="Gemini 2.0 Flash 简单去除图片水印-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></a><a href="https://www.aisharenet.com/pt/gemini-20-flash-jian/">Gemini 2.0 Flash Simple Removal of Image Watermarks</a></li><li><a target="_blank" href="https://www.aisharenet.com/pt/wenshengtutishiciao/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/b406f889ebe03a7-220x150.jpeg" alt="文生图提示词扩展框架:提升 AI 图像生成效果-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></a><a href="https://www.aisharenet.com/pt/wenshengtutishiciao/">A framework for expanding the cue word of Vincennes: Improving AI image generation</a></li><li><a target="_blank" href="https://www.aisharenet.com/pt/ruherangxiaohongshuchang/"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/7698a8f48fd33c5-220x150.png" alt="如何让小红书封面更加吸引眼球-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></a><a href="https://www.aisharenet.com/pt/ruherangxiaohongshuchang/">How to Make Little Red Book Covers More Eye-Catching</a></li></ul></div> </div> </div> <div data-rocket-location-hash="1a6f1e49589dcf54c5736d16ab37fdb5" class="sidebar"> <div data-rocket-location-hash="953fa7ba9cef31c4666780f438d407ec" class="widget_text widget-on-phone widget widget_custom_html"><div class="textwidget custom-html-widget"><div id="custom-search-sidebar"> <style> /* 容器样式 */ #custom-search-sidebar { width: 100%; margin: 2px; padding: 10px; font-family: Arial, sans-serif; text-align: center; box-sizing: border-box; } /* 公共版块样式 */ .section { margin-bottom: 20px; } .section h3 { margin: 0 0 8px; text-align: left; font-size: 18px; color: #333; } .section p { margin: 0 0 15px; line-height: 1.6; color: #666; font-size: 14px; text-align: left; } /* 搜索部分样式 */ #custom-search-input { width: 100%; padding: 12px; border-radius: 4px; border: 1px solid #ddd; margin-bottom: 8px; box-sizing: border-box; font-size: 16px; } #custom-search-button { width: 100%; padding: 12px; border-radius: 4px; background-color: #ff5722; border: none; color: white; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; font-size: 16px; } #custom-search-button:hover { background-color: #e64a19; transform: scale(1.05); } /* 广告部分样式 */ #custom-ad { margin-top: 20px; padding: 10px; border: 1px solid #eee; border-radius: 4px; background-color: #f9f9f9; } </style> <!-- 搜索部分 --> <div class="section" id="search-section"> <h3>Can't find AI tools? Try here!</h3> <p>Just type in the keyword <strong>Accessibility Bing Search</strong>You can quickly find all the AI tools on this site.</p> <input type="text" id="custom-search-input" placeholder="Enter keywords, e.g. GPT, translation tools"> <button id="custom-search-button">Search Now</button> </div> <!-- 广告部分 --> <div id="custom-ad"> <a href="https://www.aisharenet.com/feed/tree/" target="_blank" rel="noopener noreferrer nofollow" style="color: #000; font-weight: bold; text-decoration: none; transition: color 0.3s ease;">   <span style="color: #ff5722;">🔥Trae x Beanbag MarsCode Big upgrade!</span><br>   <span style="color: #43A047;">💡 free to use</span>, AI programming capabilities are once again on the rise! 🚀 </a> </div> <script type="rocketlazyloadscript"> document.addEventListener('DOMContentLoaded', function() { const searchInput = document.getElementById('custom-search-input'); const searchButton = document.getElementById('custom-search-button'); // 配置 - 修改此处设置您的域名 const siteDomain = 'www.aisharenet.com'; function performSearch() { const searchTerm = searchInput.value.trim(); if (searchTerm) { // 创建一个表单元素 const form = document.createElement('form'); form.method = 'GET'; form.action = 'https://www.bing.com/search'; form.target = '_blank'; document.body.appendChild(form); // 添加站点限制参数 (q1) - 不会显示在搜索框 const siteParam = document.createElement('input'); siteParam.type = 'hidden'; siteParam.name = 'q1'; siteParam.value = 'site:' + siteDomain; form.appendChild(siteParam); // 添加搜索词参数 (q) const queryParam = document.createElement('input'); queryParam.type = 'hidden'; queryParam.name = 'q'; queryParam.value = searchTerm; form.appendChild(queryParam); // 添加必应搜索框格式参数 const formParam = document.createElement('input'); formParam.type = 'hidden'; formParam.name = 'form'; formParam.value = 'QBLH'; form.appendChild(formParam); // 自动检测用户语言并添加相应参数 const userLang = navigator.language || navigator.userLanguage; if (userLang) { const langParts = userLang.split('-'); if (langParts.length > 0) { // 设置市场和语言 const setLang = document.createElement('input'); setLang.type = 'hidden'; setLang.name = 'setlang'; setLang.value = langParts[0].toLowerCase(); form.appendChild(setLang); if (langParts.length > 1) { const setMkt = document.createElement('input'); setMkt.type = 'hidden'; setMkt.name = 'setmkt'; setMkt.value = userLang.toLowerCase(); form.appendChild(setMkt); } } } // 提交表单并移除 form.submit(); document.body.removeChild(form); // 不清空搜索框,保留搜索词 } else { alert('请输入关键词进行搜索!'); } } searchButton.addEventListener('click', performSearch); searchInput.addEventListener('keypress', function(event) { if (event.key === 'Enter') { performSearch(); } }); }); </script> </div></div></div><div data-rocket-location-hash="af246c902e3364ee78d41da480695603" class="widget widget_ui_orbui"><div class="item"><!-- 自定义右侧广告工具栏 --> <div id="custom-sidebar"> <div class="sidebar-header"> <div class="sidebar-title">Recommended Tools <span class="tag">choice (product)</span></div> <button id="sidebar-close">×</button> </div> <ul class="tool-list"> <li> <a href="https://www.aisharenet.com/feed/tree/" target="_blank"> <img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Trae" data-lazy-src="/wp-content/uploads/ad/logo/trae.webp"><noscript><img src="/wp-content/uploads/ad/logo/trae.webp" alt="Trae" data-no-translation=""></noscript> <div class="tool-info"> <span>Trae <em>testimonials</em></span> <p class="tool-desc">AI Programming IDE</p> </div> </a> </li> <li> <a href="https://www.aisharenet.com/feed/youyan3d/" target="_blank"> <img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="AI" data-lazy-src="/wp-content/uploads/ad/logo/youyan3d.ico"><noscript><img src="/wp-content/uploads/ad/logo/youyan3d.ico" alt="AI"></noscript> <div class="tool-info"> <span>Arigato 3D Digital Man <em>testimonials</em></span> <p class="tool-desc">AI Digital Human Assistant</p> </div> </a> </li> <li> <a href="https://www.aisharenet.com/feed/xfwenshu/" target="_blank"> <img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Xunfei instruments" data-lazy-src="/wp-content/uploads/ad/logo/xfws.webp"><noscript><img src="/wp-content/uploads/ad/logo/xfws.webp" alt="讯飞文书" data-no-translation=""></noscript> <div class="tool-info"> <span>Xunfei instruments <em>testimonials</em></span> <p class="tool-desc">Intelligent Writing Tools</p> </div> </a> </li> <li> <a href="https://www.aisharenet.com/feed/xfhuijing/" target="_blank"> <img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="CyberKnife Drawing Mirror" data-lazy-src="/wp-content/uploads/ad/logo/xfhj.webp"><noscript><img src="/wp-content/uploads/ad/logo/xfhj.webp" alt="讯飞绘镜" data-no-translation=""></noscript> <div class="tool-info"> <span>CyberKnife Drawing Mirror</span> <p class="tool-desc">AI Video Generation</p> </div> </a> </li> <li> <a href="https://www.aisharenet.com/feed/huiwa/" target="_blank"> <img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Ali-painted frog" data-lazy-src="/wp-content/uploads/ad/logo/alihuuiwa.webp"><noscript><img src="/wp-content/uploads/ad/logo/alihuuiwa.webp" alt="阿里绘蛙" data-no-translation=""></noscript> <div class="tool-info"> <span>Ali-painted frog</span> <p class="tool-desc">E-commerce Poster Generation</p> </div> </a> </li> <li> <a href="https://www.aisharenet.com/feed/cappt/" target="_blank"> <img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Clicker PPT" data-lazy-src="/wp-content/uploads/ad/logo/cappt.webp"><noscript><img src="/wp-content/uploads/ad/logo/cappt.webp" alt="咔片PPT" data-no-translation=""></noscript> <div class="tool-info"> <span>Clicker PPT</span> <p class="tool-desc">Smart PPT Tools</p> </div> </a> </li> </ul> </div> <style> #custom-sidebar { position: fixed; top: 100px; right: 20px; width: 240px; background: #fff; box-shadow: 0 0 12px rgba(0,0,0,0.08); border-radius: 12px; padding: 16px; z-index: 9999; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif; transition: all 0.3s ease; } .sidebar-header { display: flex; justify-content: space-between; align-items: center; } #sidebar-close { background: none; border: none; font-size: 18px; cursor: pointer; color: #999; } #sidebar-close:hover { color: #333; } .sidebar-title { font-weight: bold; font-size: 16px; } .sidebar-title .tag { font-size: 12px; color: #f80; background: #fff7e6; padding: 2px 4px; border-radius: 4px; margin-left: 4px; } .tool-list { list-style: none; padding: 12px 0 0 0; margin: 0; } .tool-list li { padding: 10px 0; border-bottom: 1px dashed #eee; } .tool-list li:last-child { border-bottom: none; } .tool-list li a { display: block; position: relative; padding-left: 42px; min-height: 40px; color: #333; text-decoration: none; } .tool-list li a:hover { background: #f5f5f5; border-radius: 8px; /* 不改变 padding,防止 hover 闪烁 */ } .tool-list li img { position: absolute; top: 5px; left: 0; width: 32px; height: 32px; border-radius: 6px; } .tool-info { text-align: left; } .tool-info span { font-size: 14px; display: block; } .tool-info em { font-size: 12px; color: #f40; margin-left: 4px; } .tool-desc { font-size: 12px; color: #888; margin-top: 2px; } </style> <script type="rocketlazyloadscript"> document.addEventListener("DOMContentLoaded", function () { document.getElementById("sidebar-close").addEventListener("click", function () { document.getElementById("custom-sidebar").style.display = "none"; }); }); </script> <!-- 右上角推荐位 --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8152038832870620" data-ad-slot="1219023065" data-ad-format="auto" data-full-width-responsive="true"></ins> <script type="rocketlazyloadscript"> (adsbygoogle = window.adsbygoogle || []).push({}); </script></div></div><div data-rocket-location-hash="7f4eeefcfe452da57ef187ad3cae8e61" class="widget widget_image_generation_widget"><h3>FLUX.1 image generator (supports Chinese input)</h3> <div style="padding: 20px; background-color: #f9f9f9; border-radius: 8px; margin: 10px 0;"> <form action="https://img.kdjingpai.com/" method="get" target="_blank" style="display: flex; flex-direction: column; gap: 15px;"> <div> <label for="widget-image_generation_widget-2-prompt" style="display: block; margin-bottom: 5px; font-weight: bold;">Image description:</label> <input class="widefat" id="widget-image_generation_widget-2-prompt" name="prompt" type="text" required style="width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px;"> </div> <div> <label for="widget-image_generation_widget-2-size" style="display: block; margin-bottom: 5px; font-weight: bold;">Image Size:</label> <select class="widefat" id="widget-image_generation_widget-2-size" name="size" style="width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px;"> <option value="256x256">256x256</option> <option value="512x512" selected>512x512</option> <option value="1024x1024">1024x1024</option> <option value="768x512">768x512</option> <option value="768x1024">768x1024</option> <option value="512x1024">512x1024</option> <option value="1024x576">1024x576</option> </select> </div> <div> <label for="widget-image_generation_widget-2-optimization" style="display: block; margin-bottom: 5px; font-weight: bold;">Is it optimized:</label> <select class="widefat" id="widget-image_generation_widget-2-optimization" name="optimization" style="width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px;"> <option value="0">clogged</option> <option value="1">Yes (rich image description detail)</option> </select> </div> <input type="submit" value="Generating images" style="background-color: #0073aa; color: white; padding: 10px; border: none; border-radius: 4px; cursor: pointer; font-size: 16px;"> </form> </div> </div><div data-rocket-location-hash="3a3cd8ebfee4e118f819b21b57536769" class="widget-on-phone widget widget_ui_posts"><h3>Recent AI Hotspots</h3><ul><li><a target="_blank" href="https://www.aisharenet.com/en/framepack/"><span class="thumbnail"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/78ac326f4fb8856-220x150.jpg" alt="FramePack:6G低显存快速生成长视频的开源项目-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></span><span class="text">FramePack: 6G low graphics memory fast raw long video open source project</span><span class="muted">2025-04-18</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/skyreels-v2/"><span class="thumbnail"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/e56535e5058ac23-220x150.png" alt="SkyReels V2:生成无限长度视频的开源AI工具-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></span><span class="text">SkyReels V2: Open Source AI Tool for Generating Unlimited Length Videos</span><span class="muted">2025-04-22</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/smithery/"><span class="thumbnail"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/fe1aaf3b929f637-220x150.png" alt="Smithery:连接AI与工具的MCP服务器注册平台-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></span><span class="text">Smithery: an MCP server registration platform that connects AI with tools</span><span class="muted">2025-04-18</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/onefilellm/"><span class="thumbnail"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/ef9525ad16e06e7-220x150.jpg" alt="OneFileLLM:整合多种数据源为单一文本文件-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></span><span class="text">OneFileLLM: Integrating Multiple Data Sources into a Single Text File</span><span class="muted">2025-04-18</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/dia/"><span class="thumbnail"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/fd20fdc1b1ee86f-220x150.png" alt="Dia:生成超现实多人对话的文本转语音模型-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></span><span class="text">Dia: text-to-speech modeling for generating hyper-realistic multiplayer conversations</span><span class="muted">2025-04-22</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/reweb/"><span class="thumbnail"><img data-src="https://www.aisharenet.com/wp-content/uploads/2025/04/3b553e7b0696af7-220x150.png" alt="Reweb:用AI和视觉编辑器快速构建Next.js和Tailwind CSS网站-首席AI分享圈" src="https://www.aisharenet.com/wp-content/themes/dux/assets/img/thumbnail.png" class="thumb" data-no-translation=""></span><span class="text">Reweb: Rapidly Build Next.js and Tailwind CSS Websites with AI and Visual Editors</span><span class="muted">2025-04-18</span></a></li></ul></div><div data-rocket-location-hash="6a773354f8c2395d5dbf220b7cce448f" class="widget-on-phone widget widget_ui_orbui"><div class="item"><!-- 右上角推荐位 --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8152038832870620" data-ad-slot="1219023065" data-ad-format="auto" data-full-width-responsive="true"></ins> <script type="rocketlazyloadscript"> (adsbygoogle = window.adsbygoogle || []).push({}); </script></div></div><div data-rocket-location-hash="ba77f51af2f1090f55b77b722e8f7ca9" class="widget widget_ui_posts"><h3>AI Tools Recommendations</h3><ul class="nopic"><li><a target="_blank" href="https://www.aisharenet.com/en/shadowfetch/"><span class="text">Shadowfetch: Cloudflare Workers Anonymous Proxy Large Model API</span><span class="muted">2025-03-03</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/openartmianfeiaiai/"><span class="text">OpenArt: Free AI Art Image Generator | ComfyUI Sharing Community</span><span class="muted">2024-08-08</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/comfyui-portrait-master/"><span class="text">ComfyUI Portrait Master Chinese version: Cue word tool to optimize portrait generation</span><span class="muted">2024-08-30</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/why-my-wife-yelling-at-me/"><span class="text">Why My Wife Yelling At Me: An Interactive Tool to Model Marital Communication</span><span class="muted">2025-04-20</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/mochi-diffusion/"><span class="text">Mochi Diffusion: Run Stable Diffusion Natively on Mac with Very Low Memory</span><span class="muted">2024-11-22</span></a></li><li><a target="_blank" href="https://www.aisharenet.com/en/self-hosted-ai-starter-kit/"><span class="text">n8n Self-hosted AI Starter Kit: an open source template for quickly building a local AI environment</span><span class="muted">2025-02-04</span></a></li></ul></div><div data-rocket-location-hash="505f0ba73917c3aedb04132542aca8db" class="widget-on-phone widget widget_ui_tags"><h3>AI Tools Classification</h3><div class="items"><a href="https://www.aisharenet.com/en/tag/aikaiyuanxiangmu/" title="AI open source project">AI open source project<span>(992)</span></a><a href="https://www.aisharenet.com/en/tag/aikaifangfuwu/" title="AI Open Services">AI Open Services<span>(120)</span></a><a href="https://www.aisharenet.com/en/tag/aibiancheng/" title="AI programming">AI programming<span>(109)</span></a><a href="https://www.aisharenet.com/en/tag/aijiaoyugongju/" title="AI educational tools">AI educational tools<span>(95)</span></a><a href="https://www.aisharenet.com/en/tag/aixiezuo/" title="AI writing">AI writing<span>(93)</span></a><a href="https://www.aisharenet.com/en/tag/prompt/" title="Prompt Jailbreak">Prompt Jailbreak<span>(82)</span></a><a href="https://www.aisharenet.com/en/tag/aizhishikuyukefu/" title="Knowledge Retrieval and the RAG Framework">Knowledge Retrieval and the RAG Framework<span>(79)</span></a><a href="https://www.aisharenet.com/en/tag/aiwenbenzhuanyuyin/" title="AI Text-to-Speech">AI Text-to-Speech<span>(76)</span></a><a href="https://www.aisharenet.com/en/tag/ailiaotiankuangjiabushu/" title="AI Localized Chat App">AI Localized Chat App<span>(75)</span></a><a href="https://www.aisharenet.com/en/tag/aizaixianshengchengtuxiang/" title="AI online image generation">AI online image generation<span>(73)</span></a><a href="https://www.aisharenet.com/en/tag/claude/" title="Claude">Claude<span>(73)</span></a><a href="https://www.aisharenet.com/en/tag/aiyingxiao/" title="AI marketing">AI marketing<span>(71)</span></a><a href="https://www.aisharenet.com/en/tag/shenghuozhushou/" title="AI Life Efficiency Assistant">AI Life Efficiency Assistant<span>(71)</span></a><a href="https://www.aisharenet.com/en/tag/aijichengduomoxingdui/" title="AI Integrated Multi-Model Dialog Platform">AI Integrated Multi-Model Dialog Platform<span>(68)</span></a><a href="https://www.aisharenet.com/en/tag/markdown/" title="Document Extraction and Cleaning">Document Extraction and Cleaning<span>(67)</span></a><a href="https://www.aisharenet.com/en/tag/daima/" title="coding">coding<span>(64)</span></a><a href="https://www.aisharenet.com/en/tag/aifanyi/" title="AI translation">AI translation<span>(64)</span></a><a href="https://www.aisharenet.com/en/tag/aishuziren/" title="AI digital person">AI digital person<span>(63)</span></a><a href="https://www.aisharenet.com/en/tag/aituxiangfenggekongzhi/" title="AI image style control">AI image style control<span>(63)</span></a><a href="https://www.aisharenet.com/en/tag/aizhinengti/" title="Intelligent Body Development Framework">Intelligent Body Development Framework<span>(61)</span></a><a href="https://www.aisharenet.com/en/tag/aisousuogongju/" title="AI search tools">AI search tools<span>(59)</span></a><a href="https://www.aisharenet.com/en/tag/aiyinshipinbianji/" title="AI audio and video editing">AI audio and video editing<span>(57)</span></a><a href="https://www.aisharenet.com/en/tag/aiwenbenzhuanshipin/" title="AI Text to Video">AI Text to Video<span>(57)</span></a><a href="https://www.aisharenet.com/en/tag/aihuiyishipinzongban/" title="AI text and audio/video summarization tool">AI text and audio/video summarization tool<span>(56)</span></a><a href="https://www.aisharenet.com/en/tag/aiyuyinzhuanwenben/" title="AI Speech to Text">AI Speech to Text<span>(53)</span></a><a href="https://www.aisharenet.com/en/tag/aituxiangzhuanshipin/" title="AI Image to Video">AI Image to Video<span>(52)</span></a><a href="https://www.aisharenet.com/en/tag/aituxiangshengchengfuzhu/" title="AI image generation aids">AI image generation aids<span>(49)</span></a><a href="https://www.aisharenet.com/en/tag/aifuyexiangmu/" title="AI Side Hustle Money Making Program">AI Side Hustle Money Making Program<span>(47)</span></a><a href="https://www.aisharenet.com/en/tag/zhinengtiyingyong/" title="Intelligent Body Applications">Intelligent Body Applications<span>(44)</span></a><a href="https://www.aisharenet.com/en/tag/zhuomianzidonghuazhian/" title="Desktop Automation Intelligence">Desktop Automation Intelligence<span>(44)</span></a></div></div></div></section> <footer data-rocket-location-hash="be622ed54639057e208115c82dfe928e" class="footer"> <div data-rocket-location-hash="40297ec0c66602d6094b5c9d6a7df5f9" class="container"> <p>© 2022-2025   <a href="https://www.aisharenet.com/en">Chief AI Sharing Circle</a>   <nav style="text-align: center; padding: 20px 0;"> <ul style="list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; gap: 20px;"> <li><h3><a href="https://www.aisharenet.com/en/news/">AI News</a></h3></li> <li><h3><a href="https://www.aisharenet.com/en/tool/">AI tools</a></h3></li> <li><h3><a href="https://www.aisharenet.com/en/prompts/">AI utility commands</a></h3></li> <li><h3><a href="https://www.aisharenet.com/en/shicao/">AI hands-on tutorials</a></h3></li> <li><h3><a href="https://www.aisharenet.com/en/knowledge/">AI knowledge</a></h3></li> </ul> </nav> <p><a href="https://www.aisharenet.com/sitemap.xml/">Site Map</a> | 京ICP备2024074324号-1</p></p> <script type="rocketlazyloadscript"> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?5f43b25449b254d1083e5abc36e61add"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </div> </footer> <template id="tp-language" data-tp-language="en_US"></template><div data-rocket-location-hash="39f54fc47d5efb2f80981ec7da160882" class="karbar karbar-rb"><ul><li class="karbar-totop"><a rel="nofollow" href="javascript:(TBUI.scrollTo());"><i class="tbfa"></i><span>Top</span></a></li></ul></div> <script type="rocketlazyloadscript">window.TBUI={"www":"https:\/\/www.aisharenet.com\/en","uri":"https:\/\/www.aisharenet.com\/wp-content\/themes\/dux","ajaxurl":"https:\/\/www.aisharenet.com\/wp-admin\/admin-ajax.php","ver":"9.2","roll":"1 2","copyoff":0,"ajaxpager":"0","fullimage":"1","captcha":0,"captcha_comment":0,"captcha_login":0,"captcha_register":0,"table_scroll_m":1,"table_scroll_w":"800","pre_color":1,"pre_copy":1,"lang":{"copy":"\u590d\u5236","copy_success":"\u5df2\u590d\u5236","comment_loading":"\u8bc4\u8bba\u63d0\u4ea4\u4e2d...","comment_cancel_edit":"\u53d6\u6d88\u7f16\u8f91","loadmore":"\u52a0\u8f7d\u66f4\u591a","like_login":"\u70b9\u8d5e\u8bf7\u5148\u767b\u5f55","liked":"\u4f60\u5df2\u8d5e\uff01","delete_post":"\u786e\u5b9a\u5220\u9664\u8fd9\u4e2a\u6587\u7ae0\u5417\uff1f","read_post_all":"\u70b9\u51fb\u9605\u8bfb\u4f59\u4e0b\u5168\u6587","copy_wechat":"\u5fae\u4fe1\u53f7\u5df2\u590d\u5236","sign_password_less":"\u5bc6\u7801\u592a\u77ed\uff0c\u81f3\u5c116\u4f4d","sign_username_none":"\u7528\u6237\u540d\u4e0d\u80fd\u4e3a\u7a7a","sign_email_error":"\u90ae\u7bb1\u683c\u5f0f\u9519\u8bef","sign_vcode_loading":"\u9a8c\u8bc1\u7801\u83b7\u53d6\u4e2d","sign_vcode_new":" \u79d2\u91cd\u65b0\u83b7\u53d6"},"captcha_appid":""}</script> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/en\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/dux\/*","\/en\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script type="rocketlazyloadscript"> window.addEventListener("load", function() { let element = document.createElement("script"); element.async = true; element.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8152038832870620"; element.crossOrigin = "anonymous"; document.body.appendChild(element); }); </script> <div id="trp-floater-ls" onclick="" data-no-translation class="trp-language-switcher-container trp-floater-ls-names trp-bottom-right trp-color-light flags-full-names" > <div data-rocket-location-hash="661b75893e935dfe03a9b2a832b89cf6" id="trp-floater-ls-current-language" class="trp-with-flags"> <a href="#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()"> <img class="trp-flag-image" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2018%2012'%3E%3C/svg%3E" width="18" height="12" alt="en_US" title="English" data-lazy-src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_US.png"><noscript><img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_US.png" width="18" height="12" alt="en_US" title="English" data-no-translation=""></noscript>English </a> </div> <div id="trp-floater-ls-language-list" class="trp-with-flags" > <div data-rocket-location-hash="d8b43656a561ee215f399e4bc818cfe9" class="trp-language-wrap trp-language-wrap-bottom"> <a href="https://www.aisharenet.com/shengchengweidaima/" title="简体中文"> <img class="trp-flag-image" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2018%2012'%3E%3C/svg%3E" width="18" height="12" alt="zh_CN" title="简体中文" data-lazy-src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/zh_CN.png"><noscript><img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/zh_CN.png" width="18" height="12" alt="zh_CN" title="简体中文" data-no-translation=""></noscript>简体中文 </a> <a href="https://www.aisharenet.com/ja/shengchengweidaima/" title="日本語"> <img class="trp-flag-image" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2018%2012'%3E%3C/svg%3E" width="18" height="12" alt="ja" title="日本語" data-lazy-src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/ja.png"><noscript><img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/ja.png" width="18" height="12" alt="ja" title="日本語" data-no-translation=""></noscript>日本語 </a> <a href="https://www.aisharenet.com/de/shengchengweidaima/" title="Deutsch"> <img class="trp-flag-image" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2018%2012'%3E%3C/svg%3E" width="18" height="12" alt="de_DE" title="Deutsch" data-lazy-src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/de_DE.png"><noscript><img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/de_DE.png" width="18" height="12" alt="de_DE" title="Deutsch" data-no-translation=""></noscript>Deutsch </a> <a href="https://www.aisharenet.com/pt/shengchengweidaima/" title="Português do Brasil"> <img class="trp-flag-image" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2018%2012'%3E%3C/svg%3E" width="18" height="12" alt="pt_BR" title="Português do Brasil" data-lazy-src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/pt_BR.png"><noscript><img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/pt_BR.png" width="18" height="12" alt="pt_BR" title="Português do Brasil" data-no-translation=""></noscript>Português do Brasil </a> <a href="#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()"><img class="trp-flag-image" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2018%2012'%3E%3C/svg%3E" width="18" height="12" alt="en_US" title="English" data-lazy-src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_US.png"><noscript><img class="trp-flag-image" src="https://www.aisharenet.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_US.png" width="18" height="12" alt="en_US" title="English" data-no-translation=""></noscript>English</a></div> </div> </div> <script type="text/javascript" id="rocket_lazyload_css-js-extra"> /* <![CDATA[ */ var rocket_lazyload_css_data = {"threshold":"300"}; /* ]]> */ </script> <script type="text/javascript" id="rocket_lazyload_css-js-after"> /* <![CDATA[ */ !function o(n,c,a){function u(t,e){if(!c[t]){if(!n[t]){var r="function"==typeof require&&require;if(!e&&r)return r(t,!0);if(s)return s(t,!0);throw(e=new Error("Cannot find module '"+t+"'")).code="MODULE_NOT_FOUND",e}r=c[t]={exports:{}},n[t][0].call(r.exports,function(e){return u(n[t][1][e]||e)},r,r.exports,o,n,c,a)}return c[t].exports}for(var s="function"==typeof require&&require,e=0;e<a.length;e++)u(a[e]);return u}({1:[function(e,t,r){"use strict";{const c="undefined"==typeof rocket_pairs?[]:rocket_pairs,a=(("undefined"==typeof rocket_excluded_pairs?[]:rocket_excluded_pairs).map(t=>{var e=t.selector;document.querySelectorAll(e).forEach(e=>{e.setAttribute("data-rocket-lazy-bg-"+t.hash,"excluded")})}),document.querySelector("#wpr-lazyload-bg-container"));var o=rocket_lazyload_css_data.threshold||300;const u=new IntersectionObserver(e=>{e.forEach(t=>{t.isIntersecting&&c.filter(e=>t.target.matches(e.selector)).map(t=>{var e;t&&((e=document.createElement("style")).textContent=t.style,a.insertAdjacentElement("afterend",e),t.elements.forEach(e=>{u.unobserve(e),e.setAttribute("data-rocket-lazy-bg-"+t.hash,"loaded")}))})})},{rootMargin:o+"px"});function n(){0<(0<arguments.length&&void 0!==arguments[0]?arguments[0]:[]).length&&c.forEach(t=>{try{document.querySelectorAll(t.selector).forEach(e=>{"loaded"!==e.getAttribute("data-rocket-lazy-bg-"+t.hash)&&"excluded"!==e.getAttribute("data-rocket-lazy-bg-"+t.hash)&&(u.observe(e),(t.elements||=[]).push(e))})}catch(e){console.error(e)}})}n(),function(){const r=window.MutationObserver;return function(e,t){if(e&&1===e.nodeType)return(t=new r(t)).observe(e,{attributes:!0,childList:!0,subtree:!0}),t}}()(document.querySelector("body"),n)}},{}]},{},[1]); /* ]]> */ </script> <script type="rocketlazyloadscript" data-minify="1" data-rocket-type="text/javascript" data-rocket-src="https://www.aisharenet.com/wp-content/cache/min/1/wp-content/themes/dux/assets/js/loader.js?ver=1744889951" id="loader-js" data-rocket-defer defer></script> <script type="rocketlazyloadscript" data-rocket-type="text/javascript" id="wbp-magicpost-js-before"> /* <![CDATA[ */ var wb_magicpost_cnf={"ver":"1.3.0","pd_name":"MagicPost","dir":"https:\/\/www.aisharenet.com\/wp-content\/plugins\/magicpost\/","ajax_url":"https:\/\/www.aisharenet.com\/wp-admin\/admin-ajax.php","pid":6117,"uid":0,"share_switch":"0","dl_switch":"1"}; /* ]]> */ </script> <script type="rocketlazyloadscript" data-minify="1" data-rocket-type="text/javascript" data-rocket-src="https://www.aisharenet.com/wp-content/cache/min/1/wp-content/plugins/magicpost/assets/wbp_magicpost.js?ver=1744889951" id="wbp-magicpost-js" data-rocket-defer defer></script> <script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue} if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue} images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1} if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://www.aisharenet.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script>var rocket_beacon_data = {"ajax_url":"https:\/\/www.aisharenet.com\/wp-admin\/admin-ajax.php","nonce":"0e82ec5d3b","url":"https:\/\/www.aisharenet.com\/en\/shengchengweidaima","is_mobile":false,"width_threshold":1600,"height_threshold":700,"delay":500,"debug":null,"status":{"atf":true,"lrc":true},"elements":"img, video, picture, p, main, div, li, svg, section, header, span","lrc_threshold":1800}</script><script data-name="wpr-wpr-beacon" src='https://www.aisharenet.com/wp-content/plugins/wp-rocket/assets/js/wpr-beacon.min.js' async></script><script>"use strict";function wprRemoveCPCSS(){var preload_stylesheets=document.querySelectorAll('link[data-rocket-async="style"][rel="preload"]');if(preload_stylesheets&&0<preload_stylesheets.length)for(var stylesheet_index=0;stylesheet_index<preload_stylesheets.length;stylesheet_index++){var media=preload_stylesheets[stylesheet_index].getAttribute("media")||"all";if(window.matchMedia(media).matches)return void setTimeout(wprRemoveCPCSS,200)}var elem=document.getElementById("rocket-critical-css");elem&&"remove"in elem&&elem.remove()}window.addEventListener?window.addEventListener("load",wprRemoveCPCSS):window.attachEvent&&window.attachEvent("onload",wprRemoveCPCSS);</script><noscript><link data-minify="1" rel='stylesheet' id='wxsync_main_css-css' href='https://www.aisharenet.com/wp-content/cache/min/1/wp-content/plugins/wxsync/libs/wxsync.css?ver=1744889951' type='text/css' media='screen' /><link data-minify="1" rel='stylesheet' id='usp_style-css' href='https://www.aisharenet.com/wp-content/cache/background-css/1/www.aisharenet.com/wp-content/cache/min/1/wp-content/plugins/user-submitted-posts/resources/usp.css?ver=1744889951&wpr_t=1745574242' type='text/css' media='all' /><link data-minify="1" rel='stylesheet' id='trp-floater-language-switcher-style-css' href='https://www.aisharenet.com/wp-content/cache/min/1/wp-content/plugins/translatepress-multilingual/assets/css/trp-floater-language-switcher.css?ver=1744889951' type='text/css' media='all' /><link data-minify="1" rel='stylesheet' id='trp-language-switcher-style-css' href='https://www.aisharenet.com/wp-content/cache/background-css/1/www.aisharenet.com/wp-content/cache/min/1/wp-content/plugins/translatepress-multilingual/assets/css/trp-language-switcher.css?ver=1744889951&wpr_t=1745574242' type='text/css' media='all' /><link data-minify="1" rel='stylesheet' id='style-css' href='https://www.aisharenet.com/wp-content/cache/min/1/wp-content/themes/dux/style.css?ver=1744889951' type='text/css' media='all' /><link data-minify="1" rel='stylesheet' id='tablepress-default-css' href='https://www.aisharenet.com/wp-content/cache/min/1/wp-content/plugins/tablepress/css/build/default.css?ver=1744889951' type='text/css' media='all' /><link data-minify="1" rel='stylesheet' id='wbp-magicpost-css' href='https://www.aisharenet.com/wp-content/cache/min/1/wp-content/plugins/magicpost/assets/wbp_magicpost.css?ver=1744889951' type='text/css' media='all' /></noscript></body> </html> <!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me --> <!-- plugin=object-cache-pro client=phpredis metric#hits=8061 metric#misses=86 metric#hit-ratio=98.9 metric#bytes=4409463 metric#prefetches=0 metric#store-reads=172 metric#store-writes=39 metric#store-hits=947 metric#store-misses=35 metric#sql-queries=80 metric#ms-total=1399.38 metric#ms-cache=214.48 metric#ms-cache-avg=1.0214 metric#ms-cache-ratio=15.3 sample#redis-hits=780245236 sample#redis-misses=80046144 sample#redis-hit-ratio=90.7 sample#redis-ops-per-sec=133 sample#redis-evicted-keys=0 sample#redis-used-memory=1143923208 sample#redis-used-memory-rss=1224212480 sample#redis-memory-fragmentation-ratio=1.1 sample#redis-connected-clients=1 sample#redis-tracking-clients=0 sample#redis-rejected-connections=0 sample#redis-keys=2033370 -->