摘要: opencode安装 # Intel Mac 可能需要加上 --unsafe-perm 避免权限问题npm install -g opencode-ai --unsafe-perm # 验证opencode --version 1. 配置opencode配置文件 1. ~/.config/openc 阅读全文
posted @ 2026-04-14 14:26 Οo白麒麟оΟ 阅读(137) 评论(0) 推荐(0)
摘要: https://algo.itcharge.cn/01.Array/https://www.hello-algo.com/chapter_hashing/hash_map/https://metaso.cn/ ai搜索https://github.com/qianguyihao/blog-list 阅读全文
posted @ 2025-01-16 16:25 Οo白麒麟оΟ 阅读(19) 评论(0) 推荐(0)
摘要: 背景​ 在搜索引擎和数据存储中,高效处理多样化的查询需求至关重要。以公司名称和时间字段为例,这些字段可能需要同时支持全文搜索和精确匹配。Elasticsearch 提供了多字段功能,允许单个字段展示多种行为,例如分词搜索和精确匹配。本文将分析如何利用多字段功能,处理具有多种类型需求的字段,如 nam 阅读全文
posted @ 2025-01-07 10:19 Οo白麒麟оΟ 阅读(323) 评论(0) 推荐(0)
摘要: GOPROXY=https://goproxy.cn,direct;GONOSUMDB=github.com/YOLOTECHNOLOGY;GONOPROXY=github.com/YOLOTECHNOLOGY;GOPRIVATE=github.com/YOLOTECHNOLOGY 配置到golan 阅读全文
posted @ 2024-05-16 14:16 Οo白麒麟оΟ 阅读(75) 评论(0) 推荐(0)
摘要: 1. 背景与需求 为了让运营团队更直观地获取相关数据,我们计划部署一个BI平台,并尽可能地将其集成在Admin运营平台中。这样,运营团队不仅能查看数据,还能通过图形化界面进行更深入的分析。 2. BI 平台介绍 - Metabase 2.1 选型原因 Metabase以其用户友好性、多样化的数据可视 阅读全文
posted @ 2024-05-10 13:46 Οo白麒麟оΟ 阅读(205) 评论(0) 推荐(0)
摘要: 打开项目根目录下的 .pre-commit-config.yaml 文件,将其中的配置删除或者注释掉。 删除 .git/hooks/pre-commit 文件,如果存在的话。 使用以下命令将 pre-commit 从 git 钩子中移除: rm .git/hooks/pre-commit ls -a 阅读全文
posted @ 2024-04-11 20:05 Οo白麒麟оΟ 阅读(144) 评论(0) 推荐(0)
摘要: python 安装 在 requirements.txt 增加了 github 私有安装库的依赖 git+https://${GITHUB_TOKEN}@github.com/YOLOTECHNOLOGY/bossjob-auth-lib.git@${GITHUB_LIB_BRANCH} 当前该库无 阅读全文
posted @ 2024-04-01 15:05 Οo白麒麟оΟ 阅读(70) 评论(0) 推荐(0)
摘要: from django.core.management.base import BaseCommand from chat_greeting_messages.models import Greeting import os from django.db import connection clas 阅读全文
posted @ 2024-03-24 21:49 Οo白麒麟оΟ 阅读(47) 评论(0) 推荐(0)
摘要: 参考链接 https://blog.csdn.net/lilyssh/article/details/118178091https://juejin.cn/post/7207248115223789628 brew 安装redis https://blog.csdn.net/qq_39496303/ 阅读全文
posted @ 2024-03-21 23:47 Οo白麒麟оΟ 阅读(224) 评论(0) 推荐(0)
摘要: 前言 protoc 是 protobuf 文件(.proto)的编译器,可以借助这个工具把 .proto 文件转译成各种编程语言对应的源码,包含数据类型定义、调用接口等。 protoc 在设计上把 protobuf 和不同的语言解耦了,底层用 c++ 来实现 protobuf 结构的存储,然后通过插 阅读全文
posted @ 2024-03-10 19:40 Οo白麒麟оΟ 阅读(339) 评论(0) 推荐(0)