<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
>
<channel>
<title><![CDATA[星芒博客]]></title> 
<atom:link href="https://blog.starlumina.com/rss.php" rel="self" type="application/rss+xml" />
<description><![CDATA[分享开发经验和开源项目]]></description>
<link>https://blog.starlumina.com/</link>
<language>zh-cn</language>

<item>
    <title>Windows Arm版本安装office教程</title>
    <link>https://blog.starlumina.com/?post=13</link>
    <description><![CDATA[<h2>设备及系统环境</h2>
<h3>使用ARM处理器设备搭载Arm版本的Windows11系统适用以下步骤安装Office</h3>
<h2>步骤</h2>
<ol>
<li>
<p>打开网站 <a href="https://www.microsoft.com/en-us/download/details.aspx?id=49117" title="Office Deployment Tool（ https://www.microsoft.com/en-us/download/details.aspx?id=49117 ）">Office Deployment Tool（ https://www.microsoft.com/en-us/download/details.aspx?id=49117 ）</a></p>
</li>
<li>
<p>点击网站中 Download 按钮下载安装器文件</p>
</li>
<li>
<p>打开下载的 exe 文件，勾选 Click here to accept the Microsoft Software License Terms后，点击 Continue 进行下一步设置</p>
</li>
<li>
<p>选择文件夹以释放安装文件（后续可删除安装缓存文件）（不推荐放在C盘高权限的目录，如：Program Files，后续操作可能会修改失败）（这里以释放在桌面为例）</p>
</li>
<li>
<p>此时桌面（释放文件目录，若步骤4所释放目录不一致，自行打开释放目录）多出两个文件（configuration-Office365-x64.xml和setup.exe）</p>
</li>
<li>
<p>使用管理员权限打开Windows PowerShell</p>
</li>
<li>
<p>右键选中configuration-Office365-x64.xml点击编辑，将所有内容替换成以下内容</p>
<pre><code class="language-xml">&lt;Configuration&gt;
&lt;Add OfficeClientEdition="64" Channel="BetaChannel"&gt;
    &lt;Product ID="O365ProPlusRetail"&gt; 
        &lt;Language ID="zh-cn"/&gt;
    &lt;/Product&gt;
    &lt;Product ID="VisioProRetail"&gt; 
        &lt;Language ID="zh-cn"/&gt;
    &lt;/Product&gt;
&lt;/Add&gt;
&lt;/Configuration&gt;</code></pre>
</li>
<li>
<p>执行指令（其中 C:\Users\0x13217D4\Desktop 替换为你的文件释放目录，我这里以我的桌面为例，每个人用户名不同自行修改）</p>
<pre><code>cd C:\Users\0x13217D4\Desktop</code></pre>
</li>
<li>
<p>执行指令（分步执行），执行过程中进度可能不可见，稍等片刻安装完成</p>
<pre><code>.\setup.exe
/configure .\configuration-Office365-x64.xml</code></pre>
</li>
</ol>]]></description>
    <pubDate>Wed, 04 Feb 2026 21:00:00 +0800</pubDate>
    <dc:creator>0x13217D4</dc:creator>
    <guid>https://blog.starlumina.com/?post=13</guid>
