-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1289 lines (875 loc) · 48.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
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="zh-Hans">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
<meta name="theme-color" content="#222">
<meta name="generator" content="Hexo 5.4.2">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png">
<link rel="mask-icon" href="/images/logo.png" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/lib/font-awesome/css/all.min.css">
<script id="hexo-configurations">
var NexT = window.NexT || {};
var CONFIG = {"hostname":"r3pl4c3r.github.io","root":"/","scheme":"Gemini","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":false,"show_result":false,"style":null},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":false,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}}};
</script>
<meta name="description" content="R3pl4c3r's Blog">
<meta property="og:type" content="website">
<meta property="og:title" content="R3pl4c3r's Blog">
<meta property="og:url" content="https://r3pl4c3r.github.io/index.html">
<meta property="og:site_name" content="R3pl4c3r's Blog">
<meta property="og:description" content="R3pl4c3r's Blog">
<meta property="og:locale">
<meta property="article:author" content="R3pl4c3r">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="https://r3pl4c3r.github.io/">
<script id="page-configurations">
// https://hexo.io/docs/variables.html
CONFIG.page = {
sidebar: "",
isHome : true,
isPost : false,
lang : 'zh-Hans'
};
</script>
<title>R3pl4c3r's Blog</title>
<noscript>
<style>
.use-motion .brand,
.use-motion .menu-item,
.sidebar-inner,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-header { opacity: initial; }
.use-motion .site-title,
.use-motion .site-subtitle {
opacity: initial;
top: initial;
}
.use-motion .logo-line-before i { left: initial; }
.use-motion .logo-line-after i { right: initial; }
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<div class="container use-motion">
<div class="headband"></div>
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="Toggle navigation bar">
<span class="toggle-line toggle-line-first"></span>
<span class="toggle-line toggle-line-middle"></span>
<span class="toggle-line toggle-line-last"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">R3pl4c3r's Blog</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger">
</div>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="main-menu menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section"><i class="fa fa-home fa-fw"></i>Home</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>Tags</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>Categories</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>Archives</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
<main class="main">
<div class="main-inner">
<div class="content-wrap">
<div class="content index posts-expand">
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-Hans">
<link itemprop="mainEntityOfPage" href="https://r3pl4c3r.github.io/2022/07/28/Wireguard-NAT-to-NAT/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="R3pl4c3r">
<meta itemprop="description" content="R3pl4c3r's Blog">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="R3pl4c3r's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/07/28/Wireguard-NAT-to-NAT/" class="post-title-link" itemprop="url">使用 Wireguard 并利用服务器中转实现无公网 IP 异地组网</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2022-07-28 10:32:48" itemprop="dateCreated datePublished" datetime="2022-07-28T10:32:48+08:00">2022-07-28</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-10-26 21:22:06" itemprop="dateModified" datetime="2022-10-26T21:22:06+08:00">2022-10-26</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2022/07/28/Wireguard-NAT-to-NAT/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2022/07/28/Wireguard-NAT-to-NAT/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="情景"><a href="#情景" class="headerlink" title="情景"></a>情景</h2><p>设备 A 与设备 B 均无公网 IP。需要 VPN 构建隧道。</p>
<h2 id="实现方法"><a href="#实现方法" class="headerlink" title="实现方法"></a>实现方法</h2><h3 id="服务器端"><a href="#服务器端" class="headerlink" title="服务器端"></a>服务器端</h3><p>服务器 Ubuntu 22.04</p>
<p>安装 wireguard</p>
<figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">sudo apt install wireguard</span><br></pre></td></tr></table></figure>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2022/07/28/Wireguard-NAT-to-NAT/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-Hans">
<link itemprop="mainEntityOfPage" href="https://r3pl4c3r.github.io/2021/03/11/R6-Voice-Solution/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="R3pl4c3r">
<meta itemprop="description" content="R3pl4c3r's Blog">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="R3pl4c3r's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2021/03/11/R6-Voice-Solution/" class="post-title-link" itemprop="url">彩虹六号语音问题解决方案</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2021-03-11 23:23:30" itemprop="dateCreated datePublished" datetime="2021-03-11T23:23:30+08:00">2021-03-11</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-06-23 18:58:56" itemprop="dateModified" datetime="2022-06-23T18:58:56+08:00">2022-06-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E5%AE%9E%E7%94%A8%E6%8A%80%E5%B7%A7/" itemprop="url" rel="index"><span itemprop="name">实用技巧</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2021/03/11/R6-Voice-Solution/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2021/03/11/R6-Voice-Solution/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="前言"><a href="#前言" class="headerlink" title="前言"></a>前言</h1><p>彩虹六号(Tom Clancy’s Rainbow Six Siege)使用 Vivox 提供的语音聊天服务。由于部分机场使用 Xray/V2Ray 时,需要禁止 BT 或网络审计,在 inbound 开启了 sniffing,导致语音聊天服务器无法连接。<br>通过在 <a target="_blank" rel="noopener" href="https://www.virustotal.com/gui/domain/vivox.com/relations">virustotal</a> 的查询,以及在 <a target="_blank" rel="noopener" href="https://www.abuseipdb.com/whois/74.201.106.174">AbuseIPDB</a> 的查询,并凭借已知的彩虹六号语音服务器域名 rbspsxp.<a target="_blank" rel="noopener" href="http://www.vivox.com/">www.vivox.com</a> (来源:<a target="_blank" rel="noopener" href="https://github.com/XTLS/Xray-core/issues/250#issuecomment-778590896">XTLS/Xray-core#250</a>)以及 rbswp.<a target="_blank" rel="noopener" href="http://www.vivox.com/">www.vivox.com</a> (来源:<a target="_blank" rel="noopener" href="https://steamcommunity.com/app/359550/discussions/1/2524779067037299243/?l=english">steamcommunity: Voice chat not working?</a>),我们可以推测出彩虹六号的语音服务器域名应该以“rbs”开头,可能意为“rainbow six”,并得到以下域名/IP对:</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2021/03/11/R6-Voice-Solution/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-Hans">
<link itemprop="mainEntityOfPage" href="https://r3pl4c3r.github.io/2021/03/04/Proxy-and-VPN/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="R3pl4c3r">
<meta itemprop="description" content="R3pl4c3r's Blog">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="R3pl4c3r's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2021/03/04/Proxy-and-VPN/" class="post-title-link" itemprop="url">Explanation of Proxy and VPN</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2021-03-04 14:59:14" itemprop="dateCreated datePublished" datetime="2021-03-04T14:59:14+08:00">2021-03-04</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-06-23 18:58:56" itemprop="dateModified" datetime="2022-06-23T18:58:56+08:00">2022-06-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/Technology/" itemprop="url" rel="index"><span itemprop="name">Technology</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2021/03/04/Proxy-and-VPN/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2021/03/04/Proxy-and-VPN/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="Introduction"><a href="#Introduction" class="headerlink" title="Introduction"></a>Introduction</h1><p>Many people confuse proxy and Virtual Private Network (VPN). This article explains the technical principles and application scenarios of proxy and VPN.</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2021/03/04/Proxy-and-VPN/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-Hans">
<link itemprop="mainEntityOfPage" href="https://r3pl4c3r.github.io/2020/12/06/emby-unlock/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="R3pl4c3r">
<meta itemprop="description" content="R3pl4c3r's Blog">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="R3pl4c3r's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/12/06/emby-unlock/" class="post-title-link" itemprop="url">Emby 全平台解锁教程</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2020-12-06 16:10:45" itemprop="dateCreated datePublished" datetime="2020-12-06T16:10:45+08:00">2020-12-06</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-06-23 18:58:56" itemprop="dateModified" datetime="2022-06-23T18:58:56+08:00">2022-06-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E5%AE%9E%E7%94%A8%E6%8A%80%E5%B7%A7/" itemprop="url" rel="index"><span itemprop="name">实用技巧</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2020/12/06/emby-unlock/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/12/06/emby-unlock/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="Introduction"><a href="#Introduction" class="headerlink" title="Introduction"></a>Introduction</h1><p>WaveCloud提供了Emby影视库,拥有丰富的媒体资源。但多数人并不会使用Emby解锁,且普拉斯影业的使用教程并不全。本教程将介绍全平台的Emby解锁方法。</p>
<h1 id="Method"><a href="#Method" class="headerlink" title="Method"></a>Method</h1><h2 id="Windows-macOS-and-Linux"><a href="#Windows-macOS-and-Linux" class="headerlink" title="Windows, macOS and Linux"></a>Windows, macOS and Linux</h2><h3 id="Windows-and-Linux-Method-1"><a href="#Windows-and-Linux-Method-1" class="headerlink" title="Windows and Linux: Method 1"></a>Windows and Linux: Method 1</h3><p>参考<a target="_blank" rel="noopener" href="https://neko.re/archives/225.html">这篇文章</a></p>
<h3 id="Windows-macOS-and-Linux-Method-2"><a href="#Windows-macOS-and-Linux-Method-2" class="headerlink" title="Windows, macOS and Linux: Method 2"></a>Windows, macOS and Linux: Method 2</h3><h4 id="Step-1-Install-and-Trust-Certificate"><a href="#Step-1-Install-and-Trust-Certificate" class="headerlink" title="Step 1: Install and Trust Certificate"></a>Step 1: Install and Trust Certificate</h4><p>下载<a target="_blank" rel="noopener" href="http://app.wavecloud.us:2333/Emby/embyUnlockProxy.7z">这个文件</a>,并解压。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2020/12/06/emby-unlock/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-Hans">
<link itemprop="mainEntityOfPage" href="https://r3pl4c3r.github.io/2020/07/31/VPN-Legal-Problem/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="R3pl4c3r">
<meta itemprop="description" content="R3pl4c3r's Blog">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="R3pl4c3r's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/07/31/VPN-Legal-Problem/" class="post-title-link" itemprop="url">个人使用vpn"翻墙"是否违法?——基于规范性法律文件、案例以及相关计算机技术的分析与讨论</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2020-07-31 18:03:55" itemprop="dateCreated datePublished" datetime="2020-07-31T18:03:55+08:00">2020-07-31</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-06-23 18:58:56" itemprop="dateModified" datetime="2022-06-23T18:58:56+08:00">2022-06-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E8%BD%AC%E8%BD%BD%E5%A5%BD%E6%96%87/" itemprop="url" rel="index"><span itemprop="name">转载好文</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2020/07/31/VPN-Legal-Problem/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/07/31/VPN-Legal-Problem/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p><em>转载声明:本文转载自微信公众号:不能使用该名称(微信号: ForbiddenSpeech),原文链接为:<a target="_blank" rel="noopener" href="https://mp.weixin.qq.com/s/cndzW_oXClkSdwOtam0qUw">https://mp.weixin.qq.com/s/cndzW_oXClkSdwOtam0qUw</a></em></p>
<p>本文旨在分析“翻墙”行为的法律风险,并基于现行规范性法律文件和相关案例进行学术讨论。在分析相关法条时可能需要对部分计算机专业术语进行释义。<font color=Red><strong>但本文不涉及有关“翻墙”的任何技术指导或方法的具体介绍。</strong></font><br><u><font color=Red>另,本文讨论的一切“XXX合法与违法”问题,分析的主体都是“单纯访问境外网站”,不包括“访问、发布、传播违法有害信息”,后者当然属于违法犯罪行为,但这和翻墙行为没有任何本质联系,因为在境内网站也可访问、发布、传播违法有害信息。</font></u> </p>
<p>在本文大致框架形成以前,我已查阅国内几乎所有关于“翻墙”的论文和文章,大部分探讨都存在着严重的问题,有些是法学常识性问题(或不讨论法律层面的问题),有些是计算机技术方面的常识性问题(常出现在法学类文章中)。<br>这是一个很有趣的现象——“翻墙”是一个同时牵涉法学和计算机技术的两个领域的跨学科问题。很多法学专家不了解技术;很多技术人员,也没有意愿探讨技术涉及的法律问题。这个疑难问题今天终于被我这个“既没学好法,又没学好计算机”的奇葩捡了漏。望两个学科的大佬们对于本文可能出现的纰漏予以指正! </p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2020/07/31/VPN-Legal-Problem/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-Hans">
<link itemprop="mainEntityOfPage" href="https://r3pl4c3r.github.io/2020/06/28/Law_of_Total_Expectation_Solve_Expectation_Finale/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="R3pl4c3r">
<meta itemprop="description" content="R3pl4c3r's Blog">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="R3pl4c3r's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/06/28/Law_of_Total_Expectation_Solve_Expectation_Finale/" class="post-title-link" itemprop="url">全期望公式解决期望压轴题</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2020-06-28 19:36:59" itemprop="dateCreated datePublished" datetime="2020-06-28T19:36:59+08:00">2020-06-28</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-06-23 18:58:56" itemprop="dateModified" datetime="2022-06-23T18:58:56+08:00">2022-06-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E9%AB%98%E4%B8%AD%E6%95%B0%E5%AD%A6/" itemprop="url" rel="index"><span itemprop="name">高中数学</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2020/06/28/Law_of_Total_Expectation_Solve_Expectation_Finale/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2020/06/28/Law_of_Total_Expectation_Solve_Expectation_Finale/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="题目"><a href="#题目" class="headerlink" title="题目"></a>题目</h1><p>某公司为了丰富员工的业余文化生活,召开了一次趣味运动会. 甲、乙两人参加“射击气球”比赛,他们依次轮流射击气球一次,每人射击$n$次,射击气球只有两种结果:“中”或“不中”. 规则:甲先射击,若“中”得2分,否则1分;乙再射,若“中”,得第一次甲的得分加1,否则得1分;接着甲再射,若“中”,得第一次乙的得分加1,否则得1分;乙再射,若“中”,得第二次甲的得分加1,否则得1分;接着甲再射,若“中”,得第二次乙的得分加1,否则得1分. 按此规则,直至比赛结束. 已知射中概率均为$\dfrac{2}{3}$. 记$X_i$,$Y_i$分别为甲、乙第$i$次射击得分. 记$a_1=EX_1$,$a_2=EY_1$,$a_3=EX_2$,$\cdots$.</p>
<p>证明:$\lbrace a_n-3\rbrace$为等比数列.</p>
<h1 id="题解"><a href="#题解" class="headerlink" title="题解"></a>题解</h1><h2 id="全期望公式"><a href="#全期望公式" class="headerlink" title="全期望公式"></a>全期望公式</h2>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2020/06/28/Law_of_Total_Expectation_Solve_Expectation_Finale/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-Hans">
<link itemprop="mainEntityOfPage" href="https://r3pl4c3r.github.io/2019/06/16/Procedure_and_Solution_of_Screen_Delivering/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="R3pl4c3r">
<meta itemprop="description" content="R3pl4c3r's Blog">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="R3pl4c3r's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2019/06/16/Procedure_and_Solution_of_Screen_Delivering/" class="post-title-link" itemprop="url">手机投屏解决历程与方法</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2019-06-16 12:21:03" itemprop="dateCreated datePublished" datetime="2019-06-16T12:21:03+08:00">2019-06-16</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-06-23 18:58:56" itemprop="dateModified" datetime="2022-06-23T18:58:56+08:00">2022-06-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E5%AE%9E%E7%94%A8%E6%8A%80%E5%B7%A7/" itemprop="url" rel="index"><span itemprop="name">实用技巧</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2019/06/16/Procedure_and_Solution_of_Screen_Delivering/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/06/16/Procedure_and_Solution_of_Screen_Delivering/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="原因(发现问题)"><a href="#原因(发现问题)" class="headerlink" title="原因(发现问题)"></a>原因(发现问题)</h1><p>买了乐学高考的化学课,只能在移动端观看。为了方便记笔记,以及更好的观看体验。决定解决这个问题。</p>
<h1 id="分析问题"><a href="#分析问题" class="headerlink" title="分析问题"></a>分析问题</h1><p>可能解决方法:</p>
<ul>
<li>安卓模拟器</li>
<li>手机投屏</li>
</ul>
<h1 id="解决问题"><a href="#解决问题" class="headerlink" title="解决问题"></a>解决问题</h1><h2 id="第一天"><a href="#第一天" class="headerlink" title="第一天"></a>第一天</h2><h3 id="第0xFF次尝试"><a href="#第0xFF次尝试" class="headerlink" title="第0xFF次尝试"></a>第0xFF次尝试</h3><p>想到了Android模拟器,但发现模拟器内的乐学高考不能正常播放。后来又想到了PhoenixOS,这也是个Android系统(基于x86架构),但是也发现乐学高考不能在这个系统内播放。直接Pass。</p>
<h3 id="第0x00次尝试"><a href="#第0x00次尝试" class="headerlink" title="第0x00次尝试"></a>第0x00次尝试</h3>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2019/06/16/Procedure_and_Solution_of_Screen_Delivering/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-Hans">
<link itemprop="mainEntityOfPage" href="https://r3pl4c3r.github.io/2019/02/04/An_Uncommon_Way_in_Solving_the_Conditional_Maxima_and_Minima/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="R3pl4c3r">
<meta itemprop="description" content="R3pl4c3r's Blog">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="R3pl4c3r's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2019/02/04/An_Uncommon_Way_in_Solving_the_Conditional_Maxima_and_Minima/" class="post-title-link" itemprop="url">条件最值中的骚套路</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2019-02-04 17:09:47" itemprop="dateCreated datePublished" datetime="2019-02-04T17:09:47+08:00">2019-02-04</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-06-23 18:58:56" itemprop="dateModified" datetime="2022-06-23T18:58:56+08:00">2022-06-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E9%AB%98%E4%B8%AD%E6%95%B0%E5%AD%A6/" itemprop="url" rel="index"><span itemprop="name">高中数学</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2019/02/04/An_Uncommon_Way_in_Solving_the_Conditional_Maxima_and_Minima/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/02/04/An_Uncommon_Way_in_Solving_the_Conditional_Maxima_and_Minima/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="条件最值例题"><a href="#条件最值例题" class="headerlink" title="条件最值例题"></a>条件最值例题</h2><p>已知$a+b=1(a>0,b>0)$,求$\dfrac{1}{a}+\dfrac{4}{b}$的最小值<br>解:<br>$$\begin{eqnarray}<br>原式&=&\left(a+b\right)\left(\dfrac{1}{a}+\dfrac{4}{b}\right)\\<br>&=&\dfrac{b}{a}+\dfrac{4a}{b}+5\\<br>&\geq&9<br>\end{eqnarray}$$</p>
<p>那么这就是本题的常规解法,下面我来介绍另一种方法:拉格朗日乘子法(Lagrange multiplier)</p>
<h3 id="Lagrange-multiplier"><a href="#Lagrange-multiplier" class="headerlink" title="Lagrange multiplier"></a>Lagrange multiplier</h3><p>基本的拉格朗日乘子法就是求函数$f(x_1,x_2,…)$在约束条件$g(x_1,x_2,…)=0$下的极值的方法。<br>其主要思想是将约束条件函数与原函数联立,从而求出使原函数取得极值的各个变量的解。</p>
<h4 id="计算过程"><a href="#计算过程" class="headerlink" title="计算过程"></a>计算过程</h4>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2019/02/04/An_Uncommon_Way_in_Solving_the_Conditional_Maxima_and_Minima/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-Hans">
<link itemprop="mainEntityOfPage" href="https://r3pl4c3r.github.io/2019/01/30/How_to_AC_%E2%80%9CA+B%E2%80%9D_Problem/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.jpg">
<meta itemprop="name" content="R3pl4c3r">
<meta itemprop="description" content="R3pl4c3r's Blog">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="R3pl4c3r's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2019/01/30/How_to_AC_%E2%80%9CA+B%E2%80%9D_Problem/" class="post-title-link" itemprop="url">如何AC “A+B” Problem</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Created: 2019-01-30 19:47:59" itemprop="dateCreated datePublished" datetime="2019-01-30T19:47:59+08:00">2019-01-30</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2022-06-23 18:58:56" itemprop="dateModified" datetime="2022-06-23T18:58:56+08:00">2022-06-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/OI/" itemprop="url" rel="index"><span itemprop="name">OI</span></a>
</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-comment"></i>
</span>
<span class="post-meta-item-text">Valine: </span>
<a title="valine" href="/2019/01/30/How_to_AC_%E2%80%9CA+B%E2%80%9D_Problem/#valine-comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/01/30/How_to_AC_%E2%80%9CA+B%E2%80%9D_Problem/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="A-B-Problem描述"><a href="#A-B-Problem描述" class="headerlink" title="A+B Problem描述"></a>A+B Problem描述</h2><p>输入两个整数a,b,输出它们的和(|a|,|b|<=10^9)。</p>
<p>注意<br>1.pascal使用integer会爆<br>2.有负数<br>3.c/c++的main函数必须是int类型,而且最后要return 0</p>
<p>好吧,同志们,我们就从这一题开始,向着大牛的路进发。</p>