很简单,你可以把它理解成一个**“车险续保对比和压价提示词模板”**。 使用方式就是:以后你把销售聊天记录、报价单截图、福利信息发给装了这个 skill 的助手,它就会按这个套路自动帮你拆。
你可以怎么用
最常见的就是这几种问法:
用法 1:让它直接分析报价
你可以说:
很简单,你可以把它理解成一个**“车险续保对比和压价提示词模板”**。 使用方式就是:以后你把销售聊天记录、报价单截图、福利信息发给装了这个 skill 的助手,它就会按这个套路自动帮你拆。
你可以怎么用
最常见的就是这几种问法:
用法 1:让它直接分析报价
你可以说:
| ;1、域名组 | |
| ruleset=🔍 Google,https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/refs/heads/master/rule/Clash/Google/Google.list | |
| ruleset=📘 GitHub,https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/refs/heads/master/rule/Clash/GitHub/GitHub.list | |
| ruleset=👯♂️ TikTok,https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/refs/heads/master/rule/Clash/TikTok/TikTok.list | |
| ruleset=🙋 Telegram,https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/rule/Clash/Telegram/Telegram.list | |
| ruleset=🕊️ Twitter(X),https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/rule/Clash/Twitter/Twitter.list | |
| ruleset=🗣️ Facebook,https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/refs/heads/master/rule/Clash/Facebook/Facebook.list | |
| ruleset=🌳 Amazon,https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/refs/heads/master/rule/Clash/Amazon/Amazon.list | |
| ruleset=🍎 Apple,https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/rule/Clash/Apple/Apple.list | |
| rulese |
| // http://stackoverflow.com/questions/21961839/simulation-background-size-cover-in-canvas | |
| function drawImageProp(ctx, img, x, y, w, h, offsetX, offsetY) { | |
| if (arguments.length === 2) { | |
| x = y = 0; | |
| w = ctx.canvas.width; | |
| h = ctx.canvas.height; | |
| } | |
| // default offset is center | |
| offsetX = typeof offsetX === "number" ? offsetX : 0.5; |
| <body> | |
| <style> | |
| body { margin: 0; font-size: 24; font-family: sans-serif } | |
| .li-1 { background: red } | |
| .li-2 { background: green } | |
| .li-3 { background: yellow } | |
| .li-4 { background: purple } | |
| .li-0 { background: gray } | |
| </style> | |
| <script src="compiled.js"></script> |
| // ---- | |
| // Sass (v3.3.4) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| // ----------------------------------------------------------------------------- | |
| // Introduction | |
| // ----------------------------------------------------------------------------- | |
| // Here is hacky and experimental solution for cross-scopes extends |
| // By @coderitual | |
| // https://twitter.com/coderitual/status/1112297299307384833 | |
| // Remove any duplicates from an array of primitives. | |
| const unique = [...new Set(arr)] | |
| // Sleep in async functions. Use: await sleep(2000). | |
| const sleep = (ms) => (new Promise(resolve => setTimeout(resolve, ms))); | |
| // Type this in your code to break chrome debugger in that line. |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParentelem.clientLeft, elem.clientTop, elem.clientWidth, elem.clientHeightelem.getClientRects(), elem.getBoundingClientRect()| // Add custom Events to javascript objects in the browser with a Node.js style syntax | |
| // https://gist.github.com/alextaujenis/0dc81cf4d56513657f685a22bf74893d | |
| // Copyright 2018 Alex Taujenis | |
| // MIT License | |
| class Events { | |
| constructor () { | |
| this._callbacks = {} | |
| } |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <div id="app"> | |
| <ul> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Binding the same event listeners more than once</title> | |
| </head> |