forked from bbrabbitt/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
179 lines (128 loc) · 4.78 KB
/
index.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
<!DOCTYPE html>
<html>
<!-- Html Head Tag-->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!-- Open Graph Data -->
<meta property="og:title" content="hanayuki"/>
<meta property="og:description" content="" />
<meta property="og:site_name" content="hanayuki"/>
<meta property="og:type" content="website" />
<meta property="og:image" content="https://kafuuchino.github.io/blog"/>
<link rel="alternate" href="/atom.xml" title="hanayuki" type="application/atom+xml">
<link rel="icon" href="/favicon.png">
<!-- Site Title -->
<title>hanayuki</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="/blog/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="/blog/css/style.light.css">
<link rel="stylesheet" href="/blog/css/github.css">
<!-- Google Analytics -->
</head>
<body>
<!-- Page Header -->
<header class="site-header header-background" style="background-image: url(/blog/img/mv_img.jpg)">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="page-title with-background-image">
<p class="title">hanayuki</p>
<p class="subtitle">花の雪が散りて 积もるは溶けぬ想</p>
</div>
<div class="site-menu with-background-image">
<ul>
<li>
<a href="/blog/">
Home
</a>
</li>
<li>
<a href="/blog/archives">
Archives
</a>
</li>
<li>
<a href="https://github.com/bbrabbitt/blog/issues/new">
Github
</a>
</li>
<li>
<a href="mailto:[email protected]">
Email
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<!-- Home Page Post List -->
<div class="container">
<div class="row">
<div class="col-lg-10 col-md-10 col-md-offset-1">
<div class="post-item-wrapper">
<a href="/blog/2018/08/08/线程与协程-并发的魔法/" class="post-title">
线程与协程-并发的魔法
</a>
<div class="post-excerpt">
<!-- Post Date and Categories -->
<div class="date-and-category">
<div class="date">2018-08-08</div>
<div class="categories">
<a href="/blog/categories/备忘录/">备忘录</a>
</div>
</div>
<!-- Post Excerpt -->
<div class="excerpt typo"><p>该文章仅记录作者本人对并发的一点理解,代码只在Mac OS X 10.11上进行测试且不保证正确,如因本备忘录导致任何生产环境的问题本人概不负责。</p>
<p>在信息行业高速增长的21世纪,人们对互联网越发依赖,而对获取信息的速度也越来越严格。因此程序员一直在想办法优化代码以提高服务器的性能。在对代码优化时我们可以简化一些耗时的操作(比如,显而易见的,向标准输出打印数据),</div>
<!-- Post Tags -->
<div class="tags">
<a class="tag" href="/blog/tags/并发/">并发</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Pagination -->
<div class="container">
<div class="row">
<div class="col-lg-10 col-md-10 col-md-offset-1">
<ul class="pagination">
</ul>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<p class="copyright text-muted">
Theme By <a target="_blank" href="https://github.com/levblanc">Levblanc.</a>
Inspired By <a target="_blank" href="https://github.com/klugjo/hexo-theme-clean-blog">Clean Blog.</a>
<p class="copyright text-muted">
Powered By <a target="_blank" href="https://hexo.io/">Hexo.</a>
</p>
</div>
</div>
</div>
</footer>
<!-- After Footer Scripts -->
<script src="/blog/js/highlight.pack.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
var codeBlocks = Array.prototype.slice.call(document.getElementsByTagName('pre'))
codeBlocks.forEach(function(block, index) {
hljs.highlightBlock(block);
});
});
</script>
</body>
</html>