</item>
<item>
    <title>【开源项目分享】Sniffnet网络流量监控应用程序</title>
    <link>https://blog.starlumina.com/?post=11</link>
    <description><![CDATA[<h1>Sniffnet - 网络流量监控工具</h1>
<h2>下载</h2>
<table>
<thead>
<tr>
<th style="text-align: left;">系统</th>
<th style="text-align: left;">下载链接</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;"><img alt="Windows" title="Windows" height="85px" src="https://raw.githubusercontent.com/GyulyVGC/sniffnet/main/resources/repository/badges/windows.svg"/></td>
<td style="text-align: left;"><a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_Windows_64-bit.msi">64位</a> | <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_Windows_32-bit.msi">32位</a></td>
</tr>
<tr>
<td style="text-align: left;"><img alt="macOS" title="macOS" height="85px" src="https://raw.githubusercontent.com/GyulyVGC/sniffnet/main/resources/repository/badges/macos.svg"/></td>
<td style="text-align: left;"><a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_macOS_Intel.dmg">Intel</a> | <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_macOS_AppleSilicon.dmg">Apple Silicon</a></td>
</tr>
<tr>
<td style="text-align: left;"><img alt="Linux" title="Linux" height="85px" src="https://raw.githubusercontent.com/GyulyVGC/sniffnet/main/resources/repository/badges/linux.svg"/></td>
<td style="text-align: left;"><strong>AppImage:</strong> <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_LinuxAppImage_amd64.AppImage">amd64</a> | <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_LinuxAppImage_arm64.AppImage">arm64</a> | <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_LinuxAppImage_i386.AppImage">i386</a> | <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_LinuxAppImage_armhf.AppImage">armhf</a><br><strong>DEB:</strong> <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_LinuxDEB_amd64.deb">amd64</a> | <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_LinuxDEB_arm64.deb">arm64</a> | <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_LinuxDEB_i386.deb">i386</a> | <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_LinuxDEB_armhf.deb">armhf</a><br><strong>RPM:</strong> <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_LinuxRPM_x86_64.rpm">x86_64</a> | <a href="https://github.com/GyulyVGC/sniffnet/releases/latest/download/Sniffnet_LinuxRPM_aarch64.rpm">aarch64</a></td>
</tr>
</tbody>
</table>
<p>上面表格中的链接将直接从 <a href="https://github.com/GyulyVGC/sniffnet/releases">GitHub releases</a> 下载 Sniffnet 的最新版本。<br />
不是您要找的？查看<a href="https://github.com/GyulyVGC/sniffnet/wiki/Alternative-installation-methods">替代安装方法</a>。</p>
<blockquote>
<p><strong>注意</strong></p>
<p>记得同时安装适用于您操作系统的<a href="https://github.com/GyulyVGC/sniffnet/wiki/Required-dependencies">必需依赖项</a>。</p>
</blockquote>
<p><img src="https://raw.githubusercontent.com/GyulyVGC/sniffnet/main/resources/repository/pages/overview.png" alt="概览页面" /></p>
<h2>功能</h2>
<ul>
<li>💻 选择您的电脑上的一个<strong>网络适配器</strong>进行检查</li>
<li>🏷️ 选择一组<strong>过滤器</strong>应用于观察到的流量</li>
<li>📖 查看有关您的网络流量的总体<strong>统计数据</strong></li>
<li>📈 查看有关流量强度的<strong>实时图表</strong></li>
<li>📌 即使应用程序<strong>最小化</strong>时也能关注您的网络</li>
<li>📁 将综合捕获报告<strong>导入</strong>和<strong>导出</strong>为 PCAP 文件</li>
<li>🔍 识别<strong>6000+ 上层服务</strong>、协议、木马和蠕虫</li>
<li>🌐 找出您交换流量的主机的<strong>域名</strong>和<strong>ASN</strong></li>
<li>🏠 识别您<strong>本地网络</strong>中的连接</li>
<li>🌍 发现远程主机的<strong>地理位置</strong></li>
<li>⭐ 保存您<strong>喜欢的</strong>网络主机</li>
<li>🕵️‍♂️ 实时搜索和<strong>检查</strong>您的每个网络连接</li>
<li>🔊 设置自定义<strong>通知</strong>，在定义的网络事件发生时通知您</li>
<li>🎨 选择最适合您的<strong>风格</strong>，包括自定义主题支持</li>
<li>...以及更多！</li>
</ul>
<h2>用户手册</h2>
<p>您想<strong>了解更多</strong>吗？<br />
查看 <a href="https://github.com/GyulyVGC/sniffnet/wiki"><strong>Sniffnet 维基</strong></a>，这是一份全面的手册，帮助您彻底掌握从基本设置到最先进功能的应用程序。<br />
维基包括逐步指南、提示、使用示例和常见问题解答。</p>
<h2>故障排除</h2>
<h3>缺少依赖项</h3>
<p>可能出现的大多数错误可能是由于您的系统缺少正确分析网络适配器所需的依赖项。<br />
查看<a href="https://github.com/GyulyVGC/sniffnet/wiki/Required-dependencies">必需依赖项页面</a> 了解根据您的操作系统进行操作的说明。</p>
<h3>渲染问题</h3>
<p>在某些情况下，特别是如果您在旧架构上运行或图形驱动程序未更新，<a href="https://github.com/iced-rs/iced">iced</a> 使用的 <code>wgpu</code> 默认渲染器可能会出现错误（界面故障、颜色渐变不支持或某些图标完全变黑）。</p>
<p>在这些情况下，您可以设置一个环境变量以切换到 <code>tiny-skia</code> 渲染器，这是一个仅CPU的软件渲染器，应该在每个环境中正常工作：</p>]]></description>
    <pubDate>Fri, 17 Oct 2025 15:00:00 +0800</pubDate>
    <dc:creator>0x13217D4</dc:creator>
    <guid>https://blog.starlumina.com/?post=11</guid>
