Type-safe, K-sortable, globally unique identifier inspired by Stripe IDsTypeID A type-safe, K-sortable, globally unique identifier inspired by Stripe IDs What is it? TypeIDs are a modern, type-safe extension of UUIDv7. Inspired by a similar use of prefixes in Stripe's APIs. TypeIDs are canonically encoded as lowercase strings consisting of three parts: A type prefix (at most 63 characters in all lowercase ASCII [a-z]) An underscore '_' separator A 128-bit UUIDv7 encoded as a 26-…
🆓免费的 ChatGPT 镜像网站列表,持续更新。List of free ChatGPT mirror sites, continuously updated.Awesome Free ChatGPT 🎁 免费的 ChatGPT (https://chat.openai.com/) 镜像网站列表,以及更多免费资源,持续更新。 此处列出的网站均来源于互联网,请注意不要在这些网站上输入任何个人敏感信息。 🌈 欢迎贡献 添加镜像站点 反馈站点失效 更多(todo) 如果您发现此项目有用,不要忘记 star 🌟,您的支持是我前进的动力。 🏆 赞助商 🏆 👉 WeexAI 支持 GPT4、Claude100K,AI 绘画、联网搜索、谷歌搜索、必应搜索、语音合成,多达 60 余种角色对话,60 余种 AI 语音。 目录 Awesome Free ChatGPT 目录 💬 ChatGPT 镜像列表 🗨️ ChatGPT 替代方案 📚 更多... 💿 构建你自己的 ChatGPT 镜像 💡 提示词(Prompt) 📝 自建内容库 💻 开发者工具 🌟 St…
Tesla Fleet Telemetry At Tesla, we believe that security and privacy are core tenets of any modern technology. Customers should be able to decide what data they share with third parties, how they share it, and when it can be shared. We've developed Fleet Telemetry, a decentralized framework that allows customers to create a secure and direct bridge from their Tesla devices to any provider they authorize. Fleet Telemetry is a simple, scalable, and secure data exchange service for vehicle…
All you need for End-to-end Autonomous Driving End-to-end Autonomous Driving This repo is all you need for end-to-end autonomous driving research. We present awesome talks, comprehensive paper collections, benchmarks, and challenges. Table of Contents At a Glance Learning Materials for Beginners Workshops and Talks Paper Collection Benchmarks and Datasets Competitions / Challenges Contributing License Citation Contact At a Glance The autonomous driving community has witnessed a rapid growt…
基于vue-cli5.x/vite2.x + vue3.x + ant-design-vue3.x + typescript hooks 的基础后台管理系统模板 RBAC的权限系统, JSON Schema动态表单,动态表格,漂亮锁屏界面vue3-antd-admin 基于 vue-cli5.x 重构整个前后端项目,完善后端权限控制细粒度,封装更多场景化组件...正在完善中 基于 vue-cli5.x / vite2.x + vue3.x + antd-design-vue3.x + typescript4.x 的后台管理系统模板 账号:rootadmin,密码:123456 在线预览( gitee / vercel ) swagger 文档 后台地址 react 版 coding vite 版 gitee 地址 根据 JSON 生成 typescript 的工具:http://json2ts.com/ 部分设计参考了 vue-vben-admin 安装使用 获取项目代码 git clone https://github.com/buqiyuan/vue3-antd-ad…
Remove backgrounds from images directly in the browser environment with ease and no additional costs or privacy concerns. Explore an interactive demo.Background Removal in the Browser Remove backgrounds from images directly in the browser environment with ease and no additional costs or privacy concerns. Explore an interactive demo. Overview @imgly/background-removal is a powerful npm package that allows developers to seamlessly remove the background from images directly in the browser. Wi…
《构筑大语言模型应用:应用开发与架构设计》一本关于 LLM 在真实世界应用的开源电子书,介绍了大语言模型的基础知识和应用,以及如何构建自己的模型。其中包括Prompt的编写、开发和管理,探索最好的大语言模型能带来什么,以及LLM应用开发的模式和架构设计。构筑大语言模型应用:应用开发与架构设计 aka. Unlocking the Potential of Large Language Models: Real-World Use Cases 2023 年的上半年里,我(@phodal)和 Thoughtworks 的同事们(如:@tianweiliu、@teobler、@mutoe 等)、 开源社区的同伴们(如: 卷王@CGQAQ、@genffy、 @liruifengv 等) 一起,创建了一系列的流行的或者不流行的开源项目。它们涉及了: LLM 能力的充分运用 Prompt 编写:Prompt 学习与编写模式 Prompt 管理:Prompt 即代码 LLM 下的软件开发工序及应用架构设计 新的交互设计:Chat模式 大模型友好的工序:基于 AI 2.0 (ChatG…
花了大半个月,我终于逆向分析了Github Copilot 背景 众所周知,Github Copilot是一种基于机器学习的代码自动补全工具。它使用了来自GitHub的大量代码作为训练数据,并使用OpenAI的语言模型来生成代码。Copilot还可以学习用户的编码习惯,并根据上下文推断出正确的代码片段。 在实际使用中发现大部份提示还是非常好用的,能够较为准确的推测出用户意图,甚至是基于项目其他文件的上下文进行推理。比较好奇这里是怎么做到的,于是探索了这个VSCode插件的详细实现。 准备工作 由于Copilot并没有开源,因此我们需要做一些逆向的准备。 首先,找到VSCode插件的安装目录,拿到extension.js: 在mac下插件目录在~/.vscode下,我们可以拿到一个经过压缩混淆的文件: 1. 分割webpack_modules 针对整个webpack压缩混淆的js,我们首先要将不同的bundle识别出来,分割成单个文件,以便于后续的分析。 由于压缩后的代码存在很多不确定性,一开始打算尝试通过正则提取,但无论如何都有各种边界情况导致提取不正确,最简单的方法还是通过AS…