<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:wfw="http://wellformedweb.org/CommentAPI/">
<channel>
<title>拾光 - 软件分享</title>
<link>https://www.ishiguang.cn/downs.html</link>
<atom:link href="https://www.ishiguang.cn/feed/downs.html" rel="self" type="application/rss+xml" />
<language>zh-CN</language>
<description></description>
<lastBuildDate>Tue, 09 Dec 2025 14:50:36 +0800</lastBuildDate>
<pubDate>Tue, 09 Dec 2025 14:50:36 +0800</pubDate>
<item>
<title>excel 技巧2</title>
<link>https://www.ishiguang.cn/22178.html</link>
<guid>https://www.ishiguang.cn/22178.html</guid>
<pubDate>Tue, 09 Dec 2025 14:50:36 +0800</pubDate>
<dc:creator>admin</dc:creator>
<description><![CDATA[excel 技巧2Excel筛选并排除录制宏查找函数Vlookup Xlookup Filter的用法[Excel跨表合并数据]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>excel 技巧2</p><p>Excel筛选并排除<br></p><p>录制宏<br></p><p>查找函数Vlookup Xlookup Filter的用法<br></p><p>[Excel跨表合并数据<br></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://www.ishiguang.cn/22178.html#comments</comments>
<wfw:commentRss>https://www.ishiguang.cn/feed/downs.html</wfw:commentRss>
</item>
<item>
<title>excel小技巧</title>
<link>https://www.ishiguang.cn/22136.html</link>
<guid>https://www.ishiguang.cn/22136.html</guid>
<pubDate>Mon, 01 Dec 2025 17:33:31 +0800</pubDate>
<dc:creator>admin</dc:creator>
<description><![CDATA[excel小技巧多列内容快速整理成一列汇总报销文字竖向名称整理工资表填充筛选合并表格]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>excel小技巧</p><p>多列内容快速整理成一列<br></p><p>汇总报销<br></p><p>文字竖向<br></p><p>名称整理<br></p><p>工资表<br></p><p>填充<br></p><p>筛选<br></p><p>合并表格<br></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://www.ishiguang.cn/22136.html#comments</comments>
<wfw:commentRss>https://www.ishiguang.cn/feed/downs.html</wfw:commentRss>
</item>
<item>
<title>excel数据透视和vlookup</title>
<link>https://www.ishiguang.cn/22127.html</link>
<guid>https://www.ishiguang.cn/22127.html</guid>
<pubDate>Mon, 01 Dec 2025 16:40:00 +0800</pubDate>
<dc:creator>admin</dc:creator>
<description><![CDATA[excel数据透视和vlookupexcel数据透视: 先框选-插入-数据透视vlookup： =vlookup(选择查询的数据依据，数据范围F4锁定，数据位置列，0或者false)]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>excel数据透视和vlookup</p><p>excel数据透视:<br> 先框选-插入-数据透视<br>vlookup：<br> =vlookup(选择查询的数据依据，数据范围F4锁定，数据位置列，0或者false)</p><p><br><br><br></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://www.ishiguang.cn/22127.html#comments</comments>
<wfw:commentRss>https://www.ishiguang.cn/feed/downs.html</wfw:commentRss>
</item>
<item>
<title>Vscode无法运行npm（npm : 无法加载文件）</title>
<link>https://www.ishiguang.cn/22073.html</link>
<guid>https://www.ishiguang.cn/22073.html</guid>
<pubDate>Fri, 14 Nov 2025 21:01:04 +0800</pubDate>
<dc:creator>admin</dc:creator>
<description><![CDATA[npm : 无法加载文件 C:\Program Files\nodejs\npm.ps1，因为在此系统上禁止运行脚本。有关详细信息，请参阅 https:/go.microsoft.com/fwl...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>npm : 无法加载文件 C:\Program Files\nodejs\npm.ps1，因为在此系统上禁止运行脚本。有关详细信息，请参阅 https:/go.microsoft.com/fwlink/?Li<br>nkID=135170 中的 about_Execution_Policies。</p><p>这个错误是因为你的系统默认的执行策略不允许运行未签名的脚本。以下是解决方法：<br>方法一：临时允许运行脚本<br>在 PowerShell 中运行以下命令：<br>powershell 体验AI代码助手 代码解读复制代码Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass</p><p>解释：Set-ExecutionPolicy 是设置执行策略的命令，-Scope Process 表示只对当前 PowerShell 会话生效，-ExecutionPolicy Bypass 表示绕过执行策略限制。<br>优点：不会永久改变系统设置，只对当前会话有效。<br>缺点：每次打开新的 PowerShell 窗口都需要重新设置。</p><p>方法二：永久更改执行策略（实测可行）<br>在 PowerShell 中运行以下命令：<br>powershell 体验AI代码助手 代码解读复制代码Set-ExecutionPolicy -Scope LocalMachine -ExecutionPolicy RemoteSigned</p><p>解释：-Scope LocalMachine 表示对整个系统生效，-ExecutionPolicy RemoteSigned 表示允许运行本地脚本和已签名的远程脚本。<br>优点：设置后无需再次更改，方便后续使用。<br>缺点：可能会带来一定的安全风险，因为允许运行本地脚本。</p><p>方法三：以管理员权限运行 PowerShell</p><p>右键点击 PowerShell 图标，选择“以管理员身份运行”。<br>再次尝试运行 npm -v。</p><p>方法四：手动运行 npm 命令<br>如果上述方法都不适用，你可以尝试直接运行 npm 的可执行文件：<br>bash 体验AI代码助手 代码解读复制代码"C:\Program Files\nodejs\npm.cmd" -v</p><p>这样可以绕过 PowerShell 的执行策略限制。<br>注意事项</p><p>在更改执行策略时，请确保了解其安全风险，尤其是当系统中存在未知来源的脚本时。<br>如果你对系统安全有较高要求，建议选择 方法一 或 方法三，避免永久更改执行策略。</p><p>作者：JIAKSK<br>链接：<a href="https://juejin.cn/post/7503454000494739494">https://juejin.cn/post/7503454000494739494</a><br>来源：稀土掘金<br>著作权归作者所有。商业转载请联系作者获得授权，非商业转载请注明出处。</p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://www.ishiguang.cn/22073.html#comments</comments>
<wfw:commentRss>https://www.ishiguang.cn/feed/downs.html</wfw:commentRss>
</item>
<item>
<title>deepseek本地使用收费接口</title>
<link>https://www.ishiguang.cn/22050.html</link>
<guid>https://www.ishiguang.cn/22050.html</guid>
<pubDate>Fri, 07 Nov 2025 11:19:26 +0800</pubDate>
<dc:creator>ssr</dc:creator>
<description><![CDATA[deepseek本地使用收费接口（首先你得有TOKEN）由于免费版的经常回答到一半就中断了，说文字太多啥的，没办法买了一个收费的，感觉还行，简单来说就是一个HTML文件，对话记录支持存本地，即使...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>deepseek本地使用收费接口（首先你得有TOKEN）</p><p>由于免费版的经常回答到一半就中断了，说文字太多啥的，没办法买了一个收费的，感觉还行，简单来说就是一个HTML文件，对话记录支持存本地，即使下次再使用也没有问题的，还支持新建会话</p><p><img src="https://up.ishiguang.cn/uploads/2025/11/979757793.png?imageMogr2/format/webp" alt="2025-11-07T03:18:07.png" title="2025-11-07T03:18:07.png"></p><p>deepseek:<a href="https://up.ishiguang.cn/uploads/2025/11/1723596596.zip">deepseek.zip</a></p>
]]></content:encoded>
<slash:comments>1</slash:comments>
<comments>https://www.ishiguang.cn/22050.html#comments</comments>
<wfw:commentRss>https://www.ishiguang.cn/feed/downs.html</wfw:commentRss>
</item>
<item>
<title>typecho接口API（非插件）</title>
<link>https://www.ishiguang.cn/22039.html</link>
<guid>https://www.ishiguang.cn/22039.html</guid>
<pubDate>Tue, 21 Oct 2025 14:16:00 +0800</pubDate>
<dc:creator>ssr</dc:creator>
<description><![CDATA[typecho接口API（非插件）一直想搞个API然后再简单粗糙搞个APP方便发文章和和朋友圈就可以了，因为手机访问网页再登录啥的太麻烦了，所以就一直在找，前几天找到了一个开源的项目，Autho...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>typecho接口API（非插件）</p><p>一直想搞个API然后再简单粗糙搞个APP方便发文章和和朋友圈就可以了，因为手机访问网页再登录啥的太麻烦了，<br>所以就一直在找，前几天找到了一个开源的项目，</p><ul><li>Author: 云猫</li><li>Email: <a href="mailto:yuncat@email.lwcat.cn">yuncat@email.lwcat.cn</a></li><li>项目地址<a href="https://github.com/smcloudcat/typechoapi">https://github.com/smcloudcat/typechoapi</a></li></ul><p>这作者的，我拿来测试大部分功能都OK，但是小部分还是没好，一直催这作者更新，<br>然并卵，他天天就是说好好好，就没下文了，办法只能在他的基础上自己改<br>这几天折腾一下终于改好，所以如果有用得着的小伙伴自行拿去用就好了<br>我改的有啥问题可以邮箱我或者直接QQ我  <a href="mailto:8244409@qq.com">8244409@qq.com</a></p><ul><li>API文档地址</li><li>API文件</li></ul><p><font color=red>新版正在紧张测试</p><p>API文件地址（只适合本APP）：<a href="https://up.ishiguang.cn/uploads/2025/11/1660135304.zip">TypechoAPI1.3.zip</a>  第一版可以用<br>第二版API：<a href="https://up.ishiguang.cn/uploads/2025/11/1425871738.zip">新版API1.21.zip</a>  （新版API）<br>第二版API更新包：<a href="https://up.ishiguang.cn/uploads/2025/11/4069983946.zip">apix5 - 副本.zip</a> （以后更新只更新主文件，需要七牛SDK请下载上面的包，自己替换）</p><p>APP(测试版本):</p><p>第一版 <a href="https://up.ishiguang.cn/uploads/2025/11/3651246150.apk">api9.apk</a> 可用版本（暂时不会更新）<br>第二版 <a href="https://up.ishiguang.cn/uploads/2025/11/2332227743.apk">ap2-1.54.apk</a> 新版增加分享和七牛时间戳<br>第三版 <a href="https://up.ishiguang.cn/upload/typecho1.4220251115.apk">typecho1.42.apk</a>  （推荐，不需要任何插件）<br></font></p><blockquote>第三版更新：（原版上传需要关闭上传插件，插件的原因引起的这个APP无法修复,支持白熊主题七牛云）</blockquote><ul><li>1.4 更新对MP3播放器的解析，只解析单个播放器，只对白熊主题解析解析格式为</li><li>[\bsmp3 url="81889.mp3" name="123" ]</li><li>更新代码高亮解析    七牛接口地址为我的网站地址  /qiniu/api26.php</li><li>如果是跟我一样使用的是白熊的主题，原版上传支持主题的七牛插件，不需要另外配置七牛了！唯独需要覆盖主题的一个配置文件</li></ul><p>（两个版本都可以使用，只是界面样式不一样）<br>ps:APP免费只是需要授权，评论或者联系我给授权，本版本暂时只是测试！<br>授权域名添加地址：  <a href="https://www.ishiguang.cn/shouquan.php">https://www.ishiguang.cn/shouquan.php</a>  自己去添加<br></font></p><ul><li>使用方法</li></ul><ol><li>手动更改token</li><li>上传至网站根目录</li><li>图片上传暂时只支持7牛云<br>*. 服务器地址请不要修改<br><img src="https://up.ishiguang.cn/uploads/2025/11/3118247424.png?imageMogr2/format/webp" alt="2025-11-06T00:49:44.png" title="2025-11-06T00:49:44.png"><br>PS：置于APP，正在适配，适配完了，大家也可以用，只要使用该API就行</li></ol>
]]></content:encoded>
<slash:comments>13</slash:comments>
<comments>https://www.ishiguang.cn/22039.html#comments</comments>
<wfw:commentRss>https://www.ishiguang.cn/feed/downs.html</wfw:commentRss>
</item>
<item>
<title>在写主题的时候，想直接使用typecho的数据库API</title>
<link>https://www.ishiguang.cn/22020.html</link>
<guid>https://www.ishiguang.cn/22020.html</guid>
<pubDate>Mon, 13 Oct 2025 22:21:00 +0800</pubDate>
<dc:creator>ssr</dc:creator>
<description><![CDATA[在使用php开发小型项目时，不想自己写数据库操作api，如何调用typecho的数据库操作api呢，本文讲解下。引入文件将typecho程序的var文件夹放入自己的项目，var文件夹下有四个文件...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>在使用php开发小型项目时，不想自己写数据库操作api，如何调用typecho的数据库操作api呢，本文讲解下。</p><p>引入文件<br>将typecho程序的var文件夹放入自己的项目，var文件夹下有四个文件夹保留Typecho文件夹，其余删掉（不删也行只是用不到）。</p><p>调用<br>然后在自己项目里，新建个php文件，如typechoDb.php，代码如下</p><pre><code class="lang-php">&lt;?php
// site root path
define(&#039;__TYPECHO_ROOT_DIR__&#039;, dirname(__FILE__));

// register autoload
require_once __TYPECHO_ROOT_DIR__ . &#039;/var/Typecho/Common.php&#039;;

// init
\Typecho\Common::init();
// config db
$db = new \Typecho\Db(&#039;Pdo_Mysql&#039;, &#039;doc_&#039;);
$db-&gt;addServer(array (
  &#039;host&#039; =&gt; &#039;localhost&#039;,
  &#039;port&#039; =&gt; 3306,
  &#039;user&#039; =&gt; &#039;数据库用户名&#039;,
  &#039;password&#039; =&gt; &#039;密码&#039;,
  &#039;charset&#039; =&gt; &#039;utf8mb4&#039;,
  &#039;database&#039; =&gt; &#039;数据库名&#039;,
  &#039;engine&#039; =&gt; &#039;InnoDB&#039;,
), \Typecho\Db::READ | \Typecho\Db::WRITE);
\Typecho\Db::set($db);</code></pre><p>将里面的数据库地址名字以及密码对应填好，需要用到数据库操作api时，引用下这个文件即可，如</p><pre><code class="lang-php">include_once &#039;typechoDb.php&#039;;</code></pre><p>转自：<a href="https://typecho.work/archives/typechodb-api.html">https://typecho.work/archives/typechodb-api.html</a></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://www.ishiguang.cn/22020.html#comments</comments>
<wfw:commentRss>https://www.ishiguang.cn/feed/downs.html</wfw:commentRss>
</item>
<item>
<title>app-Star徽章助手_1.3.0 光遇徽章助手</title>
<link>https://www.ishiguang.cn/21869.html</link>
<guid>https://www.ishiguang.cn/21869.html</guid>
<pubDate>Mon, 06 Oct 2025 19:18:40 +0800</pubDate>
<dc:creator>admin</dc:creator>
<description><![CDATA[xiazaiapp-Star徽章助手_1.3.0 光遇徽章助手Star徽章助手_1.3.0.Apk]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>xiazai<br>app-Star徽章助手_1.3.0 光遇徽章助手</p><p><a href="https://up.ishiguang.cn/uploads/2025/10/4000986976.apk">Star徽章助手_1.3.0.Apk</a></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://www.ishiguang.cn/21869.html#comments</comments>
<wfw:commentRss>https://www.ishiguang.cn/feed/downs.html</wfw:commentRss>
</item>
<item>
<title>typecho当前文章自定义标签TAG标签样式</title>
<link>https://www.ishiguang.cn/21859.html</link>
<guid>https://www.ishiguang.cn/21859.html</guid>
<pubDate>Wed, 24 Sep 2025 15:04:00 +0800</pubDate>
<dc:creator>ssr</dc:creator>
<description><![CDATA[写主题的时候有的需要给tag自定义clss但是没有具体的方法&lt;?php $this-&gt;tags(' ', true, 'none'); ?&gt;会直接输出一个a 连接，自己写样式又...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>写主题的时候有的需要给tag自定义clss但是没有具体的方法&lt;?php $this-&gt;tags(' ', true, 'none'); ?&gt;会直接输出一个a 连接，自己写样式又麻烦之前都不了了之用别的绕过了这次想把这个功能实现了。</p><p>但是找疯了一个都没有找到，后来想到看看别人写的主题有没有实现了这个功能的最终找到了这个侵入性最小的实现</p><p>代码如下：</p><pre><code>function printTag($that) { ?&gt;
        &lt;?php if (count($that-&gt;tags) &gt; 0): ?&gt;
            &lt;?php foreach( $that-&gt;tags as $tags): ?&gt;
            &lt;a href=&quot;&lt;?php print($tags[&#039;permalink&#039;]) ?&gt;&quot; class=&quot;btn btn-primary btn-sm ml-0 mr-1 mb-1 hover-target&quot;&gt;&lt;span&gt;&lt;?php print($tags[&#039;name&#039;]) ?&gt;&lt;/span&gt;&lt;/a&gt;
            &lt;?php endforeach;?&gt;
        &lt;?php else: ?&gt;
            &lt;a class=&quot;btn btn-primary btn-sm ml-0 mr-1 mb-1 hover-target&quot;&gt;&lt;span&gt;无标签&lt;/span&gt;&lt;/a&gt;
        &lt;?php endif;?&gt;
&lt;?php }</code></pre><p>在主题functions.php文件内放入上面代码 按需要更改上面的class 啥的。</p><p>使用方法：</p><p>标签：</p><pre><code>&lt;?php printTag($this); ?&gt;</code></pre><p>如果不需要给A加样式还可以这样不需要加方法<br>给每个标签套上div</p><pre><code>&lt;div&gt;&lt;?php $this-&gt;tags(&#039;&lt;/div&gt;&lt;div&gt;&#039;, true, &#039;none&#039;); ?&gt;&lt;/div&gt;</code></pre><p>转自：<a href="https://www.krsay.com/typecho/typecho-tag-diy-clss.html">https://www.krsay.com/typecho/typecho-tag-diy-clss.html</a></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://www.ishiguang.cn/21859.html#comments</comments>
<wfw:commentRss>https://www.ishiguang.cn/feed/downs.html</wfw:commentRss>
</item>
<item>
<title>螺旋矩阵解法</title>
<link>https://www.ishiguang.cn/21844.html</link>
<guid>https://www.ishiguang.cn/21844.html</guid>
<pubDate>Wed, 17 Sep 2025 15:07:15 +0800</pubDate>
<dc:creator>ssr</dc:creator>
<description><![CDATA[螺旋矩阵解法实现以下矩阵C#解法：public class Solution {    public IList&lt;int&gt; SpiralOrder(int[][] matrix) {...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>螺旋矩阵解法</p><p>实现以下矩阵</p><p><img src="https://up.ishiguang.cn/uploads/2025/09/2213531560.png?imageMogr2/format/webp" alt="2025-09-17T07:05:43.png" title="2025-09-17T07:05:43.png"></p><p>C#解法：</p><pre><code class="lang-c#">public class Solution {
    public IList&lt;int&gt; SpiralOrder(int[][] matrix) {
        var result = new List&lt;int&gt;();
        if (matrix == null || matrix.Length == 0 || matrix[0].Length == 0)
            return result;

        int top = 0, bottom = matrix.Length - 1;
        int left = 0, right = matrix[0].Length - 1;

        while (top &lt;= bottom &amp;&amp; left &lt;= right) {
            for (int i = left; i &lt;= right; i++) result.Add(matrix[top][i]);
            top++;

            for (int i = top; i &lt;= bottom; i++) result.Add(matrix[i][right]);
            right--;

            if (top &lt;= bottom) {
                for (int i = right; i &gt;= left; i--) result.Add(matrix[bottom][i]);
                bottom--;
            }

            if (left &lt;= right) {
                for (int i = bottom; i &gt;= top; i--) result.Add(matrix[i][left]);
                left++;
            }
        }
        return result;
    }
}</code></pre>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://www.ishiguang.cn/21844.html#comments</comments>
<wfw:commentRss>https://www.ishiguang.cn/feed/downs.html</wfw:commentRss>
</item>
</channel>
</rss>