-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·839 lines (495 loc) · 23.9 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
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="76x76" href="/img/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/img/favicon.png">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="">
<meta name="author" content="Kikyou1997">
<meta name="keywords" content="">
<title>Ernst-Neubach's Blog</title>
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/5.12.1/css/all.min.css" />
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.4.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdn.staticfile.org/mdbootstrap/4.13.0/css/mdb.min.css" />
<link rel="stylesheet" href="https://cdn.staticfile.org/github-markdown-css/3.0.1/github-markdown.min.css" />
<link rel="stylesheet" href="//at.alicdn.com/t/font_1067060_qzomjdt8bmp.css">
<link rel="stylesheet" href="/lib/prettify/tomorrow-night-eighties.min.css" />
<link rel="stylesheet" href="/css/main.css" />
<link rel="stylesheet" href="https://cdn.staticfile.org/fancybox/3.5.7/jquery.fancybox.min.css" />
<!-- 自定义样式保持在最底部 -->
<meta name="generator" content="Hexo 4.2.0"></head>
<body>
<header style="height: 100vh;">
<nav id="navbar" class="navbar fixed-top navbar-expand-lg navbar-dark scrolling-navbar">
<div class="container">
<a class="navbar-brand"
href="/"> <strong>Ernst-Neubach's Blog</strong> </a>
<button id="navbar-toggler-btn" class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<div class="animated-icon"><span></span><span></span><span></span></div>
</button>
<!-- Collapsible content -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto text-center">
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/archives/">Archives</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/categories/">Categories</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/tags/">Tags</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about/">About</a>
</li>
<li class="nav-item" id="search-btn">
<a class="nav-link" data-toggle="modal" data-target="#modalSearch"> <i
class="iconfont icon-search"></i> </a>
</li>
</ul>
</div>
</div>
</nav>
<div class="view intro-2" id="background" parallax=true
style="background: url('https://el-psy-congroo.oss-cn-beijing.aliyuncs.com/heart_under_blade.png') no-repeat center center;
background-size: cover;">
<div class="full-bg-img">
<div class="mask rgba-black-light flex-center">
<div class="container text-center white-text fadeInUp">
<span class="h2" id="subtitle">
</span>
</div>
<div class="scroll-down-bar">
<i class="fas fa-angle-down scroll-down-arrow"></i>
</div>
</div>
</div>
</div>
</header>
<main>
<div class="container nopadding-md">
<div class="py-5 z-depth-3" id="board"
style=margin-top:0>
<div class="container">
<div class="row">
<div class="col-12 col-md-10 m-auto">
<div class="row mx-auto index-card">
<div class="col-12 col-md-12 mx-auto index-info">
<a href="/2020/04/22/BitTorrent%E5%8D%8F%E8%AE%AE/BitTorrent/">
<p class="h4 index-header">BitTorrent 协议规范</p>
</a>
<a href="/2020/04/22/BitTorrent%E5%8D%8F%E8%AE%AE/BitTorrent/">
<div class="index-excerpt" >
<div class="index-text mb-1">BitTorrent 规范翻译自http://bittorrent.org/
由于本人英语/技术水平有限,可能存在诸多谬误。
基本组成
一个普通的web服务器
一个静态’metainfo’文件
一个BitTorrent tracker
一个下载器
终端用户的web浏览器
终端用户的的下载器
为了开始服务,一台主机需要经历如下步骤
运行一个tracker
运行一个普通的web服务器,如apache等
Associate the extension .torrent with mimetype application/x-bittorrent on their web server (or ha</div>
</div>
</a>
<div class="index-btm">
<i class="iconfont icon-riqi2"></i> 2020-04-22
<i class="iconfont icon-inbox"></i>
<a href="/categories/p2p/">p2p</a>
<a href="/categories/p2p/%E7%BD%91%E7%BB%9C%E5%8D%8F%E8%AE%AE/">网络协议</a>
</div>
</div>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-12 mx-auto index-info">
<a href="/2020/04/04/DDIA%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/ddia/">
<p class="h4 index-header">DDIA读书笔记</p>
</a>
<a href="/2020/04/04/DDIA%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/ddia/">
<div class="index-excerpt" >
<div class="index-text mb-1">DDIA读书笔记TO-DO:
lamport timestamp 与 vector clock的对比
读关于dynamo的论文
读lamport关于分布式系统中的时钟与事件顺序原文
数据检索
索引:
基于原始数据派生而来的额外数据结构 适当的索引可以加速读取查询 但由于每次写数据时 需要更新索引 因此任何类型的索引都会降低写的速度
数据结构
哈希索引
SortedStringTable(Log Structured Merge Tree)
基于这种实现的存储引擎通常工作方式如下:
当写入时,先将要写入的数据添加到内存中的平衡树结构中(如AVL或者红黑树),这块内存区域也被成</div>
</div>
</a>
<div class="index-btm">
<i class="iconfont icon-riqi2"></i> 2020-04-04
<i class="iconfont icon-inbox"></i>
<a href="/categories/%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F/">操作系统</a>
<a href="/categories/%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F/%E5%88%86%E5%B8%83%E5%BC%8F%E7%B3%BB%E7%BB%9F/">分布式系统</a>
</div>
</div>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-12 mx-auto index-info">
<a href="/2020/02/27/Netty%E6%BA%90%E7%A0%81%E5%AD%A6%E4%B9%A02/index/">
<p class="h4 index-header">Netty源码学习2</p>
</a>
<a href="/2020/02/27/Netty%E6%BA%90%E7%A0%81%E5%AD%A6%E4%B9%A02/index/">
<div class="index-excerpt" >
<div class="index-text mb-1">Netty 源码学习2最近在写一个基于netty实现的程序的时候碰到了一些问题 暂时想不到解决方法 故再次学习一下netty源码
Netty中的Reactor
Netty中的NioEventLoop即是对多线程Reactor模型中的Reactor线程的实现 其大致分为3个步骤
轮询出IO事件
处理IO事件
处理任务队列
下面主要分析NioEventLoop::run(4.1.45Final版本)方法
@Override
protected void run() {
int selectCnt = 0;
for (;;) {
</div>
</div>
</a>
<div class="index-btm">
<i class="iconfont icon-riqi2"></i> 2020-02-27
<i class="iconfont icon-inbox"></i>
<a href="/categories/%E6%BA%90%E7%A0%81/">源码</a>
<a href="/categories/%E6%BA%90%E7%A0%81/Java/">Java</a>
<i class="iconfont icon-tag"></i>
<a href="/tags/Netty/">Netty</a>
</div>
</div>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-12 mx-auto index-info">
<a href="/2020/01/20/RocketMQ%E6%B6%88%E6%81%AF%E6%B6%88%E8%B4%B9/index/">
<p class="h4 index-header">RocketMq 消息消费</p>
</a>
<a href="/2020/01/20/RocketMQ%E6%B6%88%E6%81%AF%E6%B6%88%E8%B4%B9/index/">
<div class="index-excerpt" >
<div class="index-text mb-1">RocketMQ消息消费主要问题:
消息队列负载均衡
消息消费模式
消息拉取方式
消息进度反馈
消息过滤
顺序消息
消息负载遵循这样一个思想: 一个消息队列同一时间只允许被一个消费者消费 一个消费者可以消费多个消息队列 RocketMQ 支持局部顺序消息消费 不支持消息全局顺序消费 如果要实现某一主题的全局顺序消息消费 可以将该主题的队列数设置为1 但这样牺牲了高可用性
基本流程:
消息队列负载
消息拉取
消息消费
消息消费进度存储
消息费者启动流程参见DefaultMQPushConsumerImpl::start方法
构建主题订阅信息SubscriptionData并加入到Reb</div>
</div>
</a>
<div class="index-btm">
<i class="iconfont icon-riqi2"></i> 2020-01-20
<i class="iconfont icon-inbox"></i>
<a href="/categories/%E6%BA%90%E7%A0%81/">源码</a>
<a href="/categories/%E6%BA%90%E7%A0%81/Java/">Java</a>
<i class="iconfont icon-tag"></i>
<a href="/tags/MessageQueue/">MessageQueue</a>
</div>
</div>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-12 mx-auto index-info">
<a href="/2020/01/16/%E5%86%85%E5%AD%98%E9%94%81%E5%AE%9A/index/">
<p class="h4 index-header">内存锁定</p>
</a>
<a href="/2020/01/16/%E5%86%85%E5%AD%98%E9%94%81%E5%AE%9A/index/">
<div class="index-excerpt" >
<div class="index-text mb-1">4 Memory Locking本文来自该大学网站上的一篇文章
Memory management facilities ensure that processes have effective and equitable access to memory resources. The operating system maps and controls the relationship between physical memory and the virtual address space of a process. These activities are, for the most </div>
</div>
</a>
<div class="index-btm">
<i class="iconfont icon-riqi2"></i> 2020-01-16
<i class="iconfont icon-inbox"></i>
<a href="/categories/%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F/">操作系统</a>
<i class="iconfont icon-tag"></i>
<a href="/tags/%E4%BB%BB%E5%8A%A1/">任务</a>
<a href="/tags/syscall/">syscall</a>
<a href="/tags/%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86/">内存管理</a>
</div>
</div>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-12 mx-auto index-info">
<a href="/2020/01/11/Netty%E6%BA%90%E7%A0%81%E5%AD%A6%E4%B9%A0/index/">
<p class="h4 index-header">Netty源码学习</p>
</a>
<a href="/2020/01/11/Netty%E6%BA%90%E7%A0%81%E5%AD%A6%E4%B9%A0/index/">
<div class="index-excerpt" >
<div class="index-text mb-1">Netty源码学习模型
Rector多线程模型:
特点:
有专门一个reactor线程用于监听服务端ServerSocketChannel,接收客户端的TCP连接请求;
网络IO的读/写操作等由一个worker reactor线程池负责,由线程池中的NIO线程负责监听SocketChannel事件,进行消息的读取、解码、编码和发送。
一个NIO线程可以同时处理N条链路,但是一个链路只注册在一个NIO线程上处理,防止发生并发操作问题。
Netty采取了事件驱动模型设计 其具有如下4个基本组件
事件队列(event queue) :接收事件的入口,存储待处理事件
分发器(event me</div>
</div>
</a>
<div class="index-btm">
<i class="iconfont icon-riqi2"></i> 2020-01-11
<i class="iconfont icon-inbox"></i>
<a href="/categories/%E6%BA%90%E7%A0%81/">源码</a>
<a href="/categories/%E6%BA%90%E7%A0%81/Java/">Java</a>
<i class="iconfont icon-tag"></i>
<a href="/tags/Netty/">Netty</a>
</div>
</div>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-12 mx-auto index-info">
<a href="/2020/01/04/RocketMQ%E6%BA%90%E7%A0%81%E5%AD%A6%E4%B9%A0/index/">
<p class="h4 index-header">RocketMq 技术内幕读书笔记</p>
</a>
<a href="/2020/01/04/RocketMQ%E6%BA%90%E7%A0%81%E5%AD%A6%E4%B9%A0/index/">
<div class="index-excerpt" >
<div class="index-text mb-1">RocketMq 技术内幕读书笔记NameServer路由
NameServer存储了路由表及相关的元数据
NameServer相关的两个比较重要的类:
org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager存储/管理若干路由数据
org.apache.rocketmq.namesrv.NamesrvController
RouteInfoManager所存储的信息包括
private final HashMap<String/* topic */, List<QueueData>> topicQueueTabl</div>
</div>
</a>
<div class="index-btm">
<i class="iconfont icon-riqi2"></i> 2020-01-04
<i class="iconfont icon-inbox"></i>
<a href="/categories/%E6%BA%90%E7%A0%81/">源码</a>
<a href="/categories/%E6%BA%90%E7%A0%81/Java/">Java</a>
<i class="iconfont icon-tag"></i>
<a href="/tags/MessageQueue/">MessageQueue</a>
</div>
</div>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-12 mx-auto index-info">
<a href="/2019/08/10/Redis%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E7%9A%84%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F/index/">
<p class="h4 index-header">Redis命令执行周期</p>
</a>
<a href="/2019/08/10/Redis%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E7%9A%84%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F/index/">
<div class="index-excerpt" >
<div class="index-text mb-1">Redis命令执行周期Redis是典型的事件驱动程序 事件处理显得更为重要 Redis将事件分为两大类:
文件事件 socket的读写事件
时间事件 用于处理一些需要周期性执行的定时任务
注意双向链表已不再使用 且zset有序列表有时还会用到hash类型 将hash和skiplist结合使用 这样可以将查找特定元素的操作的时间开销缩小到O(1) 而zrange zrank等命令的复杂度仍为O(logN) 也就是结合了两者的优点 略微牺牲了一些空间 达到更好的综合性能
server.h中的zset结构定义如下
typedef struct zset {
dict *dict;
</div>
</div>
</a>
<div class="index-btm">
<i class="iconfont icon-riqi2"></i> 2019-08-10
<i class="iconfont icon-inbox"></i>
<a href="/categories/%E6%BA%90%E7%A0%81/">源码</a>
<a href="/categories/%E6%BA%90%E7%A0%81/C/">C</a>
<i class="iconfont icon-tag"></i>
<a href="/tags/Redis/">Redis</a>
</div>
</div>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-12 mx-auto index-info">
<a href="/2019/08/07/Redis%E6%BA%90%E7%A0%81%E8%A7%A3%E6%9E%90%E7%AC%94%E8%AE%B0/index/">
<p class="h4 index-header">Redis源码解析笔记</p>
</a>
<a href="/2019/08/07/Redis%E6%BA%90%E7%A0%81%E8%A7%A3%E6%9E%90%E7%AC%94%E8%AE%B0/index/">
<div class="index-excerpt" >
<div class="index-text mb-1">Redis源码解析笔记学习redis源码顺便学下C
数据类型与结构简单动态字符串(SDS, Simple Dynamic String)结构体基本定义
struct __attribute__ ((__packed__)) sdshdr64 {
uint64_t len; /* used */
uint64_t alloc; /* excluding the header and null terminator */
unsigned char flags; /* 3 lsb of type, 5 unused bits */
char buf[];
};
__</div>
</div>
</a>
<div class="index-btm">
<i class="iconfont icon-riqi2"></i> 2019-08-07
<i class="iconfont icon-inbox"></i>
<a href="/categories/%E6%BA%90%E7%A0%81/">源码</a>
<a href="/categories/%E6%BA%90%E7%A0%81/C/">C</a>
<i class="iconfont icon-tag"></i>
<a href="/tags/Redis/">Redis</a>
</div>
</div>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-12 mx-auto index-info">
<a href="/2019/04/08/%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86/index/">
<p class="h4 index-header">内存管理</p>
</a>
<a href="/2019/04/08/%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86/index/">
<div class="index-excerpt" >
<div class="index-text mb-1">内存管理虚拟内存虚拟内存的作用
将主存作为一个存储在磁盘上的地址空间的高速缓存 主存中只保留活动区域 并根据需要在磁盘和主存之间来回传送数据(内存页的换入换出)
为每个进程提供了一个一致的地址空间 从而简化了内存管理
保护了每个进程的地址空间不被其它进程破坏
任意时刻 虚拟页面的集合分为3个不相交的子集
未分配的 VM系统未分配的页
缓存的 当前已缓存在物理内存中的已分配页
未缓存的 未缓存在物理内存中的已分配页
地址翻译CPU的一个控制寄存器–页表基址寄存器(Page Table Base Register) 指向当前页表 n位的虚拟地址包括两个部分 一个P位的虚拟页面偏移(Virt</div>
</div>
</a>
<div class="index-btm">
<i class="iconfont icon-riqi2"></i> 2019-04-08
<i class="iconfont icon-inbox"></i>
<a href="/categories/%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F/">操作系统</a>
<a href="/categories/%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F/%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86/">内存管理</a>
<i class="iconfont icon-tag"></i>
<a href="/tags/%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86/">内存管理</a>
</div>
</div>
</div>
<nav aria-label="index posts navigation">
<span class="pagination pg-blue justify-content-center mt-5" id="pagination">
<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/"><i class="fas fa-angle-double-right"></i></a>
</span>
</nav>
<script>
for (ele of document.getElementById("pagination").getElementsByClassName("page-number")) {
ele.href += '#board';
}
</script>
</div>
</div>
</div>
</div>
</div>
</main>
<a class="z-depth-1" id="scroll-top-button" href="#" role="button">
<i class="fa fa-chevron-up scroll-top-arrow" aria-hidden="true"></i>
</a>
<div class="modal fade" id="modalSearch" tabindex="-1" role="dialog" aria-labelledby="ModalLabel"
aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg" role="document">
<div class="modal-content">
<div class="modal-header text-center">
<h4 class="modal-title w-100 font-weight-bold">Search</h4>
<button type="button" id="local-search-close" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body mx-3">
<div class="md-form mb-5">
<input type="text" id="local-search-input" class="form-control validate">
<label data-error="x" data-success="v"
for="local-search-input">keyword</label>
</div>
<div class="list-group" id="local-search-result"></div>
</div>
</div>
</div>
</div>
<footer class="mt-5">
<div class="text-center py-3">
<div>
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><b>Hexo</b></a>
<i class="iconfont icon-love"></i>
<a href="https://github.com/fluid-dev/hexo-theme-fluid" target="_blank" rel="nofollow noopener"> <b>Fluid</b></a>
</div>
<div>
</div>
</div>
</footer>
<!-- SCRIPTS -->
<script src="https://cdn.staticfile.org/jquery/3.4.1/jquery.min.js" ></script>
<script src="https://cdn.staticfile.org/popper.js/1.16.1/umd/popper.min.js" ></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.4.1/js/bootstrap.min.js" ></script>
<script src="https://cdn.staticfile.org/mdbootstrap/4.13.0/js/mdb.min.js" ></script>
<script src="/js/main.js" ></script>
<script src="/js/lazyload.js" ></script>
<script defer src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js" ></script>
<!-- Plugins -->
<script src="https://cdn.staticfile.org/prettify/188.0.0/prettify.min.js" ></script>
<script>
$(document).ready(function () {
$('pre').addClass('prettyprint linenums');
prettyPrint();
})
</script>
<script src="https://cdn.staticfile.org/typed.js/2.0.11/typed.min.js" ></script>
<script>
var typed = new Typed('#subtitle', {
strings: [
' ',
"El psy congroo ",
],
cursorChar: "_",
typeSpeed: 70,
loop: false,
});
typed.stop();
$(document).ready(function () {
$(".typed-cursor").addClass("h2");
typed.start();
});
</script>
<script src="https://cdn.staticfile.org/anchor-js/4.2.2/anchor.min.js" ></script>
<script>
anchors.options = {
placement: "right",
visible: "hover",
};
var el = "h1,h2,h3,h4,h5,h6".split(",");
var res = [];
for (item of el) {
res.push(".markdown-body > " + item)
}
anchors.add(res.join(", "))
</script>
<script src="/js/local-search.js" ></script>
<script>
var path = "/local-search.xml";
var inputArea = document.querySelector("#local-search-input");
inputArea.onclick = function () {
getSearchFile(path);
this.onclick = null
}
</script>
<script src="https://cdn.staticfile.org/fancybox/3.5.7/jquery.fancybox.min.js" ></script>
<script>
$("#post img:not(.no-zoom img, img[no-zoom])").each(
function () {
var element = document.createElement("a");
$(element).attr("data-fancybox", "images");
$(element).attr("href", $(this).attr("src"));
$(this).wrap(element);
}
);
</script>
</body>
</html>