</item>
<item>
    <title>【开源软件分享】GPU矩阵运算性能测试工具</title>
    <link>https://blog.starlumina.com/?post=12</link>
    <description><![CDATA[<h1>GPU矩阵运算性能测试工具</h1>
<p>这是一个用于测试GPU矩阵运算性能的基准测试程序，主要测试不同精度下的计算能力。</p>
<p>天梯榜/统计数据：<a href="https://perf.svcfusion.com/">https://perf.svcfusion.com/</a></p>
<h2>功能特点</h2>
<ul>
<li>支持多种数值精度测试（FP32/FP16/BF16）</li>
<li>可配置矩阵大小和测试参数</li>
<li>自动进行GPU预热，确保测试准确性</li>
<li>提供TFLOPS性能指标</li>
<li>包含内存自动管理</li>
</ul>
<h2>默认参数</h2>
<ul>
<li>矩阵大小：1024x1024~10240x10240</li>
<li>预热次数：6次</li>
<li>测试次数：30次</li>
</ul>
<h2>输出结果</h2>
<ul>
<li>GPU设备信息</li>
<li>各精度下的TFLOPS性能指标</li>
</ul>
<h2>已经测试过的数据</h2>
<ul>
<li><a href="database.md">database.md</a></li>
</ul>
<p>您也可以通过提交PR的方式，添加您测试过的数据。</p>
<h2>如何运行</h2>
<h3>1.克隆仓库</h3>
<pre><code class="language-bash">git clone https://github.com/zzc0721/torch-performence-test-data.git
cd torch-performence-test-data</code></pre>
<h3>2.安装依赖</h3>
<p>使用uv作为虚拟环境管理，使用以下命令安装：</p>
<pre><code class="language-bash">uv sync</code></pre>
<p>使用最新的torch版本以及cudatoolkit，也可以参考以下方法安装：</p>
<pre><code class="language-bash">pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu129</code></pre>
<h3>3.运行</h3>
<p>使用uv运行</p>
<pre><code class="language-bash">uv run test.py</code></pre>
<p>直接使用python运行</p>
<pre><code class="language-bash">python test.py</code></pre>
<p>运行完之后如需提交数据可以直接将运行结果发在issue，或是按照 <a href="database.md">database.md</a> 的格式向本仓库提交PR</p>
<h2>贡献者</h2>
<ul>
<li><a href="https://github.com/zzc0208">zzc0208</a></li>
<li><a href="https://github.com/CN17161">KAl(SO₄)₂·12H₂O</a></li>
<li><a href="https://github.com/colstone">turning point</a>  (算法是他做的)</li>
</ul>]]></description>
    <pubDate>Fri, 17 Oct 2025 15:00:00 +0800</pubDate>
    <dc:creator>0x13217D4</dc:creator>
    <guid>https://blog.starlumina.com/?post=12</guid>
