-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1342 lines (731 loc) · 47 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
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="Hexo Theme Keep">
<meta name="description" content="Hexo Theme Keep">
<meta name="author" content="ZeroJiu">
<title>
小熊糖否
</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="shortcut icon" href="/images/logo.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.1.5/font/css/fontawesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.1.5/font/css/regular.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.1.5/font/css/solid.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.1.5/font/css/brands.min.css">
<script class="keep-theme-configurations">
const KEEP = window.KEEP || {}
KEEP.hexo_config = {"hostname":"example.com","root":"/","language":"en","path":"search.xml"}
KEEP.theme_config = {"base_info":{"primary_color":"#c0392b","title":"小熊糖否","author":"ZeroJiu","avatar":"/images/author.jpg","logo":"/images/logo.ico","favicon":"/images/logo.ico"},"menu":{"home":"/","archives":"/archives","tags":"/tags","about":"/about"},"first_screen":{"enable":true,"background_img":"/images/bg.svg","background_img_dark":"/images/bg.svg","description":"True mastery of any skill takes a lifetime.","hitokoto":false},"social_contact":{"enable":true,"links":{"github":"https://github.com/zerojiu","weixin":null,"qq":null,"weibo":null,"zhihu":null,"twitter":null,"x":null,"facebook":null,"email":"[email protected]"}},"scroll":{"progress_bar":true,"percent":false,"hide_header":true},"home":{"announcement":null,"category":true,"tag":true,"post_datetime":"created"},"post":{"author_badge":{"enable":true,"level_badge":false,"custom_badge":["愚昧之巅V1","愚昧之巅V2","愚昧之巅V3","愚昧之巅V4","愚昧之巅V5","绝望之谷V1","绝望之谷V2","绝望之谷V3","绝望之谷V4","绝望之谷V5","开悟之坡V1","开悟之坡V2","开悟之坡V3","开悟之坡V4","开悟之坡V5","大师领域V1","大师领域V2","大师领域V3","大师领域V4","大师领域V5"]},"word_count":{"wordcount":true,"min2read":true},"datetime_format":"YYYY-MM-DD HH:mm:ss","copyright_info":true,"share":true,"img_align":"center","reward":{"enable":false,"img_link":null,"text":null}},"code_block":{"tools":{"enable":true,"style":"default"},"highlight_theme":"default"},"toc":{"enable":false,"number":false,"expand_all":true,"init_open":false,"layout":"right"},"website_count":{"busuanzi_count":{"enable":true,"site_uv":true,"site_pv":true,"page_pv":true}},"local_search":{"enable":true,"preload":true},"comment":{"enable":false,"use":"valine","valine":{"appid":null,"appkey":null,"server_urls":null,"placeholder":null},"gitalk":{"github_id":null,"github_admins":null,"repository":null,"client_id":null,"client_secret":null,"proxy":null},"twikoo":{"env_id":null,"region":null,"version":"1.6.36"},"waline":{"server_url":null,"reaction":false,"version":"3.2.1"},"giscus":{"repo":null,"repo_id":null,"category":"Announcements","category_id":null,"reactions_enabled":false},"artalk":{"server":null},"disqus":{"shortname":null}},"rss":{"enable":true},"lazyload":{"enable":true},"cdn":{"enable":true,"provider":"cdnjs"},"pjax":{"enable":true},"footer":{"since":2020,"word_count":false,"site_deploy":{"enable":true,"provider":"github","url":null},"record":{"enable":false,"list":[{"code":null,"link":null}]}},"inject":{"enable":false,"css":[null],"js":[null]},"root":"","source_data":{},"version":"4.1.5"}
KEEP.language_ago = {"second":"%s seconds ago","minute":"%s minutes ago","hour":"%s hours ago","day":"%s days ago","week":"%s weeks ago","month":"%s months ago","year":"%s years ago"}
KEEP.language_code_block = {"copy":"Copy code","copied":"Copied","fold":"Fold code block","folded":"Folded"}
KEEP.language_copy_copyright = {"copy":"Copy copyright info","copied":"Copied","title":"Original post title","author":"Original post author","link":"Original post link"}
</script>
<meta name="generator" content="Hexo 7.3.0"></head>
<body>
<div class="progress-bar-container">
<span class="scroll-progress-bar"></span>
<span class="pjax-progress-bar"></span>
<i class="pjax-progress-icon fas fa-circle-notch fa-spin"></i>
</div>
<main class="page-container border-box">
<!-- home first screen -->
<div class="first-screen-container border-box flex-center fade-in-down-animation">
<div class="first-screen-content border-box">
<div class="top-placeholder border-box"></div>
<div class="middle-placeholder border-box">
<div class="description border-box">
<div class="desc-item border-box"><span class="desc">True mastery of any skill takes a lifetime.</span><span class="cursor">|</span></div>
</div>
</div>
<div class="bottom-placeholder border-box">
<div class="sc-icon-list border-box">
<!-- fontawesome icons -->
<div class="tooltip sc-icon-item "
data-tooltip-content="GitHub"
>
<a target="_blank" href="https://github.com/zerojiu">
<i class="fab fa-github"></i>
</a>
</div>
<div class="tooltip sc-icon-item "
data-tooltip-content="Email"
>
<a href="mailto:[email protected]">
<i class="fas fa-envelope"></i>
</a>
</div>
<!-- custom svg icons -->
</div>
</div>
</div>
</div>
<!-- page content -->
<div class="page-main-content border-box is-home">
<div class="page-main-content-top">
<header class="header-wrapper transparent-1">
<div class="border-box header-content has-first-screen">
<div class="left border-box">
<a class="logo-image border-box" href="/">
<img src="/images/logo.ico">
</a>
<a class="site-name border-box" href="/">
小熊糖否
</a>
</div>
<div class="right border-box">
<div class="pc">
<ul class="menu-list">
<li class="menu-item">
<a class="active"
href="/"
>
HOME
</a>
</li>
<li class="menu-item">
<a class=""
href="/archives"
>
ARCHIVES
</a>
</li>
<li class="menu-item">
<a class=""
href="/tags"
>
TAGS
</a>
</li>
<li class="menu-item">
<a class=""
href="/about"
>
ABOUT
</a>
</li>
<li class="menu-item search search-popup-trigger">
<i class="fas search fa-search"></i>
</li>
</ul>
</div>
<div class="mobile">
<div class="icon-item search search-popup-trigger"><i class="fas fa-search"></i></div>
<div class="icon-item menu-bar">
<div class="menu-bar-middle"></div>
</div>
</div>
</div>
</div>
<div class="header-drawer">
<ul class="drawer-menu-list">
<li class="drawer-menu-item flex-center">
<a class="active"
href="/"
>HOME</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/archives"
>ARCHIVES</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/tags"
>TAGS</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/about"
>ABOUT</a>
</li>
</ul>
</div>
<div class="window-mask"></div>
</header>
</div>
<div class="page-main-content-middle border-box">
<div class="main-content border-box">
<div class="home-content-container fade-in-down-animation">
<ul class="home-post-list border-box">
<li class="home-post-item">
<div class="home-post-item-top border-box"
style="height: 250px"
>
<div class="post-sticky-box cover">
<i class="fas fa-thumbtack"></i><span class="sticky-name"> TOP</span>
</div>
<img class="home-cover" src="/images/tags/starry-sky.png"
onerror="this.style.display='none'"
>
</div>
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/reading/booklist-yesterday/">
昨日书单,今日人生,明日憧憬
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<center><b>子曰:“学而时习之,不亦说乎?有朋自远方来,不亦乐乎?人不知而不愠,不亦君子乎?”</b></center>
<p>很少会把一本书看完,经常是看到一半就看不下去了。是书不好,还是人不好?花开堪折直须折,学习的年龄莫辜负大好青春。
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sun May 03 2015 08:54:05 GMT+0800"
>2015-05-03 08:54:05</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Reading/">Reading</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/BookList/">BookList</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/reading/booklist-yesterday/">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-top border-box"
style="height: 250px"
>
<img class="home-cover" src="/images/tags/webrtc.png"
onerror="this.style.display='none'"
>
</div>
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/develop/webrtc-compile/">
WebRTC编译必知必会
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>任何想入手WebRTC的人,都必须要先过编译大魔王这一关。大魔王精通各种故障制造手法,随便来个网络故障就要折腾我们半天,一些初出茅庐的新手,可能就因此放弃了。本文将笔者编译过程中遇到的坑坑点点记录下来,以飨读者。
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Mon Feb 26 2024 14:43:46 GMT+0800"
>2024-02-26 14:43:46</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Develop/">Develop</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/WebRTC/">WebRTC</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/develop/webrtc-compile/">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-top border-box"
style="height: 250px"
>
<img class="home-cover" src="https://cdn.jsdelivr.net/gh/zerojiu/picx-images-hosting@master/hardware.51e1obwkyt.webp"
onerror="this.style.display='none'"
>
</div>
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/develop/media-interface/">
视频会议中的音视频接口
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>接口是两实体交换资料的介质,交换资料的实体可以是软件、电脑硬件、外部设备、人等等。有些接口是双向的,可以收发信息,譬如触摸屏;有些接口是单向的,仅能收或者发信息,譬如鼠标或喇叭。人类与计算机软体之间的接口是用户界面;电脑和外部设备等计算机硬件之间的接口是硬件接口;电脑等计算机软件之间的接口是软件接口。
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sun Mar 20 2022 23:13:00 GMT+0800"
>2022-03-20 23:13:00</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Develop/">Develop</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Media/">Media</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Hardware/">Hardware</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/develop/media-interface/">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-top border-box"
style="height: 250px"
>
<img class="home-cover" src="/images/tags/cpp1.png"
onerror="this.style.display='none'"
>
</div>
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/develop/cpp-reverse/">
有关字符串翻转reverse的思考
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<blockquote>
<p>孟子曰:“尽信《书》,则不如无《书》”</p>
</blockquote>
<p>陈硕Muduo一书第12章中提及“<strong>用异或交换变量是错误的</strong>”。校招面试的时候经常遇到这个问题,竟然没有深入思考这一点。
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Mon Feb 11 2019 20:46:16 GMT+0800"
>2019-02-11 20:46:16</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Develop/">Develop</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/CPP/">CPP</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Experience/">Experience</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/develop/cpp-reverse/">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-top border-box"
style="height: 250px"
>
<img class="home-cover" src="/images/tags/cpp1.png"
onerror="this.style.display='none'"
>
</div>
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/develop/cpp-smartpointer-analysis/">
智能指针二三事
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>C++11中引入智能指针,智能指针主要用来解决资源管理中遇到的各种问题。在引入智能指针之前,我们必须要操作裸指针,裸指针是导致内存问题的罪魁祸首——空悬指针、内存泄漏、分配失败等。一些著名的开源C项目,现在仍然还需要面临着一些由裸指针引起的内存问题。
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Oct 13 2018 08:48:41 GMT+0800"
>2018-10-13 08:48:41</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Develop/">Develop</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/CPP/">CPP</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Experience/">Experience</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/develop/cpp-smartpointer-analysis/">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-top border-box"
style="height: 250px"
>
<img class="home-cover" src="/images/tags/webrtc.png"
onerror="this.style.display='none'"
>
</div>
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/develop/webrtc-tcc-vs-gcc/">
WebRTC-GCC两种实现方案对比
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<blockquote>
<p>越过山丘,才发现无人等候。</p>
</blockquote>
<p>WebRTC为了防止网络拥塞结合了Loss-based BWE和Delay-based BWE两种算法,其中Loss-based BWE算法较为复杂。
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat May 26 2018 08:23:19 GMT+0800"
>2018-05-26 08:23:19</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Develop/">Develop</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/WebRTC/">WebRTC</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Transport/">Transport</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/develop/webrtc-tcc-vs-gcc/">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-top border-box"
style="height: 250px"
>
<img class="home-cover" src="/images/tags/experience.jpg"
onerror="this.style.display='none'"
>
</div>
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/develop/low-probability-analysis/">
低概率问题分析解决
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>在软件开发过程中,经常会遇到出现概率很低,但只要出现了就会对系统可用性影响很大的问题。这类问题总是在JIRA上被挂起,时不时的在测试中被报出来。不解决是永不歇停的。因此,在这里根据我遇到的各种低概率问题,整理出一套解决问题的方法,希望在解决其他低概率问题时能够有些借鉴。
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Wed Mar 14 2018 08:32:59 GMT+0800"
>2018-03-14 08:32:59</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Develop/">Develop</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Experience/">Experience</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/develop/low-probability-analysis/">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-top border-box"
style="height: 250px"
>
<img class="home-cover" src="/images/tags/night.png"
onerror="this.style.display='none'"
>
</div>
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/timecapsule/2017-improve/">
三月:迟来的总结和反思
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<blockquote>
<p>吾十有五而志于学,三十而立,四十而不惑,五十而知天命,六十而耳顺,七十而从心所欲不逾矩。</p>
</blockquote>
<p>看似繁忙的日子,充满了战术上的偷懒,仍然没有找到适合自己的那套方法论。
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Mar 03 2018 22:52:22 GMT+0800"
>2018-03-03 22:52:22</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/TimeCapsule/">TimeCapsule</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/DailyLife/">DailyLife</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Introspection/">Introspection</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/timecapsule/2017-improve/">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-top border-box"
style="height: 250px"
>
<img class="home-cover" src="/images/tags/webrtc.png"
onerror="this.style.display='none'"
>
</div>
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/develop/webrtc-frame/">
WebRTC帧率调整策略
</a>
</h3>
<div class="home-post-content keep-markdown-body">
<p>与实时视频相关参数包含:帧率、码率、时延、抖动等。帧率体现了视频的流畅性,要想达到较好的流畅性体验要求——网络视频帧率不低于24帧,视频会议帧率不低于15帧。在实际开发中,我们遇到了不少问题
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Dec 09 2017 12:36:45 GMT+0800"
>2017-12-09 12:36:45</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/Develop/">Develop</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/WebRTC/">WebRTC</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/tags/Transport/">Transport</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/develop/webrtc-frame/">Read more <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-top border-box"
style="height: 250px"
>
<img class="home-cover" src="/images/tags/auvi.jpg"