<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[拍拍尘土]]></title> 
    <link>http://blog.xg98.com/</link> 
    <description><![CDATA[五月枇杷黄，太湖银鱼肥]]></description> 
    <language>zh-cn</language> 
    <copyright><![CDATA[Copyright 2026, 拍拍尘土]]></copyright> 
    <webMaster><![CDATA[cxosoft@gmail.com (Admin)]]></webMaster> 
    <generator>LBS v2.0.313</generator> 
    <pubDate>Tue, 14 Apr 2026 23:59:54 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[OpenClaw 获取资讯联网功能（Brave API）在国内用Tavily替代]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3014]]></link> 
      <category><![CDATA[openclaw]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Fri, 06 Mar 2026 10:13:03 +0800</pubDate> 
      <description><![CDATA[文章来源：<a href="https://post.smzdm.com/p/a2qvzgxn/" title="https://post.smzdm.com/p/a2qvzgxn/" target="_blank">https://post.smzdm.com/p/a2qvzgxn/</a><br /><br />上回成功把 OpenClaw 部署在阿里云上后，我发现了一个问题：它好像有点&quot;失明&quot;！<br /><br />它不知道今天是几号，不了解最新的电影资讯，也没法查实时新闻。原因很简单——默认的联网功能（Brave API）在国内基本用不了，还得绑国际信用卡，对国内用户来说确实不太友好。<br /><br />作为一个同样在摸索的小白，我想分享一下我找到的解决方案，希望能帮到遇到同样问题的朋友。<br /><br />## 为什么 Brave API 在国内不好用<br /><br />OpenClaw 默认使用 Brave Search API 来获取联网搜索能力，但这个服务有两个主要问题：<br /><br />网络访问问题：Brave API 的服务器在国外，国内网络直接访问通常会被限制。<br /><br />支付门槛：即使能访问，注册时也需要绑定国际信用卡，这对很多国内用户来说是个障碍。<br /><br />我之前就卡在这一步，试了好几种方法都没解决，差点就想放弃了。<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3014]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[window10的WSL2 上安装 openclaw]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3013]]></link> 
      <category><![CDATA[openclaw]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Sat, 28 Feb 2026 15:39:46 +0800</pubDate> 
      <description><![CDATA[openclaw第三方中文网址：<a href="https://clawd.org.cn/" title="https://clawd.org.cn/" target="_blank">https://clawd.org.cn/</a><br /><br />1. 安装 WSL2 和 Ubuntu<br />以管理员身份打开 PowerShell，执行：<div class="code"><br /># 一键安装 WSL2 和 Ubuntu（推荐方式）<br />wsl --install<br /><br /># 或者指定安装 Ubuntu 24.04<br />wsl --install -d Ubuntu</div><br />验证 WSL2 版本：<div class="code">wsl --list --verbose</div><br /><br />更新系统并安装基础工具<br />进入 WSL2 Ubuntu 终端，执行：<div class="code">sudo apt update &amp;&amp; sudo apt upgrade -y<br />sudo apt install -y build-essential curl wget git unzip</div><br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3013]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[http服务（nginx、apache）停用不安全的SSL协议、TLS1.0和TLS1.1协议/启用TLS1.3]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3012]]></link> 
      <category><![CDATA[centos/linux]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Wed, 24 Dec 2025 10:43:10 +0800</pubDate> 
      <description><![CDATA[<span style="color:Red">p.s. windows版本的curl指定tls版本好像不生效，还是会按照tls1.3建立连接，所以无法判断是否禁止了tls1.1</span><div class="code">curl -v --tlsv1.1 https&#58;//blog.xg98.com</div>TLS 1.0 和 TLS 1.1 是分别于 1996 年和 2006 年发布的老版协议，使用的是弱加密算法和系统。比如 SHA-1 和 MD5，这些算法和系统十分脆弱，存在重大安全漏洞，容易受到降级攻击的严重影响，而在 2008 年和 2017 年分别发布了协议的新版本，即 TLS 1.2 和 TLS 1.3，无疑更优于旧版本，使用起来也更安全。<br /><br /><br /><b>nginx</b><br />我假设你有Nginx 1.13+<br />SSL设置下的默认配置（conf/nginx.conf）应如下所示<div class="code">ssl_protocols TLSv1.2 TLSv1.3;</div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3012]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[centos下使用acme.sh来自动续期ssl证书（ZeroSSL），比较简单]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3011]]></link> 
      <category><![CDATA[拍拍乱拍]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Thu, 27 Nov 2025 15:27:33 +0800</pubDate> 
      <description><![CDATA[p.s. 如果 www.xg98.com 和 xg98.com 是2个不同网站，那么 /root/.acme.sh/www.xg98.com_ecc/www.xg98.com.conf 文件需要修改下，去除备用域名<div class="code"># 主域名<br />Le_Domain=&#39;www.chinazhili.com&#39;<br /># 备用域名（裸域名）<br />Le_Alt=&#39;chinazhili.com&#39;  </div>改为<div class="code"># 主域名<br />Le_Domain=&#39;www.chinazhili.com&#39;<br /># 备用域名（裸域名）<br />Le_Alt=&#39;no&#39;  </div><br /><br /><br /><br /># 下载并安装 acme.sh（自动配置环境变量，完美兼容centos6）<div class="code">curl https&#58;//get.acme.sh | sh</div><br /># 刷新环境变量（让当前终端识别 acme.sh 命令）<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3011]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Windows server 2003安装.net framework 4.0所需的wic_x86_chs.exe下载]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3010]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Tue, 25 Nov 2025 09:05:40 +0800</pubDate> 
      <description><![CDATA[小白今天在研究如何在Windows2003或者xp上安装.net framework 4.0。发现下载完安装包后运行提示：运行此安装程序之前，必须安装 32 位 Windows 映像处理组件(WIC)。<br /><br />官方网站给的地址已经404（系统太老了，微软官方不再支持）。网上找的wic_x86_chs.exe这个程序官方下载地址已经过期。其他非官方页面咱也不敢随便用。毕竟xp/2003已经停止支持了。中毒就麻烦大了。还好在国外的网站上下载到了原版的文件。使用7zip自带的SHA1校验检测了下确实是原版文件。<br /><br />Microsoft .NET Framework 4（独立安装程序）支持xp/2003下载地址：<a href="https://www.microsoft.com/zh-cn/download/details.aspx?id=17718" title="https://www.microsoft.com/zh-cn/download/details.aspx?id=17718" target="_blank">https://www.microsoft.com/zh-cn/download/details.aspx?id=17718</a><br /><br />wic_x86_chs.exe下载地址：<a href="https://vps.p" title="https://vps.p" target="_blank">https://vps.p</a>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3010]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[uview2.0的u-action-sheet内容太多被撑开溢出屏幕高度，无法滚动解决办法]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3009]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Thu, 20 Nov 2025 10:31:05 +0800</pubDate> 
      <description><![CDATA[打开\node_modules\uview-ui\components\u-action-sheet\u-action-sheet.vue文件，<br /><br />找到<div class="code">&lt;view class=&quot;u-action-sheet__item-wrap&quot;&gt;&lt;/view&gt;</div><br />把它替换成<div class="code">&lt;scroll-view class=&quot;u-action-sheet__item-wrap&quot; scroll-y style=&quot;min-height: 100rpx;max-height: 700rpx;&quot;&gt;<br />。。。<br />&lt;/scroll-view&gt;</div><br /><br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202511/20_103536_121.jpg" target="_blank"><img src="http://blog.xg98.com/attachments/202511/20_103536_121.jpg" alt="http://blog.xg98.com/attachments/202511/20_103536_121.jpg" /></a></div><br /><br /><br />来源：<a href="https://blog.csdn.net/cyx924/article/details/154789117" title="https://blog.csdn.net/cyx924/article/details/154789117" target="_blank">https://blog.csdn.net/cyx924/article/details/154789117</a>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3009]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[小米MI mix 2 刷机pixel experience 10的刷机教程]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3008]]></link> 
      <category><![CDATA[拍拍乱拍]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Wed, 19 Nov 2025 14:28:30 +0800</pubDate> 
      <description><![CDATA[小米解锁地址： <br /><a href="http://www.miui.com/unlock/index.html" title="http://www.miui.com/unlock/index.html" target="_blank">http://www.miui.com/unlock/index.html</a><br /><br />第三方Rec工具：<br />地址：<a href="https://dl.twrp.me/chiron/" title="https://dl.twrp.me/chiron/" target="_blank">https://dl.twrp.me/chiron/</a><br /><br />pixel experienece 10  for mix2的下载地址<br /><a href="https://download.pixelexperience.org/chiron" title="https://download.pixelexperience.org/chiron" target="_blank">https://download.pixelexperience.org/chiron</a><br /><br />MI mix 2 刷机pixel experience 10的刷机教程<br /><a href="https://www.cnblogs.com/invoker2021/p/15172289.html" title="https://www.cnblogs.com/invoker2021/p/15172289.html" target="_blank">https://www.cnblogs.com/invoker2021/p/15172289.html</a>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3008]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[OpenSpeedy 游戏、网盘、模拟器加速工具，操作简单]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3007]]></link> 
      <category><![CDATA[软件推荐]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Tue, 18 Nov 2025 14:47:53 +0800</pubDate> 
      <description><![CDATA[OpenSpeedy官网版是一款功能强大的游戏加速工具，软件界面简洁，操作简单易用，采用了Ring3 层 Hook 技术，可以完美兼容多种游戏引擎，轻松的打破游戏对帧率的限制，让游戏画面更上一层，并且游戏的加速倍速是能自行选择的，还能随时关闭加速将其变回原速，可以帮助玩家优化单机游戏体验，感兴趣的小伙伴千万不要错过了！<br /><br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202511/18_144813_screenshot_20251118_144735_382.jpg" target="_blank"><img src="http://blog.xg98.com/attachments/202511/18_144813_screenshot_20251118_144735_382.jpg" alt="http://blog.xg98.com/attachments/202511/18_144813_screenshot_20251118_144735_382.jpg" /></a></div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3007]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Fiddler抓取微信小程序https接口数据]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3006]]></link> 
      <category><![CDATA[软件推荐]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Wed, 22 Oct 2025 12:19:28 +0800</pubDate> 
      <description><![CDATA[<span style="color:Red">p.s. 如果发现https抓包不成功，大概率是证书冲突问题，在Fiddler - 选项- https - 操作中“重置所有证书”</span><br /><span style="color:Blue">如果要抓手机端软件，可以手机安装fiddler证书，也可以使用MuMu模拟器配置代理到8888端口，更方便。</span><br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202510/22_135037_wechat_20251022_134916_214.jpg" target="_blank"><img src="http://blog.xg98.com/attachments/202510/22_135037_wechat_20251022_134916_214.jpg" alt="http://blog.xg98.com/attachments/202510/22_135037_wechat_20251022_134916_214.jpg" /></a></div><br /><br /><br /><b>不用容易忘记，记录下</b><br /><br />1、下载Fiddler Classic<br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202510/22_133704_wechat_20251022_133523_526.jpg" target="_blank"><img src="http://blog.xg98.com/attachments/202510/22_133704_wechat_20251022_133523_526.jpg" alt="http://blog.xg98.com/attachments/202510/22_133704_wechat_20251022_133523_526.jpg" /></a></div><br /><br />2、安装Fiddler证书<div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202510/22_133712_wechat_20251022_133548_662.jpg" target="_blank"><img src="http://blog.xg98.com/attachments/202510/22_133712_wechat_20251022_133548_662.jpg" alt="http://blog.xg98.com/attachments/202510/22_133712_wechat_20251022_133548_662.jpg" /></a></div><br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3006]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[如何在远程桌面最小化的状态运行影刀]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3005]]></link> 
      <category><![CDATA[软件推荐]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Tue, 23 Sep 2025 10:38:41 +0800</pubDate> 
      <description><![CDATA[描述<br /><br />如何在远程桌面最小化的状态运行影刀。<br />解决方案<br /><br />方法一：使用向日葵、TIGHTVNC、Teamvierer 远程软件<br /><br />向日葵、TIGHTVNC、Teamviere 远程软件最小化后依然会保持渲染的软件可在最小化后保证影刀正常运行。<br /><br />方法二：修改注册表后使用windows mstsc远程工具<br /><br />Windows 自带的 mstsc 远程工具工作原理是一旦断开或者最小化远程的机器就会停止渲染，就像锁屏，所以在最小化后很多自动化操作就无法完成，但可通过修改注册表实现最小化窗口自动运行，修改过程如下：<br /><br />创建mstsc 注册表修改.reg，复制以下内容并保存。<div class="code">Windows Registry Editor Version 5.00<br /><br />[HKEY_CURRENT_USER\Software\Wow6432Node\Microsoft\Terminal Server Client]</div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3005]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