</item>
<item>
    <title>飞牛OS安装宝塔后打不开？试试这个解决方法！</title>
    <link>https://blog.starlumina.com/?post=10</link>
    <description><![CDATA[<p>相信不少小伙伴在通过 SSH 安装宝塔面板后，遇到了访问 <code>http://你的IP:5666</code> 无法打开飞牛OS管理界面的问题。别急，这通常是由于系统防火墙（UFW）未放行宝塔所需端口导致的。<br />
别担心，只需两步即可轻松解决。</p>
<h2>解决方案</h2>
<h3>1. 获取 root 权限</h3>
<p>首先通过 SSH 登录你的设备，执行以下命令切换到 root 用户：</p>
<pre><code>sudo -i</code></pre>
<h3>2. 放行宝塔面板端口</h3>
<p>宝塔面板默认使用 <code>5666</code> 和 <code>5667</code> 端口。我们需要将这两个端口添加到防火墙的允许列表中：</p>
<pre><code>sudo ufw allow 5666/tcp
sudo ufw allow 5667/tcp</code></pre>
<p>执行完上述命令后，稍等片刻，刷新你的浏览器，或者重新访问 http://&lt;你的服务器IP&gt;:5666，飞牛OS的管理界面应该就能正常打开了！</p>
<blockquote>
<p>💡 小贴士: 如果你后续在宝塔面板中部署了网站或其他服务（例如 Nginx/Apache、MySQL 等），记得根据需要开放对应的端口（如常见的 80、443 等）。</p>
</blockquote>
<h2>问题根源分析</h2>
<p>飞牛OS 系统默认启用了 UFW (Uncomplicated Firewall) 防火墙，以增强系统安全性。然而，安装宝塔面板时，系统并不会自动配置防火墙规则来放行宝塔面板的访问端口，从而导致了外部访问被拦截。通过手动添加防火墙规则，我们就能顺利访问面板了。<br />
这个方法简单有效，可以解决大部分因防火墙设置导致的宝塔面板无法访问问题。<br />
如果按照以上步骤操作后问题依旧存在，欢迎留言交流，我们一起进一步排查！</p>]]></description>
    <pubDate>Mon, 08 Sep 2025 11:33:14 +0800</pubDate>
    <dc:creator>0x13217D4</dc:creator>
    <guid>https://blog.starlumina.com/?post=10</guid>
