selfboot

Results 32 issues of selfboot

微信公众号平台支持用API 导入图文: https://developers.weixin.qq.com/doc/offiaccount/Draft_Box/Add_draft.html 一般 markdown 转换来的 html ,直接作为 content 的话,导入后列表啥的都是错乱的。 ``` { "articles": [ { "title":TITLE, "author":AUTHOR, "digest":DIGEST, "content":CONTENT, "content_source_url":CONTENT_SOURCE_URL, "thumb_media_id":THUMB_MEDIA_ID, "need_open_comment":0, "only_fans_can_comment":0 } //若新增的是多图文素材,则此处应还有几段articles结构 ] } ``` 这里可以提供一个基础库,可以支持导出一个 content,然后用接口插入格式正确的文章。

enhancement

### Suggestion 一个更简单的迁移工具: https://github.com/selfboot/html2notion 现在印象笔记也不再支持导出 *.enex 格式的文件了,这个脚本暂时用不了。 不过好在印象笔记支持导出 html 格式笔记,所以重新开发了一个工具 htmlnotion,可以方便,快速,近乎完美的迁移笔记道notion。 目前对于印象笔记普通笔记和超级笔记里的绝大部份格式,比如表格,复选框,代码,引用,颜色,链接等内容,都支持无损迁到notion 笔记本。 中间某篇导入失败也不会影响其他笔记;错误会有详细的提示,可以在 https://github.com/selfboot/html2notion 提issue ;

enhancement

I used tcmalloc as a memory allocator, and then after new memory, it was not reclaimed and was not recognized by the bcc tool `memleak`. ```c++ // leak_lib.cpp namespace LeakLib...

Run: memleak.py -p 38521 --combined-only Get the following exception: ``` Traceback (most recent call last): File "/usr/local/drop/tools/ebpf/memleak.py", line 573, in print_outstanding_combined() File "/usr/local/drop/tools/ebpf/memleak.py", line 546, in print_outstanding_combined trace = "\n\t\t".join(trace.decode())...

Support for migrating images with links.

feature

### 请先确认以下事项: - [X] 已仔细阅读了 [README](https://github.com/tisfeng/Easydict#readme) - [X] 在 [issues](https://github.com/tisfeng/Easydict/issues) 页面搜索过问题(包括已关闭的 issue),但未能找到解决方法 - [X] Easydict 已升级到最新版本 ### 问题描述 一些老机型只能升级到 MacOS 11 了,在这些机器编译的时候,会遇到 `Use of undeclared identifier 'SMAppService'` 错误。 看了下在 mac...

bug
help wanted

# 功能 完整的[推箱子游戏](https://gallery.selfboot.cn/en/games/sokoban),使用良好的游戏设计图,带移动小人的动画,自带100个关卡。通过关卡后本地有记录,下次可以继续挑战下一个关卡。 除了自定义关卡,还支持编辑自己的关卡,编辑完之后可以保存下来,分享链接给其他人玩。 # Claude 辅助实现 个人是后端开发,没有前端开发经验。使用 Claude3.5 和 cursor ,在周末快速完成推箱子游戏的开发。AI 帮助实现代码,帮助解决一些 bug,整体体验很流畅。 地址: [https://gallery.selfboot.cn/en/games/sokoban ](https://gallery.selfboot.cn/en/games/sokoban)

作为C++后台开发,没有前端基础的情况下,用 Cursor 和 Claude3.5 实现了经典的[扫雷游戏](https://gallery.selfboot.cn/zh/games/minesweeper)。 不是简单的 Demo,**功能完成度很高**,**代码开源**。 1. 支持扫雷各种操作,支持左键,右键等操作,双击自动揭开,自动标雷等操作 2. 支持经典方格扫雷,也支持花样的蜂窝扫雷。 3. 有丰富的主题支持,可以切换 4. 自动保留配置,下次加载页面自动用上次配置 5. 支持自定义扫雷宽和高,以及雷的个数 此外,还写了多篇博客文章,来记录自己从零开发扫雷游戏过程中使用 AI 的体验。 1. [用 Claude3.5 从零写扫雷游戏-基本功能篇](https://gallery.selfboot.cn/zh/blog/minesweeper) 2. [用 Claude3.5 从零写扫雷游戏-实现蜂窝地图](https://gallery.selfboot.cn/zh/blog/minesweeper2) 3. [用...

Can you support rss or atom, i really need it.

In a write operation, if WAL is written successfully but memtable is written unsuccessfully, will this lead to data inconsistency? If a memtable write fails, LevelDB returns an error status...