Home

Finclip代码管理

Here’s the table of contents: Conventional Commits格式 配置Git用户-局部 配置Git用户-全局 Conventional Commits格式 fix: 修复App.vue内容 feat: add new feature X docs: 更新README.md 配置Git用户-局部 git config user.name "Your Name" git config user.email "your.email@example.com" 配置Git用户-全局 git config --global user.name "Your Name" git config --global user.email "...

Read more

使用Nvm管理多版本Node.js环境

Here’s the table of contents: 安装Nvm 安装指定版本Node.js 切换到Node.js指定版本 验证安装 设置默认版本 安装Nvm 访问nvm-windows的GitHub页面 安装指定版本Node.js nvm install 18.18.0 切换到Node.js指定版本 nvm use 18.18.0 验证安装 node -v npm -v 设置默认版本 nvm alias default 18.18.0

Read more

UI与UX 设计工具

Here’s the table of contents: UI/UX 设计工具 小程序页面设计 UI/UX 设计工具 Galileo AI Uizard Framer Visily Creatie 墨刀 即时设计 Pixso Figma BUI 小程序页面设计 小程序页面设计综述1 小程序页面设计综述2 小程序页面设计规范1 小程序页面设计规范2 小程序页面设计参考1

Read more

AI-3D 项目

Here’s the table of contents: AI-3D 项目 3D模型生成小程序 AI-3D 项目 Luma AI 【不支持从图片生成】【文生3D,处于领先地位】 Meshy 【人像不行】 Tripo 【人像面部还行,其它细节不行】【公开评测结果较好】【图生3D、文生3D,Tripo是断层式领先】 CSM 【人像不行】 SudoAI 【人像不行】 Style2Fab Latte3D voxcraft 【人像不行】 Stability AI - TripoSR OpenAI Shap-E 英伟达发布 GET3D 和 Magic3D Point-E Stable Dreamfusion Move.AI ...

Read more

常用CYPHER查询(五)

Here’s the table of contents: Graph RAG 通常引用的格式 多标签并发查询 将查询结果转换为树结构 日期处理 Graph RAG 通常引用的格式 MATCH p=(n:图谱大纲)-[r*..2]-() WHERE ANY(word IN ['cpi'] WHERE n.topic CONTAINS UPPER(word)) WITH NODES(p) AS nodes, RELATIONSHIPS(p) AS rels RETURN REDUCE(s = '', i IN RANGE(0, SIZE(nodes) - 2) | s + nodes[i].topic + ', ' + (CASE WHEN STARTNODE(re...

Read more

Elasticsearch-7.5.1测试向量检索功能

Here’s the table of contents: Elasticsearch-7.5.1测试向量检索功能 Elasticsearch-7.5.1测试向量检索功能 # https://github.com/elastic/elasticsearch/blob/e8c382f89553e3a7aaafa88a5934288c1192acdc/docs/reference/vectors/vector-functions.asciidoc # 在向量函数计算过程中,对所有匹配的文档进行线性扫描。因此,查询预计时间会随着匹配文档的数量线性增长。出于这个原因,建议使用查询参数限制匹配文档的数量。 # cosinessimilarity -计算余弦相似度 # dotPro...

Read more

streamlit.cli问题解决

Here’s the table of contents: streamlit.cli问题解决 streamlit.cli问题解决 修改streamlit版本后这个问题解决 pip install streamlit==1.12.0 pip install streamlit --upgrade streamlit hello GITHUB: [Regression][Conda] ModuleNotFoundError: No module named ‘streamlit.cli’

Read more

UNSAFE_LEGACY_RENEGOTIATION_DISABLED问题解决

Here’s the table of contents: UNSAFE_LEGACY_RENEGOTIATION_DISABLED问题解决 UNSAFE_LEGACY_RENEGOTIATION_DISABLED问题解决 可以降低版本到 OpenSSL 1.1.1 或使用以下代码: import urllib3 from urllib3.util.ssl_ import create_urllib3_context ctx = create_urllib3_context() ctx.load_default_certs() ctx.options |= 0x4 # ssl.OP_LEGACY_SERVER_CONNECT with urllib3.Poo...

Read more