</item>
<item>
    <title>【开源项目分享】EcoPaste剪切板工具</title>
    <link>https://blog.starlumina.com/?post=9</link>
    <description><![CDATA[<p><a href="https://github.com/EcoPasteHub/EcoPaste"></p>
<img src="https://socialify.git.ci/EcoPasteHub/EcoPaste/image?description=1&descriptionEditable=%E9%80%82%E7%94%A8%E4%BA%8E%20Windows%E3%80%81MacOS%20%E5%92%8C%20Linux(x11)%20%E7%9A%84%E5%BC%80%E6%BA%90%E5%89%AA%E8%B4%B4%E6%9D%BF%E7%AE%A1%E7%90%86%E5%B7%A5%E5%85%B7%E3%80%82&font=Source%20Code%20Pro&forks=1&issues=1&logo=https%3A%2F%2Fgithub.com%2FEcoPasteHub%2FEcoPaste%2Fblob%2Fmaster%2Fpublic%2Flogo.png%3Fraw%3Dtrue&name=1&owner=1&pattern=Floating%20Cogs&pulls=1&stargazers=1&theme=Auto" alt="EcoPaste" />
<p></a></p>
<h2>下载</h2>
<h3>Windows</h3>
<p>手动下载：<a href="https://api.ecopaste.cn/download?platform=windows-x86">x86</a> | <a href="https://api.ecopaste.cn/download?platform=windows-x64">x64</a> | <a href="https://api.ecopaste.cn/download?platform=windows-arm">ARM64</a></p>
<h3>MacOS</h3>
<p>手动下载：<a href="https://api.ecopaste.cn/download?platform=macos-arm">Apple Silicon</a> | <a href="https://api.ecopaste.cn/download?platform=macos-x64">Intel</a></p>
<p>HomeBrew：<a href="https://ecopaste.cn/guide/install#%E4%BD%BF%E7%94%A8-homebrew-%E5%AE%89%E8%A3%85">点击查看</a></p>
<h3>Linux(x11)</h3>
<p>手动下载：<a href="https://api.ecopaste.cn/download?platform=linux-deb">deb</a> | <a href="https://api.ecopaste.cn/download?platform=linux-appimage">AppImage</a> | <a href="https://api.ecopaste.cn/download?platform=linux-rpm">rpm</a></p>
<p>安装指南：<a href="https://ecopaste.cn/guide/install#linux">点击查看</a></p>
<h2>功能介绍</h2>
<ul>
<li>🎉 基于 Tauri v2 开发，轻量高效，跨平台体验更进一步。</li>
<li>💻 支持 Windows、macOS 和 Linux（x11），在多设备间无缝切换。</li>
<li>✨ 简洁直观的用户界面，操作简单，零门槛上手，开箱即用。</li>
<li>📋 支持纯文本、富文本、HTML、图片和文件类型的剪贴板内容。</li>
<li>🔒 数据本地存储，确保用户隐私安全，数据完全掌控在用户手中。</li>
<li>📝 支持备注功能，轻松分类、管理和检索，让工作更高效。</li>
<li>⚙️ 丰富的个性化设置，满足不同用户需求，打造专属体验。</li>
<li>🤝 完善的文档与社区支持，与开发者共同探索与成长。</li>
<li>🧩 持续优化中，更多惊喜功能等你发现。</li>
</ul>
<h2>问题反馈</h2>
<ol>
<li>
<p>🔍 优先查阅<a href="https://ecopaste.cn/problem/macos/damage">常见问题</a>或浏览已有 <a href="https://github.com/EcoPasteHub/EcoPaste/issues">issues</a>。</p>
</li>
<li>
<p>❓ 如果问题仍未解决，请提交新的 <a href="https://github.com/EcoPasteHub/EcoPaste/issues/new/choose">issue</a>，并附上详细描述，方便我们快速定位和解决。</p>
</li>
</ol>
<h2>历史星标</h2>
<p><a href="https://star-history.com/#EcoPasteHub/EcoPaste&Date"></p>
<picture>
   <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=EcoPasteHub/EcoPaste&type=Date&theme=dark" />
   <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=EcoPasteHub/EcoPaste&type=Date" />
   <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=EcoPasteHub/EcoPaste&type=Date" />
 </picture>
<p></a></p>
<h2>社区交流</h2>
<p>⚠️ 温馨提示：群聊仅限日常讨论和经验分享，如需反馈问题或提交新需求，请查看<a href="#问题反馈">问题反馈</a>。</p>
<table>
  <thead>
    <tr>
      <th width="50%">微信群</th>
      <th width="50%">QQ 群</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>
        <picture>
          <source media="(prefers-color-scheme: dark)" srcset="https://ecopaste.cn/community/wechat-group-dark.png" />
          <source media="(prefers-color-scheme: light)" srcset="https://ecopaste.cn/community/wechat-group-light.png" />
          <img src="https://ecopaste.cn/community/wechat-group-light.png" />
        </picture>
      </td>
      <td>
        <picture>
          <source media="(prefers-color-scheme: dark)" srcset="https://ecopaste.cn/community/qq-group-dark.png" />
          <source media="(prefers-color-scheme: light)" srcset="https://ecopaste.cn/community/qq-group-light.png" />
          <img src="https://ecopaste.cn/community/qq-group-light.png" />
        </picture>
      </td>
    </tr>
  </tbody>
</table>
<h2>贡献者</h2>
<p>感谢大家为 EcoPaste 做出的宝贵贡献！如果你也希望为 EcoPaste 做出贡献，请查阅<a href="./.github/CONTRIBUTING/zh-CN.md">贡献指南</a>。</p>
<p><a href="https://github.com/EcoPasteHub/EcoPaste/graphs/contributors"></p>
<img src="https://contrib.rocks/image?repo=EcoPasteHub/EcoPaste" />
<p></a></p>]]></description>
    <pubDate>Sun, 10 Aug 2025 22:00:00 +0800</pubDate>
    <dc:creator>0x13217D4</dc:creator>
    <guid>https://blog.starlumina.com/?post=9</guid>
