<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="/feeds/rss-style.xsl" type="text/xsl"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>蓝星空 AI 编程</title>
        <link>https://www.lanxk.com/zh/</link>
        <description>蓝星空的个人博客网站，分享和记录 AI 编程以及网站开发中遇到的问题和解决方案。</description>
        <lastBuildDate>Wed, 18 Mar 2026 17:05:21 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>Astro-Theme-Retypeset with Feed for Node.js</generator>
        <language>zh</language>
        <copyright>Copyright © 2026 Lanxk</copyright>
        <atom:link href="https://www.lanxk.com/zh/rss.xml" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[Markdown 转 PDF：我为什么选择浏览器原生打印方案？]]></title>
            <link>https://www.lanxk.com/zh/posts/markdown-to-pdf-print-solution/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/markdown-to-pdf-print-solution/</guid>
            <pubDate>Thu, 12 Mar 2026 02:00:00 GMT</pubDate>
            <description><![CDATA[详细分析了 md-to.com 的 Markdown 转 PDF 功能为什么从 html2pdf.js 迁移到浏览器原生打印方案。]]></description>
            <content:encoded><![CDATA[<p>把 Markdown 文档转成 PDF 格式看起来很简单，因为使用 html2pdf.js 配置非常方便，几十行代码就搞定了，转换成 PDF 也非常快，但是实际测试下来发现问题不少。
我在开发 <a href="https://md-to.com/zh-cn/markdown-to-pdf/">Markdown 转 PDF</a> 功能时折腾了好几天，反复修改了很多版代码，最后还是从 html2pdf.js 迁移到了浏览器原生打印方案。</p>
<hr />
<h2>Markdown 转 PDF 为什么选浏览器原生打印方案？</h2>
<p>纯前端（无后端）转 PDF 基本就三个方案：</p>
<ol>
<li>服务端渲染（Puppeteer/Playwright）- 静态站点不适用</li>
<li>客户端 JS 生成（html2pdf.js, jsPDF + html2canvas）- 位图输出</li>
<li>浏览器原生打印（<code>window.print()</code>）- 矢量 PDF，分页由浏览器引擎处理</li>
</ol>
<p>我最开始是使用了 html2pdf.js ，但是它的主要问题有：</p>
<ul>
<li>位图输出：PDF 其实是图片，选不了字也搜不了</li>
<li>分页不稳：长代码块、嵌套列表容易被硬切（这是最大的问题）</li>
<li>性能压力：长文档要渲染很多 Canvas，移动端很容易卡</li>
</ul>
<p>后来改用浏览器原生打印，就完美解决了文字被硬切的问题，另外文字能选中能搜索，链接不丢，文件也更小，分页还更稳定。</p>
<hr />
<h2>核心架构：Overlay + iframe</h2>
<p>直接 <code>window.print()</code> 会把整页 UI 都打印出来，我们使用 iframe 把内容分离出来，步骤如下：</p>
<ol>
<li>点击“下载 PDF”</li>
<li>生成全屏 overlay 和工具栏</li>
<li>按模板生成打印样式</li>
<li>把带样式的 HTML 写入 iframe</li>
<li>用户点击打印，触发 <code>iframe.contentWindow.print()</code></li>
</ol>
<p>这样既能预览，又不会影响主页面样式。</p>
<hr />
<h2>CSS 分页关键规则</h2>
<pre><code>@media print {
  tr, pre, blockquote, img, .katex-display {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    break-after: avoid;
  }
  table { page-break-inside: auto; }
  thead { display: table-header-group; }
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
</code></pre>
<p>这些规则可以避免截断、重复表头、保留背景色。</p>
<hr />
<h2>打印对话框引导</h2>
<p>建议在 UI 里直接提示用户这样设置：</p>
<ol>
<li>目标：另存为 PDF</li>
<li>背景图形：勾选</li>
<li>页眉页脚：取消</li>
<li>纸张：A4 或 Letter</li>
<li>页边距：默认</li>
</ol>
<hr />
<h2>总结</h2>
<p>只要能接受弹出打印对话框，浏览器原生打印就是目前最稳、最省心、质量也最好的方案。
如果大家有更好的方案或相关的问题，欢迎留言讨论。</p>
<hr />
<p><strong>相关链接</strong>：</p>
<ul>
<li><a href="https://md-to.com/zh-cn/blog/markdown-to-pdf-print-solution/">纯前端 Markdown 转 PDF：从 html2pdf.js 到浏览器原生打印的技术演进</a></li>
<li><a href="https://md-to.com/zh-cn/markdown-to-pdf/">md-to.com Markdown 转 PDF 工具</a></li>
<li><a href="https://md-to.com/zh-cn/blog/markdown-to-pdf-guide/">Markdown 转 PDF 使用教程</a></li>
</ul>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[QClaw(腾讯小龙虾OpenClaw) 下载地址和邀请码申请方法]]></title>
            <link>https://www.lanxk.com/zh/posts/openclaw-qclaw-faq/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/openclaw-qclaw-faq/</guid>
            <pubDate>Tue, 10 Mar 2026 04:00:00 GMT</pubDate>
            <description><![CDATA[QClaw(腾讯小龙虾OpenClaw) 下载地址和邀请码申请方法]]></description>
            <content:encoded><![CDATA[<h2>一、QClaw 下载地址？</h2>
<p>QClaw 官方网站：https://claw.guanjia.qq.com/</p>
<p><img src="../images/openclaw/qclaw.png" alt="QClaw" /></p>
<h3>QClaw Mac 版下载地址</h3>
<p>macOS (Apple 芯片) https://cdn.m.qq.com/qclaw/arm/5001/QClaw-latest-arm64.dmg
macOS (Intel 芯片) https://cdn.m.qq.com/qclaw/intel/5001/QClaw-latest-x64.dmg</p>
<h3>QClaw Windows 版下载地址</h3>
<p>QClaw Windows 版：https://cdn.m.qq.com/qclaw/win/5001/QClaw-Setup-latest.exe</p>
<h2>二、QClaw 邀请码获得方法</h2>
<ol>
<li>填写表单申请（这是腾讯官方给的表单）：
Qlaw 邀请码申请入口：
https://wj.qq.com/s2/26010208/ltnx/ （这是新的申请入口）</li>
</ol>
<p>https://wj.qq.com/s2/25871229/abe7/ （这是旧的申请入口）</p>
<ol>
<li>加入内测企业微信群</li>
</ol>
<h2>三、QClaw 使用相关问题</h2>
<ol>
<li>提示邀请码不对怎么办？
注意看一下是不是字母写错了，比如 I l 在手机上容易看错，可以试试换一个字母，或者直接复制。</li>
</ol>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[ChatGPT Codex APP 常见问题和解决方法]]></title>
            <link>https://www.lanxk.com/zh/posts/chatgpt-codex-app-faq/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/chatgpt-codex-app-faq/</guid>
            <pubDate>Tue, 03 Feb 2026 12:00:00 GMT</pubDate>
            <description><![CDATA[ChatGPT Codex APP 下载地址、订阅计划、中文设置、常见报错解决方法和使用量查询等常见问题汇总。]]></description>
            <content:encoded><![CDATA[<h2>一、Codex APP下载地址？</h2>
<h3>Codex APP Mac 版下载地址</h3>
<p>https://chatgpt.com/codex/get-started
如果上面这个网址打不开的话，就直接用这个链接下载：https://persistent.oaistatic.com/codex-app-prod/Codex.dmg</p>
<h3>Codex APP Windows 版下载地址</h3>
<p>https://apps.microsoft.com/detail/9plm9xgg6vks?hl=zh-CN</p>
<h2>二、ChatGPT 哪些订阅计划可以使用 Codex APP？可以免费试用 Codex App 吗？</h2>
<p><img src="../images/codex-app/plan.png" alt="ChatGPT Plan" />
ChatGPT 的 Plus(20美元每月) 和 Pro（200美元每月）的订阅套餐支持使用 Codex。
2月3日开始了限免活动，Free（0元）和 Go（8美元每月）也可以免费使用 Codex 功能。</p>
<h2>三、在 Mac 上启动 Codex APP 时报错：你无法打开应用程序“Codex”，因为这台 Mac 不支持此应用程序</h2>
<p><img src="../images/codex-app/not-support.png" alt="你无法打开应用程序“Codex”，因为这台 Mac 不支持此应用程序" /></p>
<p>原因：当前这个版本的 Codex APP 不支持 Intel CPU 版的 Mac。
解决方法：等官方出 Intel Mac 版，或者先用 Codex Cli 或 Codex 插件版。</p>
<h2>四、 Codex APP 报错：Your access token could not be refreshed</h2>
<p>解决方法：退出登录，再重新登录一次就可以了。</p>
<h2>五、怎么查询 Codex APP 的使用量？</h2>
<p>到这个页面查询：https://chatgpt.com/codex/settings/usage</p>
<p><img src="../images/codex-app/usage.png" alt="ChatGPT Codex 使用量" /></p>
<h2></h2>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[必应&必应站长工具(Bing Webmaster Tools)常见问题和解决方案（2026年2月更新）]]></title>
            <link>https://www.lanxk.com/zh/posts/bing-indexing-faq/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/bing-indexing-faq/</guid>
            <pubDate>Thu, 01 Jan 2026 13:00:00 GMT</pubDate>
            <description><![CDATA[必应收录网站和必应站长工具(Bing Webmaster Tools)的一些常见问题和解决方法。]]></description>
            <content:encoded><![CDATA[<h2>一、提示：我们无法连接到此 URL的DNS(域名服务器)。如果你无法解决该问题，请咨询你的技术团队、网站托管商并联系必应网站管理员工具支持部门。</h2>
<p>我遇到的情况和解决过程：</p>
<ol>
<li>域名注册、解析并绑定服务器大概1、2个小时后去提交了 Bing，URL 检查返回了 DNS 问题（箭头1）</li>
<li>点击“实时 URL”，这时候显示的测试页面是正常的，直接点击“请求编制索引”按钮（箭头2）</li>
<li>中午1点再检查时显示“已成功编制索引”。</li>
</ol>
<p><img src="../images/bing/bing-webmaster-dns-error.png" alt="Bing Webmaster 提示 DNS 问题" /></p>
<h2>二、提示：已发现但未爬网</h2>
<p>解决方法：先解决发现的 SEO 问题，然后再提交申诉。</p>
<h2>三、必应网站管理员支持报错：无可用数据</h2>
<p>访问必应网站管理员支持页面（ https://www.bing.com/webmasters/help/webmasters-support-24ab5ebf ）时出现页面空白，底部出现红条（显示文字：无可用数据）
我猜可能是必应网站在改版，把这个 URL 地址写错了。</p>
<p>解决方法：</p>
<ol>
<li>访问这个正确的反馈页面：https://www.bing.com/webmasters/support</li>
<li>或者把 Bing Webmaster 网站的语言设置为英语。</li>
</ol>
<p><a href="https://www.lanxk.com/zh/posts/how-do-i-get-bing-to-index-my-site/">怎么填写反馈表单？请看这篇文章的第4条</a></p>
<hr />
<p>更新时间：2026.2.1</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Agent Skills 常见问题和解决方法]]></title>
            <link>https://www.lanxk.com/zh/posts/agent-skills-faq/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/agent-skills-faq/</guid>
            <pubDate>Tue, 30 Dec 2025 21:00:00 GMT</pubDate>
            <description><![CDATA[Agent Skills 常见的一些问题和解决方法。]]></description>
            <content:encoded><![CDATA[<h2>一、Agent Skills 支持哪些 AI 代码编辑器？</h2>
<p>Agent Skills 目前支持的代码编辑器有如下这些： claude-code, codex, cursor, github, letta, vscode型：</p>
<ul>
<li>Claude Code</li>
<li>VS Code（Github Copilot）</li>
<li>ChatGPT Codex</li>
<li>Cursor</li>
<li>Google Antigravity（从 v1.14.2 版开始支持）</li>
</ul>
<h2>二、Agent Skills 的安装方法（安装命令行）</h2>
<p>npx skills-installer install skill名称 --client 客户端名称
下面以安装 @anthropics/claude-code/frontend-design 为例：</p>
<h3>1. Claude Code 安装 Skill 命令</h3>
<pre><code>npx skills-installer install @anthropics/claude-code/frontend-design --client claude-code 
</code></pre>
<h3>2. Cursor 安装 Skill 命令</h3>
<pre><code>npx skills-installer install @anthropics/claude-code/frontend-design --client cursor
</code></pre>
<h3>3. ChatGPT Codex(使用 VSCode Codex 插件或 Codex Cli) 安装 Skill 命令</h3>
<pre><code>npx skills-installer install @anthropics/claude-code/frontend-design --client codex
</code></pre>
<h3>4. Google Antigravity 安装 Skill 的方法</h3>
<p>直接把 skill 目录复制到 ~.gemini\antigravity\skills 目录下就可以了。</p>
<h2>三、 安装 Agent Skill 提示“npx skills-installer: command not found”的解决方法</h2>
<p><img src="../images/skills/skills-install-command-not-found.png" alt="npx skills-installer: command not found" /></p>
<p>出现这个错误的原因是复制的“npx skills-installer”这个命令中间的空格有问题，删除这个空格再重新输入一个空格就可以了。</p>
<h2>四、怎么判断 skills 有没有安装成功？</h2>
<p>直接问：已经安装了哪些 skills ？</p>
<h2>五、怎么使用 skills ？</h2>
<p>一般聊到相关的关键词都会触发，也可以直接说 skill 的名字来使用，比如：请使用 frontend-design 这个 skill 帮我重新设计网站风格。</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Google Antigravity 怎么设置中文&使用中文回复图文教程]]></title>
            <link>https://www.lanxk.com/zh/posts/google-antigravity-chinese/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/google-antigravity-chinese/</guid>
            <pubDate>Thu, 18 Dec 2025 18:30:00 GMT</pubDate>
            <description><![CDATA[谷歌反重力 Google Antigravity 怎么设置中文菜单和界面，怎么使用中文回复的详细图文教程]]></description>
            <content:encoded><![CDATA[<h2>一、Google Antigravity 设置中文的方法和步骤</h2>
<ol>
<li>先安装 VS Code 中文语言插件，直接在 Extension 搜索栏搜索“中文”或“Chinese”，可以选择安装简体中文或繁体中文，如下图所示：</li>
</ol>
<p><img src="../images/google/google-antigravity-chinese.png" alt="安装 VS Code 中文插件" /></p>
<ol>
<li>按快捷键 Ctrl + Shift + P (windows) 或 Command + Shift + P（Mac），搜索“language”，点击 Configure Display Language，再点击“中文（简体）”或“中文（繁体）”（如下图所示），接下来点击“Restart”按钮，重启 Google Antigravity 后就显示中文了。如果要切换回到英语，也是这个步骤。</li>
</ol>
<p><img src="../images/google/google-antigravity-chinese-select.png" alt="在 Google Antigravity 在选择显示中文" /></p>
<h2>二、Google Antigravity 设置使用中文回复的方法和步骤</h2>
<p>主要是通过在全局规则里面设置使用中文回复的规则，步骤如下：</p>
<p><img src="../images/google/google-antigravity-add-rules.png" alt="Google Antigravity 全局规则添加方法和设置步骤" /></p>
<ol>
<li>点击 Agent 对话窗口右上角的三点图标；</li>
<li>再点击 Customizations；</li>
<li>点击“+ Global”，这时候会在用户目录的 .gemini/ 目录下生成文件 GEMINI.md；</li>
<li>关闭 Global Antigravity Rules File 提示；</li>
<li>直接在 GEMINI.md 文件里面使用纯文本写规则，比如“Agent 回复请使用简体中文”，写完后直接保存；</li>
<li>保存后就能在 Rules 这里看到编辑后的Google Antigravity全局规则内容了；</li>
<li>最后蓝星空在 Agent 对话框里面输入“请帮忙检查一下规则有没有应用？”，然后 Google Antigravity 回复说：我已经确认这些规则 已经应用。</li>
</ol>
<h2>三、为什么在 Antigravity 里设置了全局规则后还是使用英语回复？</h2>
<p>选择 Gemini 模型的时候是会有这个问题，第一句回复的时候可能用的还是中文，第二句之后就会变成英文了。
推荐在 Antigravity 里优先选择 Claude 4.5 Sonnet 或 4.5 Opus，这两个大模型能更好的遵守全局规则并用中文回复。</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor 常见问题和解决方法]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-faq/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-faq/</guid>
            <pubDate>Sun, 14 Dec 2025 23:30:00 GMT</pubDate>
            <description><![CDATA[Cursor 常见的一些问题（比如怎么设置中文、跟其他 AI 开发工具的比较、选择使用的大模型不支持当前地区）和解决方法。]]></description>
            <content:encoded><![CDATA[<h2>一、Cursor 收费吗？</h2>
<p>Cursor 有免费版，提供了7天 Pro 版的试用，一周试用结束后，会限制 Agent 请求次数和 Tab 补全次数。
Cursor 的个人版收费套餐又分为：20美元的 Pro、60元的 Pro+、200美元的 Ultra，这三者的区别主要在于 OpenAI、Claude、Gemini 模型的使用量不同。</p>
<h2>二、Cursor 使用哪个大模型效果最好？</h2>
<p>写代码的话，蓝星空个人推荐使用 Claude Sonnet 4.5(Thinking)，写的代码质量蛮不错的，修复 Bug 的效率也很高。相比较而言，Claude Opus 4.5 太贵了，提升的效果目前看来不是特别明显。</p>
<h2>三、Cursor 怎么设置中文？</h2>
<ol>
<li>先安装 VS Code 语言插件，直接在 Extension 搜索栏搜索“中文”，可以选择安装简体中文或繁体中文，如下图所示：</li>
</ol>
<p><img src="../images/cursor/cursor-chinese.png" alt="在 Cursor 里安装 VS Code 中文插件" /></p>
<ol>
<li>按快捷键 Ctrl + Shift + P，搜索 Language，点击 Configure Display Language，再点击“中文（简体）”或“中文（繁体）”（如下图所示），接下来点击“Restart”按钮，重启 Cursor 客户端后就显示中文了。如果要切换回到英语，也是这个步骤。</li>
</ol>
<p><img src="../images/cursor/cursor-chinese-select.png" alt="Cursor 选择显示中文" /></p>
<h2>四、Cursor 跟 Github Copilot 比较哪个更好？</h2>
<p>蓝星空个人选 Cursor，我之前已经付费购买了 Github Copilot的年付会员，几个月前我就基本上只用 Cursor，几乎不使用 Github Copilot 了。
当初选择 Cursor 最主要的原因就是 Cursor 的 Tab 补全非常好用，秒杀 Github Copilot。
后来 Cursor 又陆续推荐了很多新的功能，已经把 Github Copilot 远远抛在了后面。</p>
<h2>五、Cursor 跟 ChatGPT Codex 比较哪个更好？</h2>
<p>Cursor 和 Codex 这两个蓝星空都在用，平时大部分时候用 Cursor，速度快，使用方便，解决大部分问题也足够了。
遇到一些比较复杂或 Cursor 解决不了的问题，就用 Codex。
另外，创建一个新项目的时候，我也会优先使用 Codex，他做的 UI 更好一些。
Codex 的缺点是太慢了，所以不太适合用来处理一些简单的问题。</p>
<h2>六、Cursor 跟 Google Antigravity 比较哪个更好？</h2>
<p>我个人觉得各有各的优点，我最近使用一段时间后的感觉是：</p>
<ol>
<li>在 <a href="https://www.lanxk.com/zh/posts/google-antigravity-faq/">Google Antigravity</a> 里面使用 Gemini 3 Pro 的效果比在 Cursor 里面使用 Gemini 3 Pro 的效果要好；</li>
<li>在 Cursor 里面使用 Claude Sonnet 4.5 和 Claude Opus 4.5 的效果比在 Google Antigravity 里面使用 Claude Sonnet 4.5 和 Claude Opus 4.5 的效果更好一些；</li>
<li>Google Antigravity 里面可以调用 Nano Banana 来生成图片，这一点比 Cursor 要强。</li>
</ol>
<h2>七、Cursor出错提示: Model not available. This model provider doesn't serve your region.</h2>
<p>弹出这个错误的原因是当用选择使用的大模型不支持用户所在的地区。
解决方法请看这里: <a href="https://www.lanxk.com/zh/posts/cursor-model-not-available/">Model not available. This model provider doesn't serve your region</a></p>
<h2>八、Cursor 提示：Unauthorized request. User is unauthorized</h2>
<p>这个出错的原因是：电脑系统的时间不对。
解决方法：调整电脑系统的日期和时间，设置成正常的就可以了（可能需要重启一下 Cursor 客户端）。</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[北京社保缴费流程攻略(2025年12月)]]></title>
            <link>https://www.lanxk.com/zh/posts/shebaojiaofei/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/shebaojiaofei/</guid>
            <pubDate>Wed, 10 Dec 2025 00:30:00 GMT</pubDate>
            <description><![CDATA[北京社保缴费流程攻略(2025年12月10日更新)]]></description>
            <content:encoded><![CDATA[<h2>一、北京市税务局网站社保费申报流程</h2>
<ol>
<li>
<p>打开<a href="https://etax.beijing.chinatax.gov.cn/xxmh/html/index_login.html">北京市税务局网站</a>，跳转到登录页面（如下图），选择“电子营业执照”，然后用手机微信扫描二维码。 扫描成功后，“电子营业执照”小程序会让你选择办理业务的电子执照，选择后会提示输入“执照密码”，如果没有修改过密码的话，密码默认是“123456”，输入后点击“确认”，然后会弹出“授权登录”页面，需要再点击一次“确认登录”，等待几秒钟后，小程序里面会提示“授权成功”，再等几秒钟，电脑上的页面会自动登录成功。
<img src="../images/shebao/1.png" alt="登录税务局网站" /></p>
</li>
<li>
<p>登录成功后会跳转到这个页面：国家税务总局电子税务局，直接点击“社保费业务”（如下图），或者直接访问：https://etax.beijing.chinatax.gov.cn:8443/xxzx/view/nsrxxzx/sbf 。
<img src="../images/shebao/2.png" alt="社保费业务" /></p>
</li>
<li>
<p>点右边的“日常申报”。
<img src="../images/shebao/3.png" alt="日常申报" /></p>
</li>
<li>
<p>在“日常申报”页面上会把要缴的费用都显示出来，先把这些都勾选上，再点“提交申报”。
<img src="../images/shebao/4.png" alt="提交申报" /></p>
</li>
<li>
<p>然后会弹出一个提示框，点“立即获取”，或者等十几秒等它自动跳转也行。
<img src="../images/shebao/5.png" alt="立即获取" /></p>
</li>
<li>
<p>这个时候如果申报记录是空白的（如图所示），就再点击一下“查询” 。
<img src="../images/shebao/6.png" alt="查询" /></p>
</li>
<li>
<p>点击“查询”后，就显示出来最近的申报记录了，然后咱们找到需要缴款的这一条申报记录后面的“缴款”（如果只看到“作废”看不到“缴款”的话，那就往右滚动一下网页），点击“缴款”（图7）。
<img src="../images/shebao/7.png" alt="缴款" /></p>
</li>
<li>
<p>在“缴费”页面勾选所有要缴费的项目，再点击“立即缴费”。
<img src="../images/shebao/8.png" alt="立即缴费" /></p>
</li>
<li>
<p>点“确认”按钮（图9）。
<img src="../images/shebao/9.png" alt="确认" /></p>
</li>
<li>
<p>在“账户信息”这里，我这里什么都不选，直接点“确认”。
<img src="../images/shebao/10.png" alt="确认" /></p>
</li>
<li>
<p>接下来会跳转到“银行端查询缴税凭证”页面，我们把 (1)银行端查询缴税凭证序号(2)纳税人识别号(3)税务机关代码 这三个号码复制下来备用。
如果这个页面找不到了，可以去<a href="https://sbf.beijing.chinatax.gov.cn/dwsbf-web/#/yhdcxjf">缴费凭证打印记录页面</a> 点击“重新打印”。
<img src="../images/shebao/11.png" alt="银行端查询缴税凭证" /></p>
</li>
<li>
<p>我一般会把这三项复制下来发到自己的微信上面的“文件传输助手”。
<img src="../images/shebao/12.png" alt="文件传输助手" /></p>
</li>
</ol>
<p>接下来就是去银行柜台、或通过电脑/手机端的银行客户端来缴费了。</p>
<h2>二、通过手机银行缴税通缴纳社保费用详细步骤</h2>
<p>蓝星空这里以“招商银行”手机APP为例：</p>
<ol>
<li>
<p>搜索“缴税通”，点击进入“缴税通”页面。
<img src="../images/shebao/21.png" alt="缴税通" /></p>
</li>
<li>
<p>看下图，按图片上的提示输入对应的 (1)银行端查询缴税凭证序号(2)纳税人识别号(3)税务机关代码，再点击“查询”按钮。
<img src="../images/shebao/22.png" alt="填写银行端查询缴税凭证序号、纳税人识别号、税务机关代码" /></p>
</li>
<li>
<p>确认没问题后，拖动页面到最底部，点击“缴费”。
<img src="../images/shebao/23.png" alt="确认缴费" /></p>
</li>
<li>
<p>在手机APP里缴费完成后，回到网页，打开“申报记录”页面（https://sbf.beijing.chinatax.gov.cn/dwsbf-web/#/dwsbjlcx ），点击“查询”，可以看到刚刚这笔申报已经缴费成功了（“缴款状态”已经变成“已缴费”）。
<img src="../images/shebao/24.png" alt="申报记录" /></p>
</li>
</ol>
<h2>三、社保缴费常见问题</h2>
<h3>1. 缴费时间（提示不在申报时间）</h3>
<p>每个月10-25日（包含10号和25号这两天）缴纳上个月的社保费用（比如12月交11月的社保费）。
如果你在10号之前或25日之后申报，就会提示不在申报时间。</p>
<h3>2. 不安装社保管理客户端可以交社保吗？</h3>
<p>在电子税务局网站交社保和在社保管理客户端交社保其实都是一样的，选择一个就可以了（有特殊需求的请按照自己的需求来选择使用哪个）。
类似的问题： 北京个体工商户自己交社保可以全程不用社保缴费客户端，只用电子税务局网站交吗？（可以，参考上面这个回答）</p>
<h3>3. 提示 “您尚未进行社保费缴费信息关联，请与主管税务机关联系。”</h3>
<p>如果你是这个月刚刚注册了个体户的话，不用着急，一般在下个月的10号会自动关联上，等到下个月10号再登录税务局网站再查看应该就可以了。
如果不是新注册的个体户，那就联系一下主管税务机关，问问是怎么回事。</p>
<h3>4. “缴费记录”显示为空怎么办？</h3>
<p>解决方法有两种：
方法一：改天再来查询一次，运气好就能显示出来（也有可能还是不显示）。
方法二：访问“单位缴费记录打印”页面（ https://sbf.beijing.chinatax.gov.cn/dwsbf-web/#/dwjfzm ），点击“查询”，稍等一、两分钟，缴费记录就显示出来了。</p>
<h3>5. 北京社保缴费提示：单位应缴数据查询失败，失败原因【无有效的汇总预处理信息】</h3>
<p>原因一：现在是2025年12月，如果你是一个老用户，上个月已经缴过社保费了，那今天遇到这个问题的话，很有可能是网站的访问人数太多导致的问题（一般每个月10-12号这几天最容易出这个问题）。
解决方法：换个时间再来试试。</p>
<p>原因二：如果你是第一次缴费，有可能需要操作一下“年度缴费工资调整”。</p>
<h3>6. 银行端查询缴税凭证序号忘了(找不到了)怎么办？</h3>
<p>可以去<a href="https://sbf.beijing.chinatax.gov.cn/dwsbf-web/#/yhdcxjf">缴费凭证打印记录页面</a> 点击“重新打印”。
<img src="../images/shebao/31.png" alt="缴费凭证打印记录" /></p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Google Antigravity （谷歌反重力）怎么添加规则？常用规则有哪些？]]></title>
            <link>https://www.lanxk.com/zh/posts/google-antigravity-rules/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/google-antigravity-rules/</guid>
            <pubDate>Mon, 08 Dec 2025 22:30:00 GMT</pubDate>
            <description><![CDATA[Google Antigravity （谷歌反重力）怎么添加规则？常用规则有哪些？]]></description>
            <content:encoded><![CDATA[<h2>一、Google Antigravity 怎么添加规则 Rules？</h2>
<p>Google Antigravity 跟 Cursor 一样，也可以添加全局规则（Global Rules）和项目规则。
下面蓝星空以全局规则为例，把 Google Antigravity 的规则添加过程截了图，详细步骤如下：</p>
<ol>
<li>点击 Agent 对话窗口右上角的三点图标；</li>
<li>再点击 Customizations；</li>
<li>点击“+ Global”，这时候会在用户目录的 .gemini/ 目录下生成文件 GEMINI.md；</li>
<li>关闭 Global Antigravity Rules File 提示；</li>
<li>直接在 GEMINI.md 文件里面使用纯文本写规则，写完后直接保存；</li>
<li>保存后就能在 Rules 这里看到编辑后的Google Antigravity全局规则内容了；</li>
<li>最后蓝星空在 Agent 对话框里面输入“请帮忙检查一下规则有没有应用？”，然后 Google Antigravity 回复说：我已经确认这些规则 已经应用。</li>
</ol>
<p><img src="../images/google/google-antigravity-add-rules.png" alt="Google Antigravity 全局规则添加方法和设置步骤" /></p>
<h2>二、Google Antigravity 常用的全局规则（Global Rules）有哪些？</h2>
<ol>
<li>Agent 回复请使用简体中文；</li>
<li>代码注释请使用简体中文；</li>
<li>页面文案请根据多语言的设置使用相应的语言（如果没有指定的话，就使用中文）。</li>
</ol>
<h2>三、Google Antigravity 常用的项目规则推荐</h2>
<p>可以直接把 Cursor 项目规则转换过来，蓝星空把之前写的<a href="https://www.lanxk.com/zh/posts/cursor-project-rules-for-vue3-mdc/">一个 Cursor 项目规则（适用于前端开发 Vue 3 项目）</a> 直接转成了 Google Antigravity 项目规则，
下载地址：https://www.lanxk.com/files/GEMINI-project-rules-for-vue3.md
下载后需要改名为 GEMINI.md，放到项目根目录/.gemini/ 目录下。</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Google Antigravity （谷歌反重力）常见问题和解决方法]]></title>
            <link>https://www.lanxk.com/zh/posts/google-antigravity-faq/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/google-antigravity-faq/</guid>
            <pubDate>Sun, 07 Dec 2025 20:30:00 GMT</pubDate>
            <description><![CDATA[Google Antigravity （谷歌反重力）常见的一些问题和解决方法。]]></description>
            <content:encoded><![CDATA[<h2>一、Google Antigravity 收费吗？</h2>
<p>Google Antigravity 目前可以免费使用，且可以免费使用这些大模型：</p>
<ul>
<li>Gemini 3 Pro (High)</li>
<li>Gemini 3 Pro (Low)</li>
<li>Claude Sonnet 4.5</li>
<li>Claude Sonnet 4.5 (Thinking)</li>
<li>Claude Opus 4.5 (Thinking)</li>
<li>GPT-OSS 120B (Medium)</li>
</ul>
<h2>二、Google Antigravity 选择使用哪个大模型效果最好？</h2>
<p>我个人推荐使用 Gemini 3 Pro (High)，生成 UI 的效果非常好！</p>
<h2>三、Google Antigravity 跟 Cursor 比较哪个更好？</h2>
<p>我个人觉得各有千秋吧，大家可以都试试。我最近使用一段时间后的感觉是：</p>
<ol>
<li>在 Google Antigravity 里面使用 Gemini 3 Pro 的效果比在 Cursor 里面使用 Gemini 3 Pro 的效果要好；</li>
<li>在 Cursor 里面使用 Claude Sonnet 4.5 和 Claude Opus 4.5 的效果比在 Google Antigravity 里面使用 Claude Sonnet 4.5 和 Claude Opus 4.5 的效果更好一些。</li>
</ol>
<h2>四、Google Antigravity 怎么设置简体中文或繁体中文？</h2>
<ol>
<li>先安装 VS Code 语言插件，直接在 Extension 搜索栏搜索“中文”，可以选择安装简体中文或繁体中文，如下图所示：</li>
</ol>
<p><img src="../images/google/google-antigravity-chinese.png" alt="安装 VS Code 中文插件" /></p>
<ol>
<li>按快捷键 Ctrl + Shift + P，点击 Configure Display Language，再点击“中文（简体）”或“中文（繁体）”（如下图所示），接下来点击“Restart”按钮，重启 Google Antigravity 后就显示中文了。如果要切换回到英语，也是这个步骤。</li>
</ol>
<p><img src="../images/google/google-antigravity-chinese-select.png" alt="在 Google Antigravity 在选择显示中文" /></p>
<h2>五、Google Antigravity 无法登录的解决方法</h2>
<h3>提示不支持的地区：Your current account is not eligible for Antigravity, because it is not currently available in your location.</h3>
<h3>提示当前账号不符合资格：Your current account is not eligible for Antigravity. Try signing in with another personal Google account. Learn more by visiting the FAQ.</h3>
<h3>提示：Setting Up Your Account</h3>
<p>解决方案请看这篇文章：<a href="https://www.lanxk.com/zh/posts/google-antigravity/">解决 Google Antigravity 无法登录和卡住问题的方法</a></p>
<h2>六、Google Antigravity 怎么下载？官方下载地址如下：</h2>
<p>https://antigravity.google/download</p>
<h2>七、Google Antigravity Agent 的大模型列表为空（显示：No Model Selected），并提示：Select Model to Send Message Select a model using the model selector in the input box</h2>
<p><img src="../images/google/select%20model%20to%20send%20message.png" alt="Google Antigravity Select Model to Send Message Select a model using the model selector in the input box" /></p>
<p>Antigravity 模型加载不出来，一般是之前已经成功登录过客户端再启动时才会出现这个问题，这个问题的解决方法也很简单：把 VPN 设置到支持的地区并开启 Tun 模式，然后再重启一下 Google Antigravity 客户端。</p>
<h2>八、提示年龄不满18周岁：Your current account is not eligible for antigravity. To use antigravity you must be 18 years old or older. If you think you are receiving this message in error, please ensure you have verified your age and try to log in again. Learn more by visiting the faq.</h2>
<p>原因是 Google 要求用户必须年满 18 周岁才能使用
解决方法：访问<a href="https://myaccount.google.com/personal-info">Google 账号个人信息</a>页面，点击<strong>生日</strong>，将出生日期修改到2007年12月之前，然后再重新登录 Google Antigravity 客户端。</p>
<h2>九、怎么设置 Antigravity 全局规则和项目规则？</h2>
<p>具体设置步骤可以查看这篇文章：<a href="https://www.lanxk.com/zh/posts/google-antigravity-rules/">谷歌反重力 Google Antigravity 怎么添加规则？</a></p>
<h2>十、 Antigravity 提示：Agent terminated due to error</h2>
<p>You can prompt the model to try again or start a new conversation if the error persists. See our troubleshooting guide for more help.</p>
<p><img src="../images/google/Agent%20terminated%20due%20to%20error.png" alt="Antigravity Agent terminated due to error" /></p>
<h4>解决方法：</h4>
<ol>
<li>点 Retry 重试一次（成功的概率不太高，接下来大概率还会继续出错）；</li>
<li>换个模型试试，比如把 Claude Opus 4.5 (Thinking) 换成 Claude Sonnet 4.5 (Thinking)，要不就换成 Gemini 3 Pro (High) 或 Gemini 3 Flash；</li>
<li>如果还是不行，可以点击 New Conversation 开启一个新对话，然后重新开始；</li>
<li>换个时间再试，比如等 5 小时配额更新了再试。</li>
</ol>
<h2>十一、Antigravity 提示： Model quota limit exceeded</h2>
<h3>You have reached the quota limit for Claude Opus 4.5 (Thinking). You can resume using this model at 1/13/2026,1:28:06 PM. You can upgrade to the Google AI UItra plan to receive the highest rate limits.</h3>
<p>触发这个错误的原因是：达到了 Antigravity 的周配额限制（或其他什么限制）。
解决方法：</p>
<ol>
<li>等待配额更新；</li>
<li>升级到 Google AI UItra 计划以获得更高的配额限制。</li>
<li>换一个模型试试；</li>
<li>换一个账号登录。</li>
</ol>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[解决 Google Antigravity 无法登录和卡住问题的方法]]></title>
            <link>https://www.lanxk.com/zh/posts/google-antigravity/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/google-antigravity/</guid>
            <pubDate>Wed, 19 Nov 2025 02:30:00 GMT</pubDate>
            <description><![CDATA[Google Antigravity 提示不支持的地区（Your current account is not eligible for Antigravity, because it is not currently available in your location.）问题的解决方法。]]></description>
            <content:encoded><![CDATA[<h2>Google Antigravity 无法登录的解决方法</h2>
<p>花了一天时间，把 Google 账号的地区从香港改到台湾后，终于成功登录了 Google Antigravity。
解决方法和步骤如下：</p>
<ol>
<li>把 Google 账号改到被支持的地区（比如美国、日本、台湾，详细步骤可以看下面）；</li>
<li>VPN 切换到被支持的地区（最好跟上面的一样），并开启 Tun 模式（可以不开全局模式）；</li>
<li>等地区修改成功后（大概一、两个小时后会收到邮件通知）重新登录就可以了，祝你成功！</li>
</ol>
<p><img src="../images/google/google-antigravity-flowchart-minimal.png" alt="解决 Google Antigravity 登录出错问题的步骤" /></p>
<h2>提示不支持的地区：Your current account is not eligible for Antigravity, because it is not currently available in your location.</h2>
<p><img src="../images/google/your%20current%20account%20is%20not%20eligible%20for%20antigravity-because%20it%20is%20not%20currently%20available%20in%20your%20location.png" alt="Your current account is not eligible for Antigravity, because it is not currently available in your location." /></p>
<p><img src="../images/google/sorry%20this%20account%20is%20ineligible%20to%20use%20antigravity.png" alt="Sorry, this account is ineligible to use Antigravity" /></p>
<p>大概意思是说使用的 Google 账号不在支持的地区范围，解决方法是修改地区。</p>
<h2>修改 Google 账号所在地区的方法</h2>
<p>访问 Google 的 Request to Change Associated Region 页面：https://policies.google.com/country-association-form ：</p>
<p><img src="../images/google/change-associated-region.png" alt="Request to Change Associated Region" /></p>
<ol>
<li>先检查地区，如果已经在支持的地区范围了，就不用修改了；</li>
<li>选择要修改的目标地区（比如美国、日本）；</li>
<li>再选择一个理由（建议不要选 VPN）；</li>
<li>然后再提交（需要人工审核，大概一小时后能收到邮件通知）。</li>
</ol>
<h2>提示当前账号不符合资格：Your current account is not eligible for Antigravity. Try signing in with another personal Google account. Learn more by visiting the FAQ.</h2>
<h3>提示当前账号不符合资格这个错误是由于当前登录使用的 Google 账号问题，可能是以下这些原因：</h3>
<ol>
<li>是 Student 账号；</li>
<li>是组织或公司账号；</li>
<li>个人账号注册时填写的出生日期到当前日期算下来还未满18周岁。</li>
</ol>
<h3>提示当前账号不符合资格的解决方法：</h3>
<p>如果是问题1或2，可以更换一个个人账号登录；
如果是问题3，可以尝试修改一下账号里面的个人出生日期。</p>
<h2>提示年龄不满18周岁：Your current account is not eligible for antigravity. To use antigravity you must be 18 years old or older. If you think you are receiving this message in error, please ensure you have verified your age and try to log in again. Learn more by visiting the faq.</h2>
<p>原因是 Google 要求用户必须年满 18 周岁才能使用
解决方法：访问<a href="https://myaccount.google.com/personal-info">Google 账号个人信息</a>页面，点击生日，将生日修改到2007年12月之前，然后再重新登录 Google Antigravity 客户端。</p>
<h2>提示：There was an unexpected issue setting up your account. We apologize for the inconvenience. Please try again later.</h2>
<p>设置账户时出现了意外问题，具体不知道是什么原因导致的。可以尝试一下这几个解决方法：</p>
<ol>
<li>过一段时间试试重新登录；</li>
<li>换一个 VPN 节点重新登录；</li>
<li>换一个 账号 重新登录。</li>
</ol>
<h2>Google Antigravity 官方下载地址</h2>
<p>https://antigravity.google/download</p>
<p>----------以下是原文，可以不用看-------</p>
<p>Google 今天发布了 Antigravity 这个 AI 编程工具，下载安装完之后，按照引导设置完了，也登录成功且跳转到了 https://antigravity.google/auth-success 页面，但是再回到 Antigravity 窗口后，一直显示 Setting Up Your Account，如下图所示：</p>
<p><img src="../images/google/setting-up-your-account.png" alt="Google Antigravity 提示：Setting Up Your Account" /></p>
<h2>Google Antigravity 提示：Setting Up Your Account 的解决方法</h2>
<p>这个问题的解决方案跟上面一样：把 VPN 设置到支持的地区并开启 Tun 模式。
另外，如果 Google 账号是 Student 的话，只能换一个账号登录了。</p>
<p>微信群里也有群友遇到了这个问题未能解决，又上国内外的各大技术论坛看了一圈，遇到这个问题的用户还挺多的，给的解决方案也很多，有说要换一个账号的，有说要换 IP 地址的，我试了一圈，暂时还没有找到一个能解决这个问题的方法。</p>
<p>希望 Google 能尽快解决这个问题，让大家尽早能体验 Antigravity（以及在 Antigravity 使用 Gemini 3 Pro）。</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor 2.0 版下载地址以及 v2.0 版更新内容]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-2-0-version-download/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-2-0-version-download/</guid>
            <pubDate>Sat, 25 Oct 2025 23:00:00 GMT</pubDate>
            <description><![CDATA[Cursor v2.0 版更新内容：在对话容器可以选择多个大模型了]]></description>
            <content:encoded><![CDATA[<p>Cursor 在10月30日凌晨的时候终于弹出了 Cursor 2.0 的 What's New 弹窗（Cursor2.0最新版的下载地址请翻到最下面）。</p>
<p><img src="../images/cursor-2-0-whats-new.png" alt="Cursor 2.0 的 What's New 弹窗" /></p>
<p>Cursor 的工作人员太拼了，周六还在更新，现在已经更新到 v2.0.9版了（10月29日已经更新到 v2.0.34版了）。</p>
<h2>Cursor v2.0 版更新内容：</h2>
<p>目前最直观的一个更新是在对话窗口可以选择多个大模型了（原来只能选择一个），后面还可以选择 1x/2x/3x/4x。</p>
<p><img src="../images/cursor-2-0-multiple-models.png" alt="新功能：可以选择多个大模型" /></p>
<p>选择多个大模型后，就可以让它们一起来 PK，同时给出多个结果。如果选择了 Models 后面的 2x，就是这个 Model 会给2份结果出来。
下面是同时选择了 claude-4.5-sonnet 1x 和 gpt-5 2x 后出来的 3 份结果：</p>
<p><img src="../images/cursor-2-0-multiple-models-demo.png" alt="选择多个大模型的结果" /></p>
<p>还多了一个语音输入的按钮，如果说的不是英语，还会自动翻译成英文的文字到输入框（我试了说中文会翻译成英文，不确定其他语言能不能识别）。识别效果还蛮不错的。</p>
<p>Layout（Agent Layout 和 Editor Layout）</p>
<p><img src="../images/cursor-2-0-layout-switch.png" alt="Agent 和 Editor 切换" /></p>
<p>Editor 就是原来的界面，新增了一个新的 Agent 界面，切换后就只显示 Agent 相关的对话框，如下图所示：</p>
<p><img src="../images/cursor-2-0-agent-layout.png" alt="Cursor Agent 界面(这是 v2.0.11 版的截图，现在最新的 v2.0.34 版又有一些小变化)" /></p>
<h2>Cursor v2.0 下载</h2>
<h3>Cursor Mac 版 v2.0.34 下载地址</h3>
<ol>
<li>
<p><a href="https://downloads.cursor.com/production/45fd70f3fe72037444ba35c9e51ce86a1977ac11/darwin/universal/Cursor-darwin-universal.dmg">darwin-universal</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/45fd70f3fe72037444ba35c9e51ce86a1977ac11/darwin/x64/Cursor-darwin-x64.dmg">darwin-x64</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/45fd70f3fe72037444ba35c9e51ce86a1977ac11/darwin/arm64/Cursor-darwin-arm64.dmg">darwin-arm64</a></p>
</li>
</ol>
<h3>Cursor Windows 版 v2.0.34 下载地址</h3>
<ol>
<li>
<p><a href="https://downloads.cursor.com/production/45fd70f3fe72037444ba35c9e51ce86a1977ac11/win32/x64/user-setup/CursorUserSetup-x64-2.0.34.exe">win32-x64-user</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/45fd70f3fe72037444ba35c9e51ce86a1977ac11/win32/arm64/user-setup/CursorUserSetup-arm64-2.0.34.exe">win32-arm64-user</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/45fd70f3fe72037444ba35c9e51ce86a1977ac11/win32/x64/system-setup/CursorSetup-x64-2.0.34.exe">win32-x64-system</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/45fd70f3fe72037444ba35c9e51ce86a1977ac11/win32/arm64/system-setup/CursorSetup-arm64-2.0.34.exe">win32-arm64-system</a></p>
</li>
</ol>
<h3>Cursor Linux v2.0.34 下载地址</h3>
<ol>
<li>
<p><a href="https://downloads.cursor.com/production/45fd70f3fe72037444ba35c9e51ce86a1977ac11/linux/x64/Cursor-2.0.34-x86_64.AppImage">linux-x64</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/45fd70f3fe72037444ba35c9e51ce86a1977ac11/linux/arm64/Cursor-2.0.34-aarch64.AppImage">linux-arm64</a></p>
</li>
</ol>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[JSON 格式化工具]]></title>
            <link>https://www.lanxk.com/zh/posts/json-formatter/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/json-formatter/</guid>
            <pubDate>Sat, 06 Sep 2025 20:00:00 GMT</pubDate>
            <description><![CDATA[开发调试网站的时候，经常会遇到需要把请求到的 JSON 数据格式化后再查看的情况。以前都是打开浏览器（Edge 或 Chrome）的 Dev...]]></description>
            <content:encoded><![CDATA[<h2>为什么要开发这个 JSON 格式化工具？</h2>
<p>开发调试网站的时候，经常会遇到需要把请求到的 JSON 数据格式化后再查看的情况。</p>
<p>以前都是打开浏览器（Edge 或 Chrome）的 DevTools 面板，点开 Network，复制接口返回的 JSON，然后再打开 VS Code，新建一个临时文件，粘贴进来，再格式化后查看。</p>
<p>就这样用了好多年，虽然有点繁琐，但是好歹还是比较顺利的，习惯了这些操作步骤后，处理起来也很快。</p>
<p>但是最近遇到了一个需要转义的 JSON 字符串，每次复制粘贴到 VS Code 里面后，无法直接格式化，需要先找个在线工具去转义，然后再粘贴到 VS Code 里面再格式化查看。</p>
<p>找了好几个在线的 JSON 格式化工具，容错性都不太好，只要 JSON 格式不够完美，就无法完成格式化，每次我都得找出错误，修改之后再能继续格式化。</p>
<p>后来，我就想为什么我自己不写一个在线工具来解决这个问题呢？</p>
<p>于是这个 <a href="https://jsonformatter.lanxk.com/zh-cn/">JSON 格式化工具网站</a>就做出来了，我把我平时遇到的问题和我能想到的需求都做进来了，比如：自动去转义、自动删除首尾引号（包括单引号和双引号）、各种容错（允许不带引号的键名、允许使用单引号、允许尾随逗号）。</p>
<p><img src="../images/website/json/json-formatter-zh.png" alt="JSON 格式化工具" /></p>
<h2>怎么使用这个 JSON 格式化工具？</h2>
<p>使用特别简单，复制非标准化的 JSON 数据后直接点击“粘贴”按钮或使用快捷键把 JSON 数据粘贴到输入框，JSON 工具就能自动去转义、删除首尾引号并格式化，然后就可以直接查看格式化的标准 JSON 格式了。</p>
<h2>JSON 工具在线网址（4种语言的版本）</h2>
<ul>
<li>英文版：https://jsonformatter.lanxk.com/</li>
<li>简体中文：https://jsonformatter.lanxk.com/zh-cn/</li>
<li>繁體中文：https://jsonformatter.lanxk.com/zh-tw/</li>
<li>日本語：https://jsonformatter.lanxk.com/ja/</li>
</ul>
<p>大家使用上有什么问题，或者有新的需求欢迎给我留言！</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[网站被必应 Bing K 站了怎么办？- 解决方案]]></title>
            <link>https://www.lanxk.com/zh/posts/bing-indexing/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/bing-indexing/</guid>
            <pubDate>Fri, 29 Aug 2025 22:00:00 GMT</pubDate>
            <description><![CDATA[6月21日 发现使用 site: lanxk.com 在 Bing 搜索结果为空的异常情况 6月22日凌晨2点多 第一次提交申诉 收到 C...]]></description>
            <content:encoded><![CDATA[<h2>Bing 索引（被K站）问题解决的时间线</h2>
<ol>
<li>
<p>6月21日
发现使用 site: lanxk.com 在 Bing 搜索结果为空的异常情况</p>
</li>
<li>
<p>6月22日凌晨2点多
第一次提交申诉
收到 Copilot 自动回复，提示存在 SEO 问题
选择继续提交表单
收到系统自动发送的确认邮件</p>
</li>
<li>
<p>6月22日 - 7月14日期间
利用等待时间，使用 Bing Webmaster 工具检查网站
发现并解决了大部分 SEO 问题（从83个错误减少到20多个）</p>
</li>
<li>
<p>7月14日
第二次提交申诉
这次 Copilot 没有提示 SEO 问题
再次收到自动回复邮件</p>
</li>
<li>
<p>7月22日（约8天后）
收到第一封人工回复邮件
被告知网站已发送给产品审核小组进行进一步评估
预计需要几周时间完成审核</p>
</li>
<li>
<p>8月19日（约4周后）
收到第二封邮件通知，是个好消息：网站问题已经解决！</p>
</li>
<li>
<p>总体耗时
从发现问题到最终解决：约2个月
第一次申诉到第二次申诉：3周
第二次申诉到问题解决：约5周</p>
</li>
</ol>
<h2>Bing 索引（被K站）问题的解决过程</h2>
<p>6月21日发现在 Bing 使用 <strong>site: lanxk.com</strong> 搜索的结果为空（不管是使用必应国内版，还是 Bing 国际版都是空的），如下图：</p>
<p><img src="../images/bing/bing-20250621.png" alt="在 Bing 使用 site: lanxk.com 搜索的结果为空" /></p>
<p>于是在6月22日凌晨2点多开始走申诉流程，不过这次跟之前提交的申诉流程好像有点不一样，这次是先弹出一个 Copilot 自动回复，提示我的网站有一些 SEO 问题，如下图所示：</p>
<p><img src="../images/bing/bing-submit-first-202506220236.png" alt="Bing 提交申诉表单 6月22日" /></p>
<p>我选择了继续提交表单，然后收到了一封系统自动发来的邮件
<img src="../images/bing/bing-email-first-20250622024416.png" alt="自动发送的邮件" /></p>
<p>之后几天一直也没啥消息，于是使用 Bing Webmaster 后台的各种工具再检查一下网站，看看能不能找出解决方法。</p>
<p>使用 URL 检查发现了一些 SEO 问题：</p>
<p><img src="../images/bing/bing-recommendations-seo-issues-20250626.png" alt="Bing URL 检查提示的 SEO 问题" /></p>
<p>打开 Recommendations 页面提示有 83 个 SEO 错误：
<img src="../images/bing/bing-recommendations-20250626.png" alt="Bing Recommendations 页面提示 83 个 SEO 错误" /></p>
<p>反正闲着也是闲着，在等待回复的这些天里，花了一些时间解决了大部分提示的问题：</p>
<p><img src="../images/bing/bing-recommendations-seo-issues-request-index-20250626.png" alt="Bing URL 检查提示：“未找到 SEO 问题”" />
<img src="../images/bing/bing-recommendations-20250829.png" alt="Bing Recommendations 页面提示只有 20 多个 SEO 错误了" /></p>
<p>等了3周时间还没有收到回复后，我于7月14日又提交了一次申诉，不过这一次 Copilot 没有再提示有 SEO 问题，看起来比上次要顺利一些了，如下图所示：
<img src="../images/bing/bing-submit-second-20250714.png" alt="Bing 提交申诉表单 7月14日" /></p>
<p>然后马上又收到了一封跟6月22号那天一样的自动回复邮件。</p>
<p>这次大概在8天后就收到了第一封人工回复的邮件，内容大概是说：
我们已审核您的网站并将其发送给我们的产品审核小组进行进一步评估。Bingbot 将继续根据 Bing 网站管理员指南对其进行评估，以确定是否应该将其编入索引。
审核过程通常需要几周时间，具体取决于您网站的复杂程度。审核完成后，我们将向您发送电子邮件通知。</p>
<p><img src="../images/bing/bing-email-second-20250722.png" alt="7月22日收到了第一封 Bing 工作人员发来的邮件" /></p>
<p>没办法，只能继续等，这几周时间是很难熬的，因为我能做的事情基本上都已经做了，现在就只能等了，不过 Bing 这几周一直在索引我的网站内容，索引都还在，只是在搜索结果里面看不到。</p>
<p>又等了4周时间后，在8月19日终于等来了好消息：网站问题已经解决！
<img src="../images/bing/bing-email-second-20250722.png" alt="8月19日收到了第二封 Bing 工作人员发来的问题已经解决的通知邮件" /></p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Viddo AI 网站 SEO 分析和优化建议]]></title>
            <link>https://www.lanxk.com/zh/posts/viddo-ai-website-optimization-audit/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/viddo-ai-website-optimization-audit/</guid>
            <pubDate>Wed, 27 Aug 2025 21:00:00 GMT</pubDate>
            <description><![CDATA[Viddo AI（一个用 AI 生成图片和视频的工具网站）上线了，我提了一些 SEO 和前端方面的问题和修改意见，顺便记录到我的 Blog，希望对其他朋友也有一点帮助]]></description>
            <content:encoded><![CDATA[<p><img src="../images/website/viddo-ai/viddo-ai-index.png" alt="Viddo AI" /></p>
<p>有个朋友的新网站 <a href="https://viddo.ai/?aff=lanxk">Viddo AI - AI 生成图片和视频</a>上线了，我提了一些 SEO 和前端方面的问题和修改意见，顺便记录到我的 Blog，希望对其他朋友也有一点帮助，可能也有一些考虑不周的地方，欢迎大家指正！</p>
<h2>SEO方面的问题和修改建议</h2>
<ol>
<li>title 太长了，超过了 60 个字符（目前有86个，建议 50 - 60 个之间）。</li>
<li>description 也太长了，建议在 150-160之间，现在有251个。</li>
<li>Keywords 可以不用写，如果要写的话目前写的 keywords 也是太多了。</li>
<li>很多图片缺少了 alt 属性。</li>
<li>Footer 部分的内部链接的 title 建议可以写的更详细一些，不要写的跟锚文本一模一样，title 属性应该是对锚文本的补充说明，你可以想一下如果想要吸引用户点击链接的话，你会写成什么样。</li>
</ol>
<pre><code>
&lt;a class="cursor-pointer" title="Veo3" href="/veo3?model=veo3"&gt;Veo3&lt;/a&gt;


&lt;a class="cursor-pointer" title="Use model Veo3 generate video" href="/veo3?model=veo3"&gt;Veo3&lt;/a&gt;
&lt;a class="cursor-pointer" title="Generate video by model Veo3" href="/veo3?model=veo3"&gt;Veo3&lt;/a&gt;
</code></pre>
<ol>
<li>缺少了 hreflangs ；</li>
<li>缺少了 结构化数据标记（Structured Data），建议使用这个类别： "@type": "Organization"。
相关文档：<a href="https://developers.google.com/search/docs/appearance/structured-data/search-gallery?hl=zh-cn">Google 搜索支持的结构化数据标记</a></li>
<li>顶部导航栏的内部链接都缺少了 title 。</li>
<li>工具页面都在下面加了很长的文案，这点做的很好，建议再把首页的 Footer 加上去，然后可以在文案里面自然的加入一些其他页面的链接。</li>
<li>Blog 页面的 URL （比如：/gpt-oss）可以写的稍微长一点，多写几个关键字进去。另外，Blog 的内容可以适当的加一些工具页面的链接进去。</li>
</ol>
<h2>交互和前端、文案方面的问题和修改建议</h2>
<ol>
<li>
<p>Log In 建议改为 Sign In（Google 用的是 Sign in with Google ）</p>
</li>
<li>
<p>左边这个图标已经置灰了，当鼠标 Hover 上去后就不要放大了，Cursor 光标应该使用默认（cursor: default）或禁止图标（cursor: not-allowed;）
<img src="../images/website/viddo-ai/cursor-icon.png" alt="Cursor 光标应该使用默认的或禁止图标" /></p>
</li>
<li>
<p>图片上的光标建议改成只在可以拖动的地方显示成小手（cursor: pointer），其他不能点击的地方就使用默认的（cursor: default）好了（否则会让用户误以为可以点点，但是实际上点击了又没效果）
<img src="../images/website/viddo-ai/cursor-image.png" alt="图片上的光标" />
其他的图片也有这个问题，以为可以点击，但是点击了没有任何事情发生。</p>
</li>
<li>
<p>这个声音图标如果没声音的话，能隐藏就隐藏，不然用户启用了声音后还是没声音会感觉有点失望。
<img src="../images/website/viddo-ai/icon-sound.png" alt="声音图标问题" /></p>
</li>
<li>
<p>Blog 首页列表里面的这些图片的体积和尺寸都太大了，完全没有必要，一是打开这个页面非常慢会影响用户体验，二是浪费钱（流量费）。</p>
</li>
<li>
<p>Blog 详情页可以再好好做一下，可以多写一些网站工具相关的文章，然后跟工具页面互相链接起来。</p>
</li>
<li>
<p>在 Edge 浏览器下面，页面右上角的 Google 登录弹窗显示的位置有问题。</p>
</li>
<li>
<p>建议把图标的紫色背景去掉，只用白色就好了。现在的图标加了紫色背景，再叠加页面的黑色背景看起来有点刺眼，感觉不舒服。</p>
</li>
<li>
<p>网站加载有点慢，可以参考 <a href="https://pagespeed.web.dev/analysis/https-viddo-ai/bz080zin77?form_factor=desktop">PageSpeed</a> 的修改建议来改进。</p>
</li>
<li>
<p>超链接包含了一个 button 标签感觉有点怪（也不是不能用），建议直接给 a 标签加一个 class，做成按钮的样式。</p>
</li>
</ol>
<p>这个网站做的已经非常棒了，上面说的这些细节问题完全不影响用户使用，欢迎大家也来试用一下 <a href="https://viddo.ai/?aff=lanxk">Viddo AI</a> ，做出漂亮的图片和视频。</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor 1.5.5 版下载地址以及 v1.5 版更新内容]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-1-5-version-download/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-1-5-version-download/</guid>
            <pubDate>Wed, 20 Aug 2025 23:00:00 GMT</pubDate>
            <description><![CDATA[Cursor 1.5.5 版下载地址，Cursor v1.5 版更新内容：顶部菜单栏右边多了一个 Toggle AI Pane 图标，启动页会显示 Chat 侧边栏，Cursor 设置页的“Tools & Integrations” 改成了 “MCP & Integrations”]]></description>
            <content:encoded><![CDATA[<p>今天感觉 Cursor 好几天没自动更新了，主动点了检查更新也没有新的版本，又搜了一下，发现 Cursor v1.5.0 版今天已经出来了，只是没有批量推送，网站 Changelog 栏目也没有 v1.5 版的更新内容，论坛里面倒是有一个讨论贴 ，但是只字未提更新了哪些内容。
我安装了 v1.5.0 版之后，只找到了3处更新。</p>
<h2>Cursor v1.5 版更新内容：</h2>
<h3>顶部菜单栏右边多了一个 Toggle AI Pane 图标</h3>
<h3>启动页会显示 Chat 侧边栏（请看下面 v1.4 和 v1.5 启动页面的截图比较）</h3>
<p><img src="../images/cursor-1-4-start.png" alt="Cursor v1.4 启动页" />
<img src="../images/cursor-1-5-start.png" alt="Cursor v1.5 启动页" /></p>
<h3>Cursor 设置页的“Tools &amp; Integrations” 改成了 “MCP &amp; Integrations”</h3>
<p><img src="../images/cursor-1-5-setting.png" alt="Cursor v1.5 设置页 MCP &amp; Integrations" /></p>
<h2>Cursor v1.5 下载</h2>
<h3>Cursor Mac 版 v1.5.5 下载地址</h3>
<ol>
<li>
<p><a href="https://downloads.cursor.com/production/823f58d4f60b795a6aefb9955933f3a2f0331d7b/darwin/universal/Cursor-darwin-universal.dmg">darwin-universal</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/823f58d4f60b795a6aefb9955933f3a2f0331d7b/darwin/x64/Cursor-darwin-x64.dmg">darwin-x64</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/823f58d4f60b795a6aefb9955933f3a2f0331d7b/darwin/arm64/Cursor-darwin-arm64.dmg">darwin-arm64</a></p>
</li>
</ol>
<h3>Cursor Windows 版 v1.5.5 下载地址</h3>
<ol>
<li>
<p><a href="https://downloads.cursor.com/production/823f58d4f60b795a6aefb9955933f3a2f0331d7b/win32/x64/user-setup/CursorUserSetup-x64-1.5.5.exe">win32-x64-user</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/823f58d4f60b795a6aefb9955933f3a2f0331d7b/win32/arm64/user-setup/CursorUserSetup-arm64-1.5.5.exe">win32-arm64-user</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/823f58d4f60b795a6aefb9955933f3a2f0331d7b/win32/x64/system-setup/CursorSetup-x64-1.5.5.exe">win32-x64-system</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/823f58d4f60b795a6aefb9955933f3a2f0331d7b/win32/arm64/system-setup/CursorSetup-arm64-1.5.5.exe">win32-arm64-system</a></p>
</li>
</ol>
<h3>Cursor Linux v1.5.5 下载地址</h3>
<ol>
<li>
<p><a href="https://downloads.cursor.com/production/823f58d4f60b795a6aefb9955933f3a2f0331d7b/linux/x64/Cursor-1.5.5-x86_64.AppImage">linux-x64</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/823f58d4f60b795a6aefb9955933f3a2f0331d7b/linux/arm64/Cursor-1.5.5-aarch64.AppImage">linux-arm64</a></p>
</li>
</ol>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor 已支持 GPT-5（免费使用一周时间）和 Cursor CLI]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-gpt-5-model/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-gpt-5-model/</guid>
            <pubDate>Fri, 08 Aug 2025 02:40:00 GMT</pubDate>
            <description><![CDATA[OpenAI 在北京时间8月7日晚上发布了 GPT-5 模型，又分成了很多个版本，Cursor 在第一时间增加了对 GPT-5 的支持，而且分成了8个版本：GPT-5、GPT-5-fast、GPT-5-high、GPT-5-low、 GPT-5-high-fast、GPT-5-low-fast、GPT-5-nano、GPT-5-mini。]]></description>
            <content:encoded><![CDATA[<p>OpenAI 在北京时间8月7日晚上发布了 GPT-5 模型，又分成了很多个版本，Cursor 在第一时间增加了对 GPT-5 的支持，而且分成了8个版本：GPT-5、GPT-5-fast、GPT-5-high、GPT-5-low、
GPT-5-high-fast、GPT-5-low-fast、GPT-5-nano、GPT-5-mini。</p>
<p><img src="../images/cursor-gpt-5-model-list.png" alt="Cursor Model GPT-5" /></p>
<h2>Cursor 支持的 GPT-5 这8个版本有什么区别？</h2>
<ul>
<li><strong>GPT-5</strong>: 能力与速度均衡，大多数任务都可以用这个来完成；</li>
<li><strong>GPT-5-fast</strong>: 跟 GPT-5 的能力差不多，但是速度更快一些，适合一般对话、简短问答和迭代开发工作；</li>
<li><strong>GPT-5-high</strong>: 更深度的推理能力，可靠性更高，适合复杂架构、算法、长链路推理，缺点是更慢更贵。</li>
<li><strong>GPT-5-low</strong>: 轻量节省成本的版本，适合简单改写、批量处理，优点是便宜，缺点是细节与稳定性较差；</li>
<li><strong>GPT-5-high-fast</strong>: 兼顾高推理能力和较低延迟，比 high 快、比 fast 更稳，缺点是还是比较贵；</li>
<li><strong>GPT-5-low-fast</strong>: 低成本、更快速，适合批量处理，比如大规模生成、处理日志、检索重排等；</li>
<li><strong>GPT-5-nano</strong>: 最小最快最便宜，适合用于格式化、提取、简单转换之类的工作，不适合复杂编程和推理；</li>
<li><strong>GPT-5-mini</strong>: 能力介于 low 与 nano 之间，便宜且更稳定，适合日常的小任务和脚手架生成。</li>
</ul>
<h2>选型建议</h2>
<ul>
<li>通用编码、问答: GPT-5 或 GPT-5-fast；</li>
<li>系统设计、复杂推理、严谨评审: GPT-5-high（或 GPT-5-high-fast 需提速时）；</li>
<li>批量处理（兼顾性价比）: GPT-5-low-fast；</li>
<li>简单的文案和脚本: GPT-5-mini、GPT-5-nano。</li>
</ul>
<h2>Cursor 使用 GPT-5 的计费方式和价格</h2>
<p><img src="../images/cursor-gpt-5-model-price.png" alt="Cursor GPT-5 requests &amp; price" /></p>
<p>我的 Cursor Pro 订阅是选择了旧的 500次计费方式，所以我这边能看到使用非 fast 的 GPT-5 是 2倍次数，带 fast 的是 4倍次数。
如果用超了，或者是新的计费方式，带 fast 的价格是普通的 2倍。
Cursor 还搞了一个优惠活动：付费用户（如 Pro/Teams/Ultra）在 GPT-5 “发布周”（上线后的第一周）可以免费使用，我刚刚试用了几次 gpt-5，确实没有从我的 500次里面扣减使用次数。</p>
<h2>Cursor CLI</h2>
<p>可以在任何 IDE 和远程电脑上使用 Cursor Agent，可能是用来对标 Claude Code 的功能。</p>
<p><img src="../images/cursor-gpt-5-notice.png" alt="Cursor CLI" /></p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor 1.4.4 版下载地址以及 v1.4 版更新内容]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-1-4-version-download/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-1-4-version-download/</guid>
            <pubDate>Wed, 06 Aug 2025 16:00:00 GMT</pubDate>
            <description><![CDATA[今天发现 Cursor 给我强制更新到了 v1.4.0 版，刚刚又提示有了新的更新，重启后发现更新到了 v1.4.1版（现在最新的是 1.4.4版，很稳定了，强烈推荐更新）。]]></description>
            <content:encoded><![CDATA[<p>Cursor 上个月底更新了 v1.3 版，并且迭代了好几个版本，但是感觉 Bug 太多，经常卡死电脑，一点都不好用。
今天发现 Cursor 给我强制更新到了 v1.4.0 版，刚刚又提示有了新的更新，重启后发现更新到了 v1.4.1版（现在最新的是 1.4.4版，很稳定了，强烈推荐更新）。</p>
<h2>Cursor v1.4 版更新内容：</h2>
<h3>All Agents</h3>
<p>左侧的侧边栏多了一栏：All Agents，看起来像是显示了所有的 Chat 历史记录。</p>
<p><img src="../images/cursor-1-4-change-all-agents.png" alt="Cursor v1.4 All Agents" /></p>
<h3>Past Chats</h3>
<p>目前Cursor官方还未发布 v1.4版的更新日志，目前我发现的不同只有右侧的 Chat 窗口底部多了 一个 Past Chats 列表。
<img src="../images/cursor-1-4-change-past-chats.png" alt="Cursor v1.4 Past Chats" />
不过我发现这个功能还有Bug，点击 View All 并不能加载所有的历史聊天记录。</p>
<h3>Cursor Mac 版 v1.4.4 下载地址</h3>
<ol>
<li>
<p><a href="https://downloads.cursor.com/production/dd05130a0bf8d5f1a5372e6e6bb7c4184786eaa9/darwin/universal/Cursor-darwin-universal.dmg">darwin-universal</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/dd05130a0bf8d5f1a5372e6e6bb7c4184786eaa9/darwin/x64/Cursor-darwin-x64.dmg">darwin-x64</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/dd05130a0bf8d5f1a5372e6e6bb7c4184786eaa9/darwin/arm64/Cursor-darwin-arm64.dmg">darwin-arm64</a></p>
</li>
</ol>
<h3>Cursor Windows 版 v1.4.4 下载地址</h3>
<ol>
<li>
<p><a href="https://downloads.cursor.com/production/dd05130a0bf8d5f1a5372e6e6bb7c4184786eaa9/win32/x64/user-setup/CursorUserSetup-x64-1.4.4.exe">win32-x64-user</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/dd05130a0bf8d5f1a5372e6e6bb7c4184786eaa9/win32/arm64/user-setup/CursorUserSetup-arm64-1.4.4.exe">win32-arm64-user</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/dd05130a0bf8d5f1a5372e6e6bb7c4184786eaa9/win32/x64/system-setup/CursorSetup-x64-1.4.4.exe">win32-x64-system</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/dd05130a0bf8d5f1a5372e6e6bb7c4184786eaa9/win32/arm64/system-setup/CursorSetup-arm64-1.4.4.exe">win32-arm64-system</a></p>
</li>
</ol>
<h3>Cursor Linux v1.4.4 下载地址</h3>
<ol>
<li>
<p><a href="https://downloads.cursor.com/production/dd05130a0bf8d5f1a5372e6e6bb7c4184786eaa9/linux/x64/Cursor-1.4.4-x86_64.AppImage">linux-x64</a></p>
</li>
<li>
<p><a href="https://downloads.cursor.com/production/dd05130a0bf8d5f1a5372e6e6bb7c4184786eaa9/linux/arm64/Cursor-1.4.4-aarch64.AppImage">linux-arm64</a></p>
</li>
</ol>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor 已支持 Claude 4.1 opus model]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-claude-4-1-opus-model/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-claude-4-1-opus-model/</guid>
            <pubDate>Wed, 06 Aug 2025 03:00:00 GMT</pubDate>
            <description><![CDATA[Anthropic 在北京时间8月5日晚上发布了 Claude Opus 4.1，8月6日凌晨3点发现 Cursor 已经支持使用 Claude Opus 4.1 了，而且在设置里面还是默认勾选的]]></description>
            <content:encoded><![CDATA[<p>Anthropic 在北京时间8月5日晚上发布了 Claude Opus 4.1，8月6日凌晨3点发现 Cursor 已经支持使用 Claude Opus 4.1 了，而且在设置里面还是默认勾选的，如下图所示：</p>
<p><img src="../images/cursor-claude-4-1-opus.png" alt="Cursor Model claude-4.1-opus" /></p>
<h2>Claude Opus 4.1 有哪些升级？</h2>
<p>Anthropic 官方给了一张 Claude Opus 4.1 跟 Claude Opus 4、Claude Sonnet 4、OpenAI o3、Gemini 2.5 Pro 这几个模型的对比图：</p>
<p><img src="../images/claude-4-1-opus.png" alt="Claude Opus 4.1 与 Claude Opus 4、Claude Sonnet 4、OpenAI o3、Gemini 2.5 Pro 的对比" /></p>
<p>至于价格，Anthropic 官方说是跟 Claude Opus 4 的价格一样，估计 Cursor 的计费方式和价格还是会跟选择 Claude-4-Opus 一样。</p>
<hr />
<p>刚刚测试了一下，选择 Claude-4.1-Opus (Thinking) 把这篇 Blog 翻译成英文，效果还不错，花了大概 20次 Request。</p>
<p><img src="../images/cursor-claude-4-1-opus-test.png" alt="Claude-4.1-Opus (Thinking)" /></p>
<h2>Cursor 无法使用 Claude-4.1-Opus 的解决方案</h2>
<h5>如果 Cursor 提示：Model claude-4-opus-thinking doesn't have good agent support yet. Start a new thread using Review mode for better results.</h5>
<p>请参考这篇文章来解决：<a href="https://www.lanxk.com/zh/posts/cursor-model-claude-4-sonnet-doesnt-have-good-agent-support-yet/">Cursor提示:Model claude-4-sonnet doesn't have good agent support yet 的解决方法</a></p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor提示:Model claude-4-sonnet doesn't have good agent support yet 的解决方法]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-model-claude-4-sonnet-doesnt-have-good-agent-support-yet/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-model-claude-4-sonnet-doesnt-have-good-agent-support-yet/</guid>
            <pubDate>Sun, 27 Jul 2025 00:00:00 GMT</pubDate>
            <description><![CDATA[Cursor提示: “Model claude-4-sonnet doesn't have good agent support yet. Start a new thread using Manual mode for better results” 的解决方法]]></description>
            <content:encoded><![CDATA[<p>最近在使用 Cursor 的时候会弹出出错提示: <strong>Model claude-4-sonnet doesn't have good agent support yet. Start a new thread using Manual mode for better results.</strong>
如下图所示：</p>
<p><img src="../images/cursor-model-claude-4-sonnet-doesnt-have-good-agent-support-yet.png" alt="Model claude-4-sonnet doesn't have good agent support yet. Start a new thread using Manual mode for better results." /></p>
<p>原因跟 Cursor 开始禁止部分国家和地区的用户使用 claude-4-sonnet model 有关系。</p>
<h2>解决方案</h2>
<p>点 Continue，继续使用，如果后续没有再弹其他错误的话，就不用管它了；
如果后面再弹出出错提示 “Model not available. This model provider doesn’t serve your region” 的话，则参考下面这篇文章的方法继续解决问题：</p>
<p><a href="https://www.lanxk.com/zh/posts/cursor-model-not-available/">Cursor 提示： Model not available. This model provider doesn't serve your region 的解决方法</a></p>
<p>如果提示“<a href="https://www.lanxk.com/zh/posts/cursor-error-connection-failed/">Connection failed. If the problem persists, please check your internet connection or VPN Network disconnected [unknown]</a>”，点击“Try again”按钮，再重试一次或多次。</p>
<h2>相关的问题</h2>
<h5>Model claude-4-sonnet-thinking doesn't have good agent support yet. Start a new thread using Manual mode for better results.</h5>
<h5>Model claude-4-opus-thinking doesn't have good agent support yet.</h5>
<p>也可以用上面这个方法来解决。</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor出错提示:Model not available. This model provider doesn't serve your region 的解决方法]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-model-not-available/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-model-not-available/</guid>
            <pubDate>Sat, 19 Jul 2025 00:00:00 GMT</pubDate>
            <description><![CDATA[Cursor出错提示:Model not available. This model provider doesn't serve your region 的解决方法]]></description>
            <content:encoded><![CDATA[<p>Cursor 的中国（包括香港和澳门）用户这几天在使用 Cursor 的时候会发现很多大模型不能使用了（比如 Claude 4 Sonnet），会弹出出错提示: <strong>Model not available. This model provider doesn't serve your region. Visit https://docs.cursor.com/account/regions for more information.</strong>
如下图所示：</p>
<p><img src="../images/cursor-error-model-not-available.png" alt="Model not available. This model provider doesn't serve your region. Visit https://docs.cursor.com/account/regions for more information." /></p>
<p>原因是 Cursor 要遵守一部分大模型公司的规定，开始禁止部分国家和地区的用户使用。</p>
<h2>解决方案</h2>
<h3>解决方案 1</h3>
<ol>
<li>将 VPN 节点设置为除香港和澳门之外的其他国家或地区，比如美国、新加坡；</li>
<li>打开 Cursor Settings -&gt; Network, 将 HTTP Compatibility Mode 设置为 HTTP/1.1（这里默认是 HTTP2），如下图所示：
<img src="../images/cursor-settings-network.png" alt="" /></li>
<li>重启 Cursor，可能需要等1、2分钟就可以了。</li>
</ol>
<h3>解决方案 2</h3>
<ol>
<li>这个还是跟上面一样，先将 VPN 节点设置为除香港和澳门之外的其他国家或地区，比如美国、新加坡；</li>
<li>开启 Tun 模式（可能会比较消耗流量）；</li>
<li>重启 Cursor，可能需要等1、2分钟。</li>
</ol>
<h3>解决方案 3</h3>
<p>直接选择 Auto。</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor v1.2 版下载地址以及 v1.2 版更新内容]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-1-2-version-download/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-1-2-version-download/</guid>
            <pubDate>Tue, 01 Jul 2025 00:00:00 GMT</pubDate>
            <description><![CDATA[Cursor 7月8日更新了 v1.2.2 版，点击这里下载 Cursor v1.2.2 各个版本。]]></description>
            <content:encoded><![CDATA[<p><img src="//images.ctfassets.net/qkwd0ztg1dfy/141snJ51O7cz6U6Y91yIsR/5fe68227eb7cb3958ad108d92002c325/cursor_1.2.png" alt="Cursor 1.2" /></p>
<p>Cursor 这才刚刚在 7 月 1 日更新了 v1.1.7 版，还不到 24 小时呢，马上又自动更新到了 v1.2.0 版，更新的速度好快啊！</p>
<h2>Cursor v1.2 版更新内容：</h2>
<p>目前Cursor官方还未发布更新日志，但是从设置里面看多了这2个选项：</p>
<h3>1. To-Do List （待办事项列表）</h3>
<p>Allow Agent to use To-Do lists to track progress on tasks
（允许代理使用待办事项列表来跟踪任务进度）</p>
<h3>2. Queue Messages （队列消息）</h3>
<p>When enabled and the model is streaming, subsequent messages will be queued and sent in the order they were received
（启用后，当模型正在流式传输时，后续消息将被排到队列中并按接收的顺序发送）</p>
<h3>Cursor Mac 版 v1.2.2 下载地址</h3>
<ol>
<li>darwin-universal:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/darwin/universal/Cursor-darwin-universal.dmg">https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/darwin/universal/Cursor-darwin-universal.dmg</a></p>
<ol>
<li>darwin-x64:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/darwin/x64/Cursor-darwin-x64.dmg">https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/darwin/x64/Cursor-darwin-x64.dmg</a></p>
<ol>
<li>darwin-arm64:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/darwin/arm64/Cursor-darwin-arm64.dmg">https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/darwin/arm64/Cursor-darwin-arm64.dmg</a></p>
<h3>Cursor Windows 版 v1.2.2 下载地址</h3>
<ol>
<li>win32-x64-user:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/x64/user-setup/CursorUserSetup-x64-1.2.2.exe">https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/x64/user-setup/CursorUserSetup-x64-1.2.2.exe</a></p>
<ol>
<li>win32-arm64-user:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/arm64/user-setup/CursorUserSetup-arm64-1.2.2.exe">https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/arm64/user-setup/CursorUserSetup-arm64-1.2.2.exe</a></p>
<ol>
<li>win32-x64-system:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/x64/system-setup/CursorSetup-x64-1.2.2.exe">https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/x64/system-setup/CursorSetup-x64-1.2.2.exe</a></p>
<ol>
<li>win32-arm64-system:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/arm64/system-setup/CursorSetup-arm64-1.2.2.exe">https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/arm64/system-setup/CursorSetup-arm64-1.2.2.exe</a></p>
<h3>Cursor Linux v1.2.2 下载地址</h3>
<ol>
<li>linux-x64:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/linux/x64/Cursor-1.2.2-x86_64.AppImage">https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/linux/x64/Cursor-1.2.2-x86_64.AppImage</a></p>
<ol>
<li>linux-arm64:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/linux/arm64/Cursor-1.2.2-aarch64.AppImage">https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/linux/arm64/Cursor-1.2.2-aarch64.AppImage</a></p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor Pro 怎么恢复到 500次高速请求的模式？]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-opt-out-of-new-pricing/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-opt-out-of-new-pricing/</guid>
            <pubDate>Wed, 18 Jun 2025 00:00:00 GMT</pubDate>
            <description><![CDATA[Cursor 昨天把 Cursor Pro 改为无限请求了，但是会限速，Cursor 今天出来了恢复到原来 500 次高速请求的设置。]]></description>
            <content:encoded><![CDATA[<p>Cursor 昨天把 Cursor Pro 改为无限请求了，但是会限速，对于像我这种一个月用不满 500 次的人来说还是 500 次高速请求的方案更好一些啊！</p>
<p>还好 Cursor 今天就出来了恢复到原来 500 次高速请求的设置。</p>
<p>设置步骤如下：</p>
<p><img src="//images.ctfassets.net/qkwd0ztg1dfy/69yYPXO0rvfPb4ekayTWYx/564f9487c31b45082d8bbe106ee4d083/Opt_Out_of_New_Pricing_2.png" alt="Cursor 设置页面" /></p>
<ol>
<li>
<p>打开 https://www.cursor.com/dashboard ，点击 Settings（设置）；</p>
</li>
<li>
<p>点击 Advanced Account Settings（高级账户设置）；</p>
</li>
<li>
<p>点击 Opt Out of New Pricing；</p>
</li>
<li>
<p>输入：Opt Out ；</p>
</li>
<li>
<p>点击：Opt Out 。</p>
</li>
</ol>
<p>等页面转几秒钟的圈圈就回到原来的 500 次高速请求方案了，能在 Dashboard 里面看到原来的高速请求次数了。</p>
<p>注意：Cursor Student 订阅方案的用户不支持这个设置。</p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor 遇到 Connection failed 问题的解决方法]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-error-connection-failed/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-error-connection-failed/</guid>
            <pubDate>Sun, 15 Jun 2025 00:00:00 GMT</pubDate>
            <description><![CDATA[Connection failed. If the problem persists, please check your internet connection or VPN Network disconnected]]></description>
            <content:encoded><![CDATA[<p><img src="//images.ctfassets.net/qkwd0ztg1dfy/4LPYbTsaADMst22miicXtl/bf1e53e4008c3795f3bc5813a9ca8802/cursor_connection_failed.png" alt="Cursor Connection Failed" /></p>
<p>有时候在使用 Cursor Chat 时候会返回如下信息：</p>
<p><strong>Connection failed. If the problem persists, please check your internet connection or VPN</strong> Network disconnected [unknown]</p>
<p>大概意思是说：连接失败了。要是问题一直没解决呢，赶紧瞅瞅你的网是不是断了，或者VPN是不是出岔子了。 网络已断开 [未知原因]</p>
<p>解决方法很简单：</p>
<ol>
<li>
<p>点击"try again"按钮重试一次，绝大部分时候都能通过这个方法解决；</p>
</li>
<li>
<p>如果你重试了好几次还不行的话，就要检查你的网络了，换一个速度更快的 VPN 线路再试试看；</p>
</li>
<li>
<p>如果 Google 能正常访问的话，那 VPN 线路应该是没问题的，就继续点 Try Again 按钮。</p>
</li>
</ol>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
        <item>
            <title><![CDATA[Cursor v1.1 版下载地址以及 v1.1 版更新内容]]></title>
            <link>https://www.lanxk.com/zh/posts/cursor-1-1-version-download/</link>
            <guid isPermaLink="false">https://www.lanxk.com/zh/posts/cursor-1-1-version-download/</guid>
            <pubDate>Thu, 12 Jun 2025 00:00:00 GMT</pubDate>
            <description><![CDATA[Cursor v1.1.0 版更新内容，以及 Cursor 最新版本 v1.1.3 的下载地址，包括 Windows、Mac、Linux 的所有版本。]]></description>
            <content:encoded><![CDATA[<p>刚刚正在用 Cursor 写代码呢，突然弹出来一个更新提示，更新重启后，发现 Cursor 的版本号直接从 v1.0.1 更新到 v1.1.0 了，跳过了 v1.0.2。</p>
<h3>Cursor 最新版本号: v1.1.3(2025.6.15 更新)</h3>
<h3>v1.1.0 更新日期: 2025-06-12</h3>
<h3>Cursor v1.1.0 版本更新内容：</h3>
<p><img src="//images.ctfassets.net/qkwd0ztg1dfy/ycu0FAvEfm2G8jvMYZ6p6/7e67fb112fdc15962fdb624179bbef2f/Background_Agents_in_Slack.png" alt="Background Agents in Slack" /></p>
<p>Slack 支持 Background Agents</p>
<ul>
<li>
<p>使用@Cursor创建代理 只需提及Cursor并请求创建一个新的 Background Agent</p>
</li>
<li>
<p>拉取请求和跟进 回复任何后续问题并打开拉取请求，无需离开slack</p>
</li>
</ul>
<h2>Cursor Mac 版 v1.1.3 下载地址</h2>
<ol>
<li>darwin-universal:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/darwin/universal/Cursor-darwin-universal.dmg">https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/darwin/universal/Cursor-darwin-universal.dmg</a></p>
<ol>
<li>darwin-x64:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/darwin/x64/Cursor-darwin-x64.dmg">https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/darwin/x64/Cursor-darwin-x64.dmg</a></p>
<ol>
<li>darwin-arm64:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/darwin/arm64/Cursor-darwin-arm64.dmg">https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/darwin/arm64/Cursor-darwin-arm64.dmg</a></p>
<h2>Cursor Windows 版 v1.1.3 下载地址</h2>
<ol>
<li>win32-x64-user:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/win32/x64/user-setup/CursorUserSetup-x64-1.1.3.exe">https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/win32/x64/user-setup/CursorUserSetup-x64-1.1.3.exe</a></p>
<ol>
<li>win32-arm64-user:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/win32/arm64/user-setup/CursorUserSetup-arm64-1.1.3.exe">https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/win32/arm64/user-setup/CursorUserSetup-arm64-1.1.3.exe</a></p>
<ol>
<li>win32-x64-system:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/win32/x64/system-setup/CursorSetup-x64-1.1.3.exe">https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/win32/x64/system-setup/CursorSetup-x64-1.1.3.exe</a></p>
<ol>
<li>win32-arm64-system:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/win32/arm64/system-setup/CursorSetup-arm64-1.1.3.exe">https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/win32/arm64/system-setup/CursorSetup-arm64-1.1.3.exe</a></p>
<h2>Cursor Linux 版 v1.1.3 下载地址</h2>
<ol>
<li>linux-x64:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/linux/x64/Cursor-1.1.3-x86_64.AppImage">https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/linux/x64/Cursor-1.1.3-x86_64.AppImage</a></p>
<ol>
<li>linux-arm64:</li>
</ol>
<p><a href="https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/linux/arm64/Cursor-1.1.3-aarch64.AppImage">https://downloads.cursor.com/production/979ba33804ac150108481c14e0b5cb970bda3266/linux/arm64/Cursor-1.1.3-aarch64.AppImage</a></p>
]]></content:encoded>
            <author>Lanxk</author>
        </item>
    </channel>
</rss>