-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
383 lines (184 loc) · 10.3 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
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Zhong Yu's Blog</title>
<meta name="author" content="Zhong Yu">
<meta name="description" content="Mar 5th, 2014 git tag Comments Add and Delete Git Tag Git tag创建和删除指令集 Read on → Jan 1st, 2014 Life Comments Happy New Year 2013过去了,我很怀念它。 Read …">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/atom.xml" rel="alternate" title="Zhong Yu's Blog" type="application/atom+xml">
<link rel="canonical" href="http://haio.github.io/">
<link href="/favicon.png" rel="shortcut icon">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="/stylesheets/font-awesome.min.css" media="screen, projection" rel="stylesheet" type="text/css">
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<div class="left-col">
<div class="intrude-less">
<header id="header" class="inner"><div class="profilepic">
<img src="http://www.gravatar.com/avatar/83dc3e4cf57cb653aefb1a4dab4b4c26?s=160" alt="Profile Picture" style="width: 160px;" />
</div>
<hgroup>
<h1><a href="/">Zhong Yu's Blog</a></h1>
<h2>Walking, Thinking and Coding</h2>
</hgroup>
<nav id="main-nav"><ul class="main-navigation">
<li><a href="/">Blog</a></li>
<li><a href="/blog/archives">Archives</a></li>
</ul>
<section class="aboutme">
<p>
I'm a Node.js developer, love Ruby too!
</p>
</section>
</nav>
<nav id="sub-nav">
<div class="social">
<a class="twitter" href="http://twitter.com/haiooiah" title="Twitter">Twitter</a>
<a class="github" href="https://github.com/haio" title="GitHub">GitHub</a>
<a class="rss" href="/atom.xml" title="RSS">RSS</a>
</div>
</nav>
</header>
</div>
</div>
<div class="mid-col">
<div class="mid-col-container">
<div id="content" class="inner">
<div itemscope itemtype="http://schema.org/Blog">
<article class="post" itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<div class="date">
<time datetime="2014-03-05T20:09:00+08:00" data-updated="true" itemprop="datePublished">Mar 5<span>th</span>, 2014</time></div>
<div class="tags">
<a class='category' href='/blog/categories/git-tag/'>git tag</a>
</div>
<span class="comments"><a href="/blog/2014/03/05/add-and-delete-git-tag/#disqus_thread">Comments</a></span>
</div>
<h1 class="title" itemprop="name"><a href="/blog/2014/03/05/add-and-delete-git-tag/" itemprop="url">Add and Delete Git Tag</a></h1>
<div class="entry-content" itemprop="articleBody">
<p>Git tag创建和删除指令集</p>
<a href="/blog/2014/03/05/add-and-delete-git-tag/" class="more-link">Read on →</a>
</div>
</article>
<article class="post" itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<div class="date">
<time datetime="2014-01-01T10:45:00+08:00" data-updated="true" itemprop="datePublished">Jan 1<span>st</span>, 2014</time></div>
<div class="tags">
<a class='category' href='/blog/categories/life/'>Life</a>
</div>
<span class="comments"><a href="/blog/2014/01/01/happy-new-year/#disqus_thread">Comments</a></span>
</div>
<h1 class="title" itemprop="name"><a href="/blog/2014/01/01/happy-new-year/" itemprop="url">Happy New Year</a></h1>
<div class="entry-content" itemprop="articleBody">
<h2>2013过去了,我很怀念它。</h2>
<a href="/blog/2014/01/01/happy-new-year/" class="more-link">Read on →</a>
</div>
</article>
<article class="post" itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<div class="date">
<time datetime="2013-12-21T22:37:00+08:00" data-updated="true" itemprop="datePublished">Dec 21<span>st</span>, 2013</time></div>
<div class="tags">
<a class='category' href='/blog/categories/64k/'>64K</a>, <a class='category' href='/blog/categories/node-dot-js/'>node.js</a>, <a class='category' href='/blog/categories/socket/'>socket</a>
</div>
<span class="comments"><a href="/blog/2013/12/21/64k-conenctions-problem-one-server/#disqus_thread">Comments</a></span>
</div>
<h1 class="title" itemprop="name"><a href="/blog/2013/12/21/64k-conenctions-problem-one-server/" itemprop="url">64k-conenctions-problem-one-server</a></h1>
<div class="entry-content" itemprop="articleBody">
<p>当我们测试tcp服务器的性能时,需要在一个客户机上创建很多个对服务器的socket链接。一个tcp链接的由这几个参数唯一确定:</p>
<a href="/blog/2013/12/21/64k-conenctions-problem-one-server/" class="more-link">Read on →</a>
</div>
</article>
<article class="post" itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<div class="date">
<time datetime="2013-12-03T18:28:00+08:00" data-updated="true" itemprop="datePublished">Dec 3<span>rd</span>, 2013</time></div>
<div class="tags">
<a class='category' href='/blog/categories/fork/'>fork</a>, <a class='category' href='/blog/categories/git/'>git</a>, <a class='category' href='/blog/categories/github/'>github</a>
</div>
<span class="comments"><a href="/blog/2013/12/03/update-the-github-fork/#disqus_thread">Comments</a></span>
</div>
<h1 class="title" itemprop="name"><a href="/blog/2013/12/03/update-the-github-fork/" itemprop="url">Update the Github Fork</a></h1>
<div class="entry-content" itemprop="articleBody">
<p>在Fork完一个项目后,有时我们会想要与原项目保持同步,我们可以通过以下步骤来实现:</p>
<a href="/blog/2013/12/03/update-the-github-fork/" class="more-link">Read on →</a>
</div>
</article>
<article class="post" itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<div class="date">
<time datetime="2013-11-25T18:49:00+08:00" data-updated="true" itemprop="datePublished">Nov 25<span>th</span>, 2013</time></div>
<div class="tags">
<a class='category' href='/blog/categories/linux/'>linux</a>, <a class='category' href='/blog/categories/nofile/'>nofile</a>, <a class='category' href='/blog/categories/ulimit/'>ulimit</a>
</div>
<span class="comments"><a href="/blog/2013/11/25/ulimit-open-files-cannot-modify-limit/#disqus_thread">Comments</a></span>
</div>
<h1 class="title" itemprop="name"><a href="/blog/2013/11/25/ulimit-open-files-cannot-modify-limit/" itemprop="url">Ulimit Open Files Cannot Modify Limit</a></h1>
<div class="entry-content" itemprop="articleBody">
<p>在使用Linux时我们经常会遇到文件描述符不够用的情况,特别是在进行网络编程时,这是因为Linux默认给一个用户分配的最大文件描述符数量<code>nofile</code>是1024
当系统中的文件描述符超过这个数时就会抛出错误。</p>
<a href="/blog/2013/11/25/ulimit-open-files-cannot-modify-limit/" class="more-link">Read on →</a>
</div>
</article>
<article class="post" itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="meta">
<div class="date">
<time datetime="2013-11-22T22:02:00+08:00" data-updated="true" itemprop="datePublished">Nov 22<span>nd</span>, 2013</time></div>
<div class="tags">
<a class='category' href='/blog/categories/bower/'>Bower</a>, <a class='category' href='/blog/categories/grunt/'>Grunt</a>, <a class='category' href='/blog/categories/node-dot-js/'>Node.js</a>, <a class='category' href='/blog/categories/yeoman/'>Yeoman</a>
</div>
<span class="comments"><a href="/blog/2013/11/22/tools-that-make-web-dev-more-productive/#disqus_thread">Comments</a></span>
</div>
<h1 class="title" itemprop="name"><a href="/blog/2013/11/22/tools-that-make-web-dev-more-productive/" itemprop="url">Tools That Make Web Dev More Productive</a></h1>
<div class="entry-content" itemprop="articleBody">
<p><img src="http://haio.u.qiniudn.com/toolset.png" width="600" height="200" title="Tools that make web dev more productive" ></p>
<h1>Grunt</h1>
<p><a href="http://gruntjs.com">Grunt</a>是一个Javascript写的任务管理工具(Tasks Runner)。在Web开发中,出了写代码之外,我们还有一序
列的任务要做,比如:</p>
<a href="/blog/2013/11/22/tools-that-make-web-dev-more-productive/" class="more-link">Read on →</a>
</div>
</article>
</div>
<nav id="pagenavi">
<div class="center"><a href="/blog/archives">Blog Archives</a></div>
</nav></div>
</div>
<footer id="footer" class="inner"><p>
Copyright © 2014 - Zhong Yu -
<span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span>
</p>
Design credit: <a href="http://shashankmehta.in/archive/2012/greyshade.html">Shashank Mehta</a></footer>
<script type="text/javascript">
var disqus_shortname = 'aiov';
var disqus_script = 'count.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
<script type="text/javascript">
(function(){
var twitterWidgets = document.createElement('script');
twitterWidgets.type = 'text/javascript';
twitterWidgets.async = true;
twitterWidgets.src = '//platform.twitter.com/widgets.js';
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
})();
</script>
</div>
</div>
</body>
</html>