</item>
<item>
    <title>Windows常用软件整理</title>
    <link>https://blog.starlumina.com/?post=2</link>
    <description><![CDATA[<h1>社交</h1>
<h2>通讯</h2>
<h3>微信：<a href="https://pc.weixin.qq.com/" title="点击下载">点击下载</a></h3>
<h3>QQ：<a href="https://im.qq.com/pcqq" title="点击下载">点击下载</a></h3>
<h3>TIM：<a href="https://office.qq.com/download.html" title="点击下载">点击下载</a></h3>
<h2>办公</h2>
<h3>钉钉：<a href="https://page.dingtalk.com/wow/z/dingtalk/default/dddownload-index?from=zebra:offline" title="点击下载">点击下载</a></h3>
<h3>腾讯会议：<a href="https://meeting.tencent.com/download-center.html" title="点击下载">点击下载</a></h3>
<h3>飞书：<a href="https://www.feishu.cn/download" title="点击下载">点击下载</a></h3>
<h3>企业微信：<a href="https://work.weixin.qq.com/#indexDownload" title="点击下载">点击下载</a></h3>
<hr />
<h1>实用工具</h1>
<h2>浏览器</h2>
<h3>Microsoft Edge：<a href="https://www.microsoft.com/zh-cn/edge?r=1#evergreen" title="点击下载">点击下载</a></h3>
<h3>Geogle Chrome：<a href="https://www.google.cn/intl/zh-CN/chrome/" title="点击下载">点击下载</a></h3>
<h2>安全防护</h2>
<h3>火绒安全：<a href="https://www.huorong.cn/person5.html" title="点击下载">点击下载</a></h3>
<h2>播放器</h2>
<h3>PotPlayer：<a href="http://potplayer.tv/" title="点击下载">点击下载</a></h3>
<h2>文档办公</h2>
<h3>WPS Office：<a href="https://www.wps.cn/" title="点击下载">点击下载</a></h3>
<h2>压缩包</h2>
<h3>BandiZIP:<a href="http://www.bandisoft.com/bandizip/" title="点击下载">点击下载</a></h3>
<h3>7-ZIP：<a href="https://www.7-zip.org/" title="点击下载">点击下载</a></h3>
<h2>数据网盘</h2>
<h3>百度网盘：<a href="https://pan.baidu.com/download" title="点击下载">点击下载</a></h3>
<h3>阿里云盘：<a href="https://www.aliyundrive.com/download" title="点击下载">点击下载</a></h3>
<h3>123云盘：<a href="https://www.123pan.com/Downloadclient?type=App" title="点击下载">点击下载</a></h3>
<h3>华为家庭存储：<a href="https://consumer.huawei.com/cn/support/memo-space/" title="点击下载">点击下载</a></h3>
<h2>文件工具</h2>
<h3>Everything：<a href="https://www.voidtools.com/zh-cn/" title="点击下载">点击下载</a></h3>
<h3>图吧工具箱：<a href="https://www.tbtool.cn/" title="点击下载">点击下载</a></h3>
<h3>ToDesk：<a href="https://www.todesk.com/download.html" title="点击下载">点击下载</a></h3>
<h2>网络加速</h2>
<h3>Watt Toolkit：<a href="https://steampp.net/" title="点击下载">点击下载</a></h3>
<h2>开发工具</h2>
<h3>Android Studio：<a href="https://developer.android.google.cn/studio" title="点击下载">点击下载</a></h3>
<h3>HarmonyOS DevEco Studio：<a href="https://developer.huawei.com/consumer/cn/download/" title="点击下载">点击下载</a></h3>
<h3>Visual Studio Code：<a href="https://code.visualstudio.com/Download" title="点击下载">点击下载</a></h3>
<h3>MobaXterm:<a href="https://mobaxterm.mobatek.net/download.html" title="点击下载">点击下载</a></h3>
<h2>刷机工具</h2>
<h3>微PE：<a href="https://www.wepe.com.cn/download.html" title="点击下载">点击下载</a></h3>
<hr />
<h1>影音娱乐</h1>
<h2>视频&amp;音乐</h2>
<h3>网易云音乐：<a href="https://music.163.com/#/download" title="点击下载">点击下载</a></h3>
<h3>QQ音乐：<a href="https://y.qq.com/download/download.html" title="点击下载">点击下载</a></h3>
<h3>哔哩哔哩：<a href="https://app.bilibili.com/" title="点击下载">点击下载</a></h3>
<h2>视频剪辑</h2>
<h3>剪映：<a href="https://www.capcut.cn/" title="点击下载">点击下载</a></h3>
<h3>格式工厂：<a href="http://www.pcfreetime.com/formatfactory/CN/index.html" title="点击下载">点击下载</a></h3>
<h2>游戏平台</h2>
<h3>Steam：<a href="https://store.steampowered.com/about/" title="点击下载">点击下载</a></h3>
<h3>Epic：<a href="https://store.epicgames.com/zh-CN/" title="点击下载">点击下载</a></h3>]]></description>
    <pubDate>Thu, 01 May 2025 00:00:00 +0800</pubDate>
    <dc:creator>0x13217D4</dc:creator>
    <guid>https://blog.starlumina.com/?post=2</guid>
</item>
</channel>
</rss>