会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Loading
踩坑大王
博客园
首页
新随笔
联系
订阅
管理
[置顶]
一些交流社区汇总
摘要: 机器学习: https://blog.csdn.net/weixin_44789022/article/details/137631634 https://docs.pingcode.com/ask/ask-ask/189158.html
阅读全文
posted @ 2024-06-20 11:13 踩坑大王的日记
阅读(38)
评论(0)
推荐(0)
2026年5月20日
jetbrain 破解
摘要: ckey.run curl -Ls ckey.run -o ckey.run && bash ckey.run 利用开源项目激活 利用开源项目免费申请 JetBrains 激活码,官方申请地址:https://www.jetbrains.com/shop/eform/opensource?produ
阅读全文
posted @ 2026-05-20 09:40 踩坑大王的日记
阅读(10)
评论(0)
推荐(0)
2026年4月24日
openclaw 远程访问
摘要: ssh 隧道映射 ssh -L 18789:127.0.0.1:18789 <username>@<ip> htto
阅读全文
posted @ 2026-04-24 14:08 踩坑大王的日记
阅读(6)
评论(0)
推荐(0)
2026年4月23日
openclaw 接入微信,并设置定时任务
摘要: 1. 单开手动配置,使用默认main agent 1. 登陆 # 登录微信(扫码) openclaw channels login --channel openclaw-weixin # 重启网关让配置生效 openclaw gateway restart # 查看状态 openclaw chann
阅读全文
posted @ 2026-04-23 17:15 踩坑大王的日记
阅读(82)
评论(0)
推荐(0)
2026年4月20日
openclaw 服务化笔记
摘要: 方案参考Open WebUI[1]文档中提供的两种方式 服务化方式 Gateway: OPENAPI 兼容API[2] 配置网络,开发兼容API入口 { "gateway": { "http": { "endpoints": { "chatCompletions": { "enabled": tru
阅读全文
posted @ 2026-04-20 16:29 踩坑大王的日记
阅读(101)
评论(0)
推荐(0)
2026年4月19日
关于python编译后无需安装py环境的方案
摘要: 参考https://www.reddit.com/r/golang/comments/16px62p/go_vs_python_whats_the_difference_and_is_go_a/?tl=zh-hans
阅读全文
posted @ 2026-04-19 15:50 踩坑大王的日记
阅读(6)
评论(0)
推荐(0)
【GO - 01】初始化项目
摘要: IDE: GoLand 1. IDE自动创建项目 初始化项目存在两个文件,如图 2. 手动创建[1] 配置Go Root(Go SDK) 初始化Go Modules go mod init <module_name> # 例如:go mod init my_go_project 此时生成go.mod
阅读全文
posted @ 2026-04-19 15:13 踩坑大王的日记
阅读(12)
评论(0)
推荐(0)
2026年4月17日
clawbot 使用总结
摘要: bot_token 超过24时,用户未发送消息,可能存在掉线 bot连续发送10条后无法主动发送消息,出现{ret:-2}的限制,需要用户主动发送消息解除
阅读全文
posted @ 2026-04-17 09:17 踩坑大王的日记
阅读(24)
评论(0)
推荐(0)
2026年3月25日
自建模型中心服务出现并发响应慢的问题
摘要: 使用fast-api搭建服务 当执行单次请求时,响应速度正常 如果并发量提高至60,则耗时在100s 左右 思路: NEW API
阅读全文
posted @ 2026-03-25 16:54 踩坑大王的日记
阅读(5)
评论(0)
推荐(0)
2026年3月2日
openclaw+feishu实例踩坑记录
摘要: 问题1: 接入feishu,首次聊天出现 解决: 在openclaw里添加配对码 openclaw pairing approve feishu XXXXXXX 问题2: 更换openclaw模型配置
阅读全文
posted @ 2026-03-02 00:15 踩坑大王的日记
阅读(104)
评论(0)
推荐(0)
2025年11月3日
cfg文件无法存储dict数据
摘要: import configparser import unittest from configparser import SectionProxy def test_read_llm_config(provider: str): file = '../llm_config.cfg' config =
阅读全文
posted @ 2025-11-03 18:12 踩坑大王的日记
阅读(14)
评论(0)
推荐(0)
AWS |ssh连接
摘要: 默认账号ec2-user 该服务器在旧电脑上有保存密钥对,需要对此做更新和替换 在aws控制台登陆实例: 开放ssh权限 $ sudo -i $ vi /etc/ssh/sshd_config PasswordAuthentication no,把 no 改成 yes #PermitRootLogi
阅读全文
posted @ 2025-11-03 16:17 踩坑大王的日记
阅读(34)
评论(0)
推荐(0)
2025年10月29日
半结构化数据表头解析vlm方案
摘要: 走vlm需要将excel 转换成 pdf 存在一个问题: 当表头过长时,转换后会被分页 因此需要设置参数手动调整 解决方案: https://www.e-iceblue.com/Tutorials/Python/Spire.XLS-for-Python/Program-Guide/Conversio
阅读全文
posted @ 2025-10-29 10:10 踩坑大王的日记
阅读(10)
评论(0)
推荐(0)
2025年9月30日
python 联表查询耗时长
摘要: @staticmethod def get_user_kb_visit_records(tenant_id: str, user_id: str, page: int, limit: int) -> dict: query = KnowledgeBaseUserVisitLog.query.filt
阅读全文
posted @ 2025-09-30 17:51 踩坑大王的日记
阅读(22)
评论(0)
推荐(0)
2025年9月17日
域名购买方案
摘要: https://linux.do/t/topic/963151/21
阅读全文
posted @ 2025-09-17 12:44 踩坑大王的日记
阅读(11)
评论(0)
推荐(0)
2025年7月28日
1
摘要: import json import logging from collections.abc import Generator from datetime import datetime from typing import Any, Union from core.agent.base_agen
阅读全文
posted @ 2025-07-28 11:09 踩坑大王的日记
阅读(24)
评论(0)
推荐(0)
下一页
公告