<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>维C博客</title>
        <link>https://vcblog.eu.cc</link>
        <description></description>
        <lastBuildDate>Thu, 06 Aug 2026 03:38:42 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <item>
            <title><![CDATA[我制作了一个 TCP 调试工具]]></title>
            <link>https://vcblog.eu.cc/post/14</link>
            <guid isPermaLink="false">14</guid>
            <description><![CDATA[软件预览：

![](https://www.nodeloc.com/uploads/default/original/3X/e/f/efb1931d549af04c7633c4eb455de7e4f173b473.png)

软件非常轻量，全部使用 python 标准库写成，同时支持客户端和服务器，右侧文本框支持直接回车发送，并附带 10 个快速输入框，全部配置实时存盘

下载地址：https:]]></description>
        </item>
        <item>
            <title><![CDATA[我制作了一个基于 buildroot 的 riscv64 qemu 镜像]]></title>
            <link>https://vcblog.eu.cc/post/13</link>
            <guid isPermaLink="false">13</guid>
            <description><![CDATA[项目地址：https://github.com/rvhosting/minihttpsys

这个镜像包含了最小可用的 HTTP 服务器工具

内置 **nginx** **php-fpm** **python**

具体可看 [readme](https://github.com/rvhosting/minihttpsys/blob/main/README.md)
]]></description>
        </item>
        <item>
            <title><![CDATA[为了更高的性能和可读性，AI Gateway 已使用 Hono 框架重构]]></title>
            <link>https://vcblog.eu.cc/post/12</link>
            <guid isPermaLink="false">12</guid>
            <description><![CDATA[1. 现有客户端需要更改吗？不需要，完全与 express 版兼容
2. 现有 Worker 需要更改吗？可选，这次重构更多的是为了可读性
3. 现有数据库需要迁移吗？不需要，数据表结构与 express 版一致

以及分享一个我做的模板

https://github.com/partxic/cfworker-hono-vue-starter
]]></description>
        </item>
        <item>
            <title><![CDATA[终于把困扰 AI Gateway 的一个顽固问题解决了]]></title>
            <link>https://vcblog.eu.cc/post/11</link>
            <guid isPermaLink="false">11</guid>
            <description><![CDATA[项目地址：https://github.com/partxic/aigateway

commit：https://github.com/partxic/aigateway/commit/941f5a65624b625cfdeb7ee1f4d6e9007aa8b87a

问题概述：无法长对话，AI 回复时间一长就会 Worker exceeded CPU time limit.

问题原因：

`]]></description>
        </item>
        <item>
            <title><![CDATA[将 AI Gateway 导入 Chatbox 中使用]]></title>
            <link>https://vcblog.eu.cc/post/10</link>
            <guid isPermaLink="false">10</guid>
            <description><![CDATA[Chatbox 是我比较喜欢的一个 AI 客户端，只需简单配置即可获得清爽的界面

Chatbox 软件下载（当然也可以用网页版）：https://chatboxai.app/zh

AI Gateway 部署（仅需一个 D1 数据库）：https://github.com/partxic/aigateway

首先到 `/dashboard/account-manage` 获取一下 API Ke]]></description>
        </item>
        <item>
            <title><![CDATA[我制作了一个在 Cloudflare Worker 上运行的 AI 网关]]></title>
            <link>https://vcblog.eu.cc/post/9</link>
            <guid isPermaLink="false">9</guid>
            <description><![CDATA[功能是将多个 OpenAI 兼容端点聚合到一个中

项目地址：https://github.com/partxic/aigateway

## 部署步骤

1. 打开 wrangler.jsonc 修改

```jsonc
    "d1_databases": [
        {
            "binding": "db",
            "database_name"]]></description>
        </item>
        <item>
            <title><![CDATA[我制作了一个在 Cloudflare Worker 上运行的邮件客户端]]></title>
            <link>https://vcblog.eu.cc/post/8</link>
            <guid isPermaLink="false">8</guid>
            <description><![CDATA[项目地址：https://github.com/partxic/mailclient

## 部署步骤

1. Fork 存储库

2. 打开 wrangler.jsonc 并修改 kv_namespaces

```json
{
    "binding": "data",
    "id": "<这里填你的 KV Namespace ID>"
}
```

3. 创建 Worker, 并选择连]]></description>
        </item>
        <item>
            <title><![CDATA[在 Cloudflare Worker 中连接外部 SMTP / IMAP 服务器]]></title>
            <link>https://vcblog.eu.cc/post/7</link>
            <guid isPermaLink="false">7</guid>
            <description><![CDATA[代码参考：https://github.com/partxic/mailclient/blob/main/src/mail.js

支持：

- SMTP `587` `465` 端口（Worker 限制，不能连接 25 端口）
- IMAP `143` `993` 端口
]]></description>
        </item>
        <item>
            <title><![CDATA[使用 pybuild 打包 ErisPulse 应用程序]]></title>
            <link>https://vcblog.eu.cc/post/6</link>
            <guid isPermaLink="false">6</guid>
            <description><![CDATA[pybuild 主库地址：https://github.com/pybuild-org/pybuild-archive-v1

pybuild 模板库地址：https://github.com/pybuild-org/template-v1

ErisPulse 框架主库地址：https://github.com/ErisPulse/ErisPulse

首先需要创建一个空目录作为项目根目录

以]]></description>
        </item>
        <item>
            <title><![CDATA[我制作了一个 python 多架构跨平台打包工具]]></title>
            <link>https://vcblog.eu.cc/post/5</link>
            <guid isPermaLink="false">5</guid>
            <description><![CDATA[项目地址：https://github.com/pybuild-org/pybuild-archive-v1

# 使用方法

```plaintext
pybuild target.xml

```

请根据下方的标签使用指南编写您的构建配置文件。

# 标签使用指南

## log

**功能：** 输出日志信息。

```xml
<log></log>

```

该标签内部的内容将作为日志]]></description>
        </item>
    </channel>
</rss>