-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xml
More file actions
89 lines (89 loc) · 5.53 KB
/
index.xml
File metadata and controls
89 lines (89 loc) · 5.53 KB
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>一点沉吟 | Kaay's Blog</title>
<link>https://kkua.github.io/</link>
<description>Recent content on 一点沉吟 | Kaay's Blog</description>
<generator>Hugo</generator>
<language>zh-Hans</language>
<lastBuildDate>Sun, 02 Apr 2023 16:53:34 +0800</lastBuildDate>
<atom:link href="https://kkua.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>PVE7版本下AMD R5-4650GE核显直通</title>
<link>https://kkua.github.io/post/amd-core-graphics-card-passthrough-to-pve/</link>
<pubDate>Sun, 02 Apr 2023 16:53:34 +0800</pubDate>
<guid>https://kkua.github.io/post/amd-core-graphics-card-passthrough-to-pve/</guid>
<description>本文记录了将AMD R5-4650GE直通给PVE内Linux虚拟机的操作过程 启用IOMMU直通,ACS分组 vim /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT=&#34;quiet iommu=pt pcie_acs_override=downstream,multifunction textonly&#34; update-grub 屏蔽驱动,避免被宿主</description>
</item>
<item>
<title>使用批处理一键设置Windows环境变量</title>
<link>https://kkua.github.io/post/onekey-set-windows-environment-variables/</link>
<pubDate>Sat, 01 Jan 2022 12:55:19 +0800</pubDate>
<guid>https://kkua.github.io/post/onekey-set-windows-environment-variables/</guid>
<description>最近重装系统了,又需要重新配置开发环境涉及到很多环境变量的设置,所以写了个批处理脚本一键设置环境变量。使用时要注意bat文件的编码 1 2 3 4 5</description>
</item>
<item>
<title>化减法为加法——补数</title>
<link>https://kkua.github.io/post/method-of-complements/</link>
<pubDate>Sun, 10 May 2020 09:53:48 +0800</pubDate>
<guid>https://kkua.github.io/post/method-of-complements/</guid>
<description>为了表示负数,世界上大部分的计算机系统都采用了补码来表示整数。补码对应的英文原文是two&rsquo;s complement,其中的单词 two 有</description>
</item>
<item>
<title>Java的char类型和Unicode</title>
<link>https://kkua.github.io/post/java-char-type-and-unicode/</link>
<pubDate>Sat, 28 Mar 2020 19:49:48 +0800</pubDate>
<guid>https://kkua.github.io/post/java-char-type-and-unicode/</guid>
<description>最近注意到 Java 中char类型占用2个字节(16位长),而 Unicode 的编码范围是U+000000-U+10FFFF(21位长),两者之间有怎样的关系呢?</description>
</item>
<item>
<title>2019年总结</title>
<link>https://kkua.github.io/post/2019-summary/</link>
<pubDate>Sun, 12 Jan 2020 10:36:11 +0800</pubDate>
<guid>https://kkua.github.io/post/2019-summary/</guid>
<description>2019年已经结束了,是时候回头审视一下这一年的成果了。 决心改变,订立目标 2019年之前的3年,我处于一种除了完成工作不知道应该干些什么的迷</description>
</item>
<item>
<title>C语言中static关键字的作用</title>
<link>https://kkua.github.io/post/static-keyword-in-c-language/</link>
<pubDate>Tue, 24 Sep 2019 22:14:20 +0800</pubDate>
<guid>https://kkua.github.io/post/static-keyword-in-c-language/</guid>
<description>static修饰局部变量 首先来看一段程序,思考一下该程序调用foo、bar函数后输出a的值分别会是多少呢? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17</description>
</item>
<item>
<title>Rust程序交叉编译到aarch64目标</title>
<link>https://kkua.github.io/post/cross-compile-rust-to-aarch64/</link>
<pubDate>Sun, 11 Aug 2019 09:31:24 +0800</pubDate>
<guid>https://kkua.github.io/post/cross-compile-rust-to-aarch64/</guid>
<description>不同ARM交叉编译工具链区别 “arm生态发展与交叉编译工具链选择”一文对ARM交叉编译工具链介绍得比较详细,以下引用该文章“交叉编译链选择”</description>
</item>
<item>
<title>敏感词检测</title>
<link>https://kkua.github.io/post/sensitive-word-check/</link>
<pubDate>Fri, 09 Aug 2019 21:35:35 +0800</pubDate>
<guid>https://kkua.github.io/post/sensitive-word-check/</guid>
<description>使用前缀树匹配的方法实现的敏感词检测工具类。原始的代码出自此处。 我在原始代码的基础上加了一些自己的修改,主要是去掉了@SuppressWar</description>
</item>
<item>
<title>一些Java实用代码片段</title>
<link>https://kkua.github.io/post/java-util-code-snippet/</link>
<pubDate>Fri, 09 Aug 2019 20:47:32 +0800</pubDate>
<guid>https://kkua.github.io/post/java-util-code-snippet/</guid>
<description>分布式id生成——雪花算法 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</description>
</item>
<item>
<title>归档</title>
<link>https://kkua.github.io/archives/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://kkua.github.io/archives/</guid>
<description></description>
</item>
<item>
<title>搜索</title>
<link>https://kkua.github.io/search/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://kkua.github.io/search/</guid>
<description></description>
</item>
</channel>
</rss>