-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
233 lines (132 loc) · 5.85 KB
/
archive.html
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<!DOCTYPE html>
<!--
Horizon Flow Theme 0.0.1
Copyright 2023 Markus Schiller - https://papierkorp.github.io/
Free for personal and commercial use under the MIT license
https://github.com/papierkorp/jekyll-theme-horizon-flow/blob/main/LICENSE.txt
-->
<html>
<head lang="en">
<!-- Begin Jekyll SEO tag v2.8.0 -->
<title>Archive | PoinTicker Smith</title>
<meta name="generator" content="Jekyll v4.3.3" />
<meta property="og:title" content="Archive" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="PoinTicker Smith Blog" />
<meta property="og:description" content="PoinTicker Smith Blog" />
<link rel="canonical" href="http://0.0.0.0:4001/archive" />
<meta property="og:url" content="http://0.0.0.0:4001/archive" />
<meta property="og:site_name" content="PoinTicker Smith" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Archive" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebPage","description":"PoinTicker Smith Blog","headline":"Archive","url":"http://0.0.0.0:4001/archive"}</script>
<!-- End Jekyll SEO tag -->
<link type="application/atom+xml" rel="alternate" href="http://0.0.0.0:4001/feed.xml" title="PoinTicker Smith" />
<title>Archive</title>
<meta name="description" content="PoinTicker Smith Blog">
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="canonical" href="http://0.0.0.0:4001/archive">
</head>
<body>
<link rel="stylesheet" href="/assets/style.css">
<header>
<hr id="header_hr" />
<nav>
<ul>
<li><a href="/index.html" class="">
Home
</a></li>
<li><a href="/categories.html" class="">
Categories
</a></li>
<li><a href="/tags.html" class="">
Tags
</a></li>
<li><a href="/archive.html" class="">
Archive
</a></li>
<li><a href="/search.html" class="">
Search
</a></li>
<li><a href="/about.html" class="">
About
</a></li>
</ul>
</nav>
</header>
<main id="archive">
<section>
<h1>Archive</h1>
<!-- show all years -->
<div class="archive_all_years archive_all_years2">
<ul>
<li>
<a href="#2023">
<span class="archive_linktitle">2023</span>
<span class="archive_yearcount">1</span>
</a>
</li>
<li>
<a href="#2017">
<span class="archive_linktitle">2017</span>
<span class="archive_yearcount">1</span>
</a>
</li>
</ul>
</div>
<!-- show posts for certain year -->
<div class="archive_results">
Found Posts per selected Year
<br/><br/><br/><br/>
<div id="2023" class="archive_year" >
<h2>2023</h2>
<div class="archive_findresults">
<a class="archive_date" href="/posts/go-gmp">
<i class="archive_day">21</i>
<span>Dec/2023</span>
</a>
<span class="archive_summary">
<h3>
<a href="/posts/go-gmp">Golang GMP 模型</a>
</h3>
前言 在 golang 的并发编程中,gmp 是一个重要的概念,它代表了 goroutine、m(线程)和 p(调度器)。 这个强大的三位一体的并发模型使得 golang 在处理并发任务时非常高效和灵活。 通过 gmp 的组合,golang 实现了一种高效的并发模型。 它充分利用了多核处理器的优势,并通过轻量级的 goroutine 实现了高并发的编程模式。 但是gpm到底是怎么工作的呢?今天这篇文章就为您解开gpm的神秘面纱。...
</span>
</div>
</div>
<div id="2017" class="archive_year" >
<h2>2017</h2>
<div class="archive_findresults">
<a class="archive_date" href="/posts/hight-low-design">
<i class="archive_day">15</i>
<span>Mar/2017</span>
</a>
<span class="archive_summary">
<h3>
<a href="/posts/hight-low-design">高内聚低耦合</a>
</h3>
模块之间存在依赖, 导致改动可能会互相影响, 关系越紧密, 耦合越强, 模块独立性越差。 模块内部的元素,关联性越强, 则内聚越高, 模块单一性更强。 模块 模块就是从逻辑上将系统分解为更细微的部分, 分而治之, 复杂问题拆解为若干简单问题, 逐个解决。 耦合主要描述模块之间的关系, 内聚主要描述模块内部。 模块的粒度可大可小, 可以是函数, 类,...
</span>
</div>
</div>
</div>
</section>
</main>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<footer>
<div class="social-icons item3">
<a href="/feed.xml" class="fa fa-rss" target="_blank"></a>
<span class="divider"></span>
<a href="https://github.com/sdfjklmin" class="fa fa-github" target="_blank"></a>
<span class="divider"></span>
<a href="https://mail.google.com/" class="fa fa-envelope" target="_blank"></a>
</div>
</footer>
</body>
</html>