-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.xml
102 lines (84 loc) · 8.47 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Glade</title>
<link>/</link>
<description>Recent content on Glade</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<copyright>&copy; 2021 <a href="https://haoenz.github.io/">H. Zhang</a>
</copyright>
<lastBuildDate>Sat, 25 Dec 2021 15:54:52 +0800</lastBuildDate><atom:link href="/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Windows远程服务端配置</title>
<link>/posts/windows%E8%BF%9C%E7%A8%8B%E6%9C%8D%E5%8A%A1%E7%AB%AF%E9%85%8D%E7%BD%AE/</link>
<pubDate>Sat, 25 Dec 2021 15:54:52 +0800</pubDate>
<guid>/posts/windows%E8%BF%9C%E7%A8%8B%E6%9C%8D%E5%8A%A1%E7%AB%AF%E9%85%8D%E7%BD%AE/</guid>
<description><!--TODO:添加ssh-agent、set-acl权限控制-->
<p>办公室配的台式机性能和网速都比我自己的这台超极本要好得多,因此我希望可以即使不在办公室时也能使用它的资源。换句话说,我想把办公室的台式机作为远程服务器来使用。这需要进行一些简单的配置,在未做特别说明时,本文中的客户端为Win10系统,服务端为Win11系统。</p></description>
</item>
<item>
<title>Win10删除阿尔巴尼亚语键盘的方法</title>
<link>/posts/win10%E5%88%A0%E9%99%A4%E9%98%BF%E5%B0%94%E5%B7%B4%E5%B0%BC%E4%BA%9A%E8%AF%AD%E9%94%AE%E7%9B%98%E7%9A%84%E6%96%B9%E6%B3%95/</link>
<pubDate>Wed, 15 Dec 2021 13:47:07 +0800</pubDate>
<guid>/posts/win10%E5%88%A0%E9%99%A4%E9%98%BF%E5%B0%94%E5%B7%B4%E5%B0%BC%E4%BA%9A%E8%AF%AD%E9%94%AE%E7%9B%98%E7%9A%84%E6%96%B9%E6%B3%95/</guid>
<description><p>出于目前尚不明确的原因,我的Win10上时不时会冒出一个阿尔巴尼亚语键盘(SQI键盘),我尝试过多种方法来删除它,但是都不能根除,往往过了一段时间就又冒了出来。所以写下这篇日志记录一下采取过的方法,看看最后能不能根除这个问题。</p></description>
</item>
<item>
<title>PowerShell 7安装配置小记</title>
<link>/posts/powershell-7%E5%AE%89%E8%A3%85%E9%85%8D%E7%BD%AE%E5%B0%8F%E8%AE%B0/</link>
<pubDate>Wed, 08 Dec 2021 15:44:33 +0800</pubDate>
<guid>/posts/powershell-7%E5%AE%89%E8%A3%85%E9%85%8D%E7%BD%AE%E5%B0%8F%E8%AE%B0/</guid>
<description><p>折腾了一段时间的PowerShell 7,最大的感受是在安装和文件管理上有些混乱,我很不喜欢装完软件之后不知道它到底被装到哪里去了的那种感觉。所以觉得需要写一篇小记记录一些遇到的坑和需要注意的一些细节。</p></description>
</item>
<item>
<title>在PowerShell中使用压缩软件7z</title>
<link>/posts/%E5%9C%A8powershell%E4%B8%AD%E4%BD%BF%E7%94%A8%E5%8E%8B%E7%BC%A9%E8%BD%AF%E4%BB%B67z/</link>
<pubDate>Tue, 26 Oct 2021 13:24:16 +0800</pubDate>
<guid>/posts/%E5%9C%A8powershell%E4%B8%AD%E4%BD%BF%E7%94%A8%E5%8E%8B%E7%BC%A9%E8%BD%AF%E4%BB%B67z/</guid>
<description><p>为了可以全局使用<code>7z</code>命令,可以将7z的安装目录加入系统环境变量,也可以为其声明一条别名,后者的影响范围较小且修改更便捷,因此采用后者:</p>
<pre><code class="language-PowerShell">Set-Alias 7z 'C:\Program Files\7-Zip\7z.exe'
</code></pre>
<p>将此命令添加到<code>$PROFILE</code>中重启终端即可全局使用<code>7z</code>命令调用7z命令行程序了。</p></description>
</item>
<item>
<title>Excel的FIND函数与SEARCH函数详解</title>
<link>/posts/excel%E7%9A%84find%E5%87%BD%E6%95%B0%E4%B8%8Esearch%E5%87%BD%E6%95%B0%E8%AF%A6%E8%A7%A3/</link>
<pubDate>Fri, 22 Oct 2021 14:12:54 +0800</pubDate>
<guid>/posts/excel%E7%9A%84find%E5%87%BD%E6%95%B0%E4%B8%8Esearch%E5%87%BD%E6%95%B0%E8%AF%A6%E8%A7%A3/</guid>
<description><p>在Excel中,需要在一个字符串中查找另一个字符串时,我们会用到<a href="https://support.microsoft.com/zh-cn/office/find-findb-%E5%87%BD%E6%95%B0-c7912941-af2a-4bdf-a553-d0d89b0a0628">FIND函数</a>或<a href="https://support.microsoft.com/zh-cn/office/search-searchb-%E5%87%BD%E6%95%B0-9ab04538-0e55-4719-a72e-b6f54513b495">SEARCH函数</a>,两者的区别仅在于,SEARCH函数不区分大小写且支持通配符,因此以下仅对FIND函数进行说明。</p></description>
</item>
<item>
<title>UCAS雁栖湖花式进出城之二-九</title>
<link>/posts/ucas%E9%9B%81%E6%A0%96%E6%B9%96%E8%8A%B1%E5%BC%8F%E8%BF%9B%E5%87%BA%E5%9F%8E%E4%B9%8B%E4%BA%8C-%E4%B9%9D/</link>
<pubDate>Wed, 28 Apr 2021 21:36:11 +0800</pubDate>
<guid>/posts/ucas%E9%9B%81%E6%A0%96%E6%B9%96%E8%8A%B1%E5%BC%8F%E8%BF%9B%E5%87%BA%E5%9F%8E%E4%B9%8B%E4%BA%8C-%E4%B9%9D/</guid>
<description><p>本文撰写于2021年2月末,最初发表在<a href="https://zhuanlan.zhihu.com/p/353108037">知乎专栏</a>上,在这里重发一方面是为了整理自己写过的东西,另一方面也是为了测试如何在Hexo中插入图片题注。</p>
<hr>
<p>关于路程时间:<strong>候车时间不计</strong>(因此每个方案的总用时仅供参考),室内换乘时间可能有一定误差,数据参考高德地图&amp;盛名时刻表。路径中铁路部分具体用时以我首次使用该路径时乘坐的车次为准。</p>
<p>关于地铁票价:即使在地铁网络中并未按最短路径运行,也依然按最短路径计算票价(这也是实际中的情况),不考虑超时乘坐的额外收费,不考虑在路径中途进出收费区产生的额外费用。</p>
<p>关于公交票价:按使用市政公交卡5折优惠处理。</p></description>
</item>
<item>
<title>4472次运转&UCAS雁栖湖花式进出城之一</title>
<link>/posts/4472%E6%AC%A1%E8%BF%90%E8%BD%ACucas%E9%9B%81%E6%A0%96%E6%B9%96%E8%8A%B1%E5%BC%8F%E8%BF%9B%E5%87%BA%E5%9F%8E%E4%B9%8B%E4%B8%80/</link>
<pubDate>Wed, 28 Apr 2021 19:47:42 +0800</pubDate>
<guid>/posts/4472%E6%AC%A1%E8%BF%90%E8%BD%ACucas%E9%9B%81%E6%A0%96%E6%B9%96%E8%8A%B1%E5%BC%8F%E8%BF%9B%E5%87%BA%E5%9F%8E%E4%B9%8B%E4%B8%80/</guid>
<description><p>本运转记录撰写于2020年国庆,最初发表在<a href="https://zhuanlan.zhihu.com/p/260837512">知乎专栏</a>上,在这里重发一方面是为了整理自己写过的东西,另一方面也是为了测试如何在Hexo中插入图片题注。</p></description>
</item>
<item>
<title>在Excel中根据单元格填充颜色计数</title>
<link>/posts/%E5%9C%A8excel%E4%B8%AD%E6%A0%B9%E6%8D%AE%E5%8D%95%E5%85%83%E6%A0%BC%E5%A1%AB%E5%85%85%E9%A2%9C%E8%89%B2%E8%AE%A1%E6%95%B0/</link>
<pubDate>Wed, 23 Oct 2019 20:11:48 +0800</pubDate>
<guid>/posts/%E5%9C%A8excel%E4%B8%AD%E6%A0%B9%E6%8D%AE%E5%8D%95%E5%85%83%E6%A0%BC%E5%A1%AB%E5%85%85%E9%A2%9C%E8%89%B2%E8%AE%A1%E6%95%B0/</guid>
<description><p>在维护我的城市轨道交通乘降记录表时,我使用了不同的填充颜色来标记我在某个站点乘降时是否进出了付费区。因此在统计某条线路的乘降比时,我希望能够直接按单元格填充颜色来计数。经过检索后发现达成这个目的主要有利用GET.CELL函数定义名称和使用VBA编写函数两种方式,而我认为后者的使用更加方便灵活。</p></description>
</item>
<item>
<title>使用Selenium的Webdriver模块抓取网页信息</title>
<link>/posts/%E4%BD%BF%E7%94%A8selenium%E7%9A%84webdriver%E6%A8%A1%E5%9D%97%E6%8A%93%E5%8F%96%E7%BD%91%E9%A1%B5%E4%BF%A1%E6%81%AF/</link>
<pubDate>Tue, 22 Oct 2019 10:16:21 +0800</pubDate>
<guid>/posts/%E4%BD%BF%E7%94%A8selenium%E7%9A%84webdriver%E6%A8%A1%E5%9D%97%E6%8A%93%E5%8F%96%E7%BD%91%E9%A1%B5%E4%BF%A1%E6%81%AF/</guid>
<description><p>女友前几天遇到一个问题,她在工作上需要保存一组ebay商品的展示图片并对其进行处理,于是希望能用Python写一个脚本来完成这个机械化的工作,便前来和我讨论。</p></description>
</item>
</channel>
</rss>