-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (102 loc) · 3.8 KB
/
index.html
File metadata and controls
137 lines (102 loc) · 3.8 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<meta name="description" content="个人知识库与技术笔记">
<link rel="alternate" href="/atom.xml" title="Api Intelligence Daily Life" type="application/atom+xml">
<meta name="theme-color" content="#a1d0f6">
<title>Api Intelligence Daily Life</title>
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link rel="shortcut icon" href="/favicon.png">
<link rel="stylesheet" href="/css/style.css">
<nav class="main-nav">
<a href="/about/">About</a>
<a href="/archives/">Archives</a>
<a class="cta" href="/atom.xml" data-no-instant>订阅</a>
</nav>
<section id="wrapper">
<div class="profile">
<section id="wrapper">
<header id="header">
<a href="/about/">
<img id="avatar" class="2x" src="/images/avatar.png">
</a>
<h1>Api Intelligence Daily Life</h1>
<h2>知识库 & 博客</h2>
</header>
</section>
</div>
<ul id="post-list">
<li>
<aside class="dates">Mar 20 2026</aside>
<a href="/2026/03/20/blog-digest-2026-03-20/">文摘:博客推荐 - 2026-03-20</a>
<h2></h2>
</li>
<li>
<aside class="dates">Mar 18 2026</aside>
<a href="/2026/03/18/digest-2026-03-18-openclaw-pi-framework/">文摘:OpenClaw 背后核心框架 Pi:好的 Coding Agent 应该让用户来决定需要什么</a>
<h2></h2>
</li>
<li>
<aside class="dates">Mar 18 2026</aside>
<a href="/2026/03/18/blog-digest-claude-code-skills-2026-03-18/">文摘:构建 Claude Code 的经验:我们如何使用 Skills</a>
<h2></h2>
</li>
<li>
<aside class="dates">Mar 18 2026</aside>
<a href="/2026/03/18/blog-digest-trae-handbook-2026-03-18/">文摘:TRAE 企业级AI编程实践手册</a>
<h2></h2>
</li>
<li>
<aside class="dates">Mar 17 2026</aside>
<a href="/2026/03/17/blog-digest-2026-03-17/">博客文摘 2026-03-17</a>
<h2></h2>
</li>
</ul>
<nav id="post-nav">
<span class="prev">
</span>
<span class="next">
<a href="/page/2/">
下一页<span class="arrow"> →</span>
</a>
</span>
</nav>
<footer id="footer">
<div id="social">
<p class="small">© Arbow| Powered by Hexo &
<a target="_blank" rel="noopener" href="https://github.com/F0r3at/Lights"> Lights</a>
</p>
</div>
</footer>
</section>
<script src="//cdnjs.loli.net/ajax/libs/instantclick/3.0.1/instantclick.min.js" data-no-instant></script>
<script data-no-instant>
InstantClick.init('mousedown');
</script>
<script>
// To make images retina, add a class "2x" to the img element
var isMobile = {
Android:function() {
return navigator.userAgent.match(/Android/i) ? true : false;
},
BlackBerry:function(){
return navigator.userAgent.match(/BlackBerry/i) ? true : false;
},
iOS:function(){
return navigator.userAgent.match(/iPhone|iPad|iPod/i) ? true : false;
},
Windows:function(){
return navigator.userAgent.match(/IEMobile/i) ? true : false;
},
any:function(){
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Windows());
}
};
if (isMobile.any()) {
var suffix = document.getElementsByClassName('2x')[0].getAttribute('src');
suffix = suffix.replace('.png','@2x.png');
suffix = suffix.replace('.jpg','@2x.jpg');
document.getElementsByClassName('2x')[0].setAttribute('src',suffix);
};
</script>