Skip to content

Instantly share code, notes, and snippets.

View weilinfox's full-sized avatar
🦊
Lazy

桜風の狐 weilinfox

🦊
Lazy
View GitHub Profile
@djkcyl
djkcyl / qq_message_xml.md
Created December 4, 2021 15:16 — forked from mnixry/qq_message_xml.md
QQ的XML消息格式整理

QQ的XML消息格式整理

QQ可以使用xml的方式发送消息,以下为了方便描述统称为卡片。

发送方式

通过机器人的API进行发送xml即可,但是如果选择发送xml,那么其他如[image=xxx][@xxx]这些命令就不可使用了。整个消息只有XML。

基本结构

@arq5x
arq5x / test.sh
Last active November 30, 2023 12:50
Compress and then Decompress a string with zlib.
# compile
$ g++ zlib-example.cpp -lz -o zlib-example
# run
$ ./zlib-example
Uncompressed size is: 36
Uncompressed string is: Hello Hello Hello Hello Hello Hello!
----------