-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·556 lines (281 loc) · 15.1 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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
<!DOCTYPE HTML>
<html>
<head><meta name="generator" content="Hexo 3.9.0">
<meta charset="UTF-8">
<title>为什么这么涛的个人博客</title>
<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=no">
<meta name="author" content="为什么这么涛">
<meta property="og:type" content="website">
<meta property="og:title" content="为什么这么涛的个人博客">
<meta property="og:url" content="https://scoolor.github.io/index.html">
<meta property="og:site_name" content="为什么这么涛的个人博客">
<meta property="og:locale" content="default">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="为什么这么涛的个人博客">
<link rel="alternative" href="/atom.xml" title="为什么这么涛的个人博客" type="application/atom+xml">
<link rel="icon" href="/img/favicon.ico">
<link rel="apple-touch-icon" href="/img/jacman.png">
<link rel="apple-touch-icon-precomposed" href="/img/jacman.png">
<link rel="stylesheet" href="/css/style.css">
</head>
</html>
<body>
<header>
<div>
<div id="textlogo">
<h1 class="site-name"><a href="/" title="为什么这么涛的个人博客">为什么这么涛的个人博客</a></h1>
<h2 class="blog-motto">做一件事最好的时机是十年前,其次就是现在</h2>
</div>
<div class="navbar"><a class="navbutton navmobile" href="#" title="Menu">
</a></div>
<nav class="animated">
<ul>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/archives">Archives</a></li>
<li><a href="/about">About</a></li>
<li>
<form class="search" action="//google.com/search" method="get" accept-charset="utf-8">
<label>Search</label>
<input type="search" id="search" name="q" autocomplete="off" maxlength="20" placeholder="Search" />
<input type="hidden" name="q" value="site:scoolor.github.io">
</form>
</li>
</ul>
</nav>
</div>
</header>
<div id="container">
<div id="main">
<section class="post" itemscope itemprop="blogitem">
<a href="/2019/09/25/PHP-foreach-使用引用陷阱/" title="PHP foreach 使用引用陷阱" itemprop="url">
<h1 itemprop="name">PHP foreach 使用引用陷阱</h1>
<p itemprop="description" >有时间我们在使用foreach时需要改变数组原有项的值,需要传入一个&amp;,表示使用数组原有的值,而不是一个复制值。
12345678910$arr = range(1,3);foreach($arr as $k =&gt; &amp;$v) &#123;&#125;var</p>
<time datetime="2019-09-25T07:31:41.000Z" itemprop="datePublished">2019-09-25</time>
</a>
</section>
<section class="post" itemscope itemprop="blogitem">
<a href="/2019/01/10/toml/" title="TOML 简介" itemprop="url">
<h1 itemprop="name">TOML 简介</h1>
<p itemprop="description" >TOML 的全称是 Tom’s Obvious, Minimal Language,因为它的作者是 GitHub 联合创始人 Tom Preston-Werner, TOML 这个名字贼逗。
TOML 是目录最优秀的配置文件格式方案,相较于yaml、json、ini,优势很明显。</p>
<time datetime="2019-01-10T10:10:40.000Z" itemprop="datePublished">2019-01-10</time>
</a>
</section>
<section class="post" itemscope itemprop="blogitem">
<a href="/2019/01/01/LMbench/" title="LMbench 安装与使用" itemprop="url">
<h1 itemprop="name">LMbench 安装与使用</h1>
<p itemprop="description" >LMbench 能深入操作系统的关键参数,帮助我们了解一些关键的指标参数,比如上下文切换所需的时间,对于了解操作系统指标,分析解决性能问题有很大帮助。
LMbench 介绍Lmbench是一套简易,可移植的,符合ANSI/C标准为UNIX/POSIX而制定的微型测评工具。一般来说</p>
<time datetime="2019-01-01T02:40:09.000Z" itemprop="datePublished">2019-01-01</time>
</a>
</section>
<section class="post" itemscope itemprop="blogitem">
<a href="/2018/11/13/cookie/" title="聊聊Cookie那些事" itemprop="url">
<h1 itemprop="name">聊聊Cookie那些事</h1>
<p itemprop="description" >为什么使用cookies?因为HTTP协议是无状态的,对于一个浏览器发出的多次请求,WEB服务器无法区分是不是来源于同一个浏览器。所以,需要额外的数据用于维护会话。 Cookie 正是这样的一段随HTTP请求一起被传递的额外数据。
Cookie的工作原理Cookie 是浏览器提供</p>
<time datetime="2018-11-13T15:06:28.000Z" itemprop="datePublished">2018-11-13</time>
</a>
</section>
<section class="post" itemscope itemprop="blogitem">
<a href="/2018/11/11/browser-interrupt/" title="分析网页在请求过程中,浏览器中断请求这期间发生的事" itemprop="url">
<h1 itemprop="name">分析网页在请求过程中,浏览器中断请求这期间发生的事</h1>
<p itemprop="description" >事情是这样,公司一个项目,使用浏览器访问时快速刷新页面会遇到问题,页面其中一个ajax请求过程比较长,快速刷新时该请求没有完成,请求会中断,nginx也没有收到该请求的日志,而且chrome(windows和mac)和firefox(windows)下的现象不一致,而在mac平台</p>
<time datetime="2018-11-11T12:54:59.000Z" itemprop="datePublished">2018-11-11</time>
</a>
</section>
<section class="post" itemscope itemprop="blogitem">
<a href="/2018/11/11/internet-protocol/" title="网络协议简介" itemprop="url">
<h1 itemprop="name">网络协议简介</h1>
<p itemprop="description" >互联网协议分为好几层,每一层都有自己的功能定位,一般分为5层比较容易理解。
应用层(Application Layer)应用层直接面向用户,规定了应用程序的数据格式,数据格式放入UDP或TCP的Data中,文件传输,电子邮件,文件服务,虚拟终端。常见协议:TFTP,HTTP,SN</p>
<time datetime="2018-11-11T01:54:37.000Z" itemprop="datePublished">2018-11-11</time>
</a>
</section>
<section class="post" itemscope itemprop="blogitem">
<a href="/2018/11/10/dns-udp-tcp/" title="DNS为什么既使用TCP又使用UDP?" itemprop="url">
<h1 itemprop="name">DNS为什么既使用TCP又使用UDP?</h1>
<p itemprop="description" >在 https://scoolor.github.io/2018/11/10/dns/ 一文中简单整理了DNS协议的一些知识,其中涉及到DNS协议同时会占用53端口,且同时使用UDP和TCP协议,我们使用Wireshark抓包,看到在解析时仅仅使用了UDP协议,这是为什么呢?本文</p>
<time datetime="2018-11-10T15:43:46.000Z" itemprop="datePublished">2018-11-10</time>
</a>
</section>
<section class="post" itemscope itemprop="blogitem">
<a href="/2018/11/10/dns/" title="DNS域名系统" itemprop="url">
<h1 itemprop="name">DNS域名系统</h1>
<p itemprop="description" >域名系统(英文:Domain Name System,缩写:DNS),是互联网的重要基础协议,作用就是根据域名查出对应的IP地址。
它作为将域名和IP地址相互映射的一个分布式数据库,能够使人更方便地访问互联网。
DNS同时使用TCP和UDP协议,端口53。
查询过程虽然dns只返</p>
<time datetime="2018-11-10T13:48:02.000Z" itemprop="datePublished">2018-11-10</time>
</a>
</section>
<section class="post" itemscope itemprop="blogitem">
<a href="/2018/11/10/network-promiscuous/" title="网卡混杂模式介绍" itemprop="url">
<h1 itemprop="name">网卡混杂模式介绍</h1>
<p itemprop="description" >网卡有多种工作模式,默认情况下网卡只把本机的包(包括广播包)传递给上层程序,其他的包一律丢弃。混杂模式是指网卡能接受所有通过它的数据流,不管什么格式,什么地址(即不校验mac地址)。
一般来说,混杂模式不会影响网卡的正常工作,多在网络监听工具上使用。
网卡的工作模式网卡具有如下几</p>
<time datetime="2018-11-10T12:52:37.000Z" itemprop="datePublished">2018-11-10</time>
</a>
</section>
<section class="post" itemscope itemprop="blogitem">
<a href="/2018/11/10/charles-https/" title="为什么charles/fiddler可以明文抓取https" itemprop="url">
<h1 itemprop="name">为什么charles/fiddler可以明文抓取https</h1>
<p itemprop="description" >阅读本文首先需要了解https的基本原理,可以参考 https://scoolor.github.io/2018/09/03/https/
理解https的抓包原理,首先要理解中间人的概念,也就是MITM。
MITM介绍MITM(Man-In-The-Middle,中间人),能够</p>
<time datetime="2018-11-10T01:06:11.000Z" itemprop="datePublished">2018-11-10</time>
</a>
</section>
<nav id="page-nav" class="clearfix unexpand">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="extend next" rel="next" href="/page/2/">Next<span></span></a>
</nav>
</div>
<div class="openaside"><a class="navbutton" href="#" title="Show Sidebar"></a></div>
<div id="asidepart">
<div class="closeaside"><a class="closebutton" href="#" title="Hide Sidebar"></a></div>
<aside class="clearfix">
<div class="tagslist">
<p class="asidetitle">Tags</p>
<ul class="clearfix">
<li><a href="/tags/Linux/" title="Linux">Linux<sup>3</sup></a></li>
<li><a href="/tags/https/" title="https">https<sup>2</sup></a></li>
<li><a href="/tags/dns/" title="dns">dns<sup>2</sup></a></li>
<li><a href="/tags/linux/" title="linux">linux<sup>2</sup></a></li>
<li><a href="/tags/编码/" title="编码">编码<sup>1</sup></a></li>
<li><a href="/tags/base64/" title="base64">base64<sup>1</sup></a></li>
<li><a href="/tags/TCP/" title="TCP">TCP<sup>1</sup></a></li>
<li><a href="/tags/HTTP/" title="HTTP">HTTP<sup>1</sup></a></li>
<li><a href="/tags/charle/" title="charle">charle<sup>1</sup></a></li>
<li><a href="/tags/cookie/" title="cookie">cookie<sup>1</sup></a></li>
<li><a href="/tags/tcp/" title="tcp">tcp<sup>1</sup></a></li>
<li><a href="/tags/udp/" title="udp">udp<sup>1</sup></a></li>
<li><a href="/tags/http/" title="http">http<sup>1</sup></a></li>
<li><a href="/tags/网络协议/" title="网络协议">网络协议<sup>1</sup></a></li>
<li><a href="/tags/Internet-Protocol/" title="Internet Protocol">Internet Protocol<sup>1</sup></a></li>
<li><a href="/tags/Nginx/" title="Nginx">Nginx<sup>1</sup></a></li>
<li><a href="/tags/TOML/" title="TOML">TOML<sup>1</sup></a></li>
</ul>
</div>
<div class="linkslist">
<p class="asidetitle">Links</p>
<ul>
</ul>
</div>
<div class="rsspart">
<a href="/atom.xml" target="_blank" title="rss">RSS</a>
</div>
</aside>
</div>
</div>
<footer><div id="footer" >
<div class="line">
<span></span>
<div class="author"></div>
</div>
<section class="info">
<p> Hello, I'm Scoolor, a coder. <br/>
This is my blog, just do it!</p>
</section>
<div class="social-font" class="clearfix">
<a href="https://github.com/scoolor" target="_blank" class="icon-github" title="github"></a>
<a href="http://www.zhihu.com/people/mu-yi-xiao-jiang" target="_blank" class="icon-zhihu" title="知乎"></a>
<a href="mailto:[email protected]" target="_blank" class="icon-email" title="Email Me"></a>
</div>
<p class="copyright">
Powered by <a href="http://hexo.io" target="_blank" title="hexo">hexo</a> and Theme by <a href="https://github.com/wuchong/jacman" target="_blank" title="Jacman">Jacman</a> © 2020
<a href="/about" target="_blank" title="为什么这么涛">为什么这么涛</a>
</p>
</div>
</footer>
<script src="/js/jquery-2.0.3.min.js"></script>
<script src="/js/jquery.imagesloaded.min.js"></script>
<script src="/js/gallery.js"></script>
<script src="/js/jquery.qrcode-0.12.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.navbar').click(function(){
$('header nav').toggleClass('shownav');
});
var myWidth = 0;
function getSize(){
if( typeof( window.innerWidth ) == 'number' ) {
myWidth = window.innerWidth;
} else if( document.documentElement && document.documentElement.clientWidth) {
myWidth = document.documentElement.clientWidth;
};
};
var m = $('#main'),
a = $('#asidepart'),
c = $('.closeaside'),
o = $('.openaside');
c.click(function(){
a.addClass('fadeOut').css('display', 'none');
o.css('display', 'block').addClass('fadeIn');
m.addClass('moveMain');
});
o.click(function(){
o.css('display', 'none').removeClass('beforeFadeIn');
a.css('display', 'block').removeClass('fadeOut').addClass('fadeIn');
m.removeClass('moveMain');
});
$(window).scroll(function(){
o.css("top",Math.max(80,260-$(this).scrollTop()));
});
$(window).resize(function(){
getSize();
if (myWidth >= 1024) {
$('header nav').removeClass('shownav');
}else{
m.removeClass('moveMain');
a.css('display', 'block').removeClass('fadeOut');
o.css('display', 'none');
}
});
});
</script>
<link rel="stylesheet" href="/fancybox/jquery.fancybox.css" media="screen" type="text/css">
<script src="/fancybox/jquery.fancybox.pack.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.article-content').each(function(i){
$(this).find('img').each(function(){
if ($(this).parent().hasClass('fancybox')) return;
var alt = this.alt;
if (alt) $(this).after('<span class="caption">' + alt + '</span>');
$(this).wrap('<a href="' + this.src + '" title="' + alt + '" class="fancybox"></a>');
});
$(this).find('.fancybox').each(function(){
$(this).attr('rel', 'article' + i);
});
});
if($.fancybox){
$('.fancybox').fancybox();
}
});
</script>
<!-- Analytics Begin -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-92081918-2', 'scoolor.github.io');
ga('send', 'pageview');
</script>
<!-- Analytics End -->
<!-- Totop Begin -->
<div id="totop">
<a title="Back to Top"><img src="/img/scrollup.png"/></a>
</div>
<script src="/js/totop.js"></script>
<!-- Totop End -->
<!-- MathJax Begin -->
<!-- mathjax config similar to math.stackexchange -->
<!-- MathJax End -->
<!-- Tiny_search Begin -->
<!-- Tiny_search End -->
</body>
</html>