-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
5162 lines (4781 loc) · 288 KB
/
test.html
File metadata and controls
5162 lines (4781 loc) · 288 KB
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" data-color-mode="light" data-dark-theme="dark_colorblind" data-light-theme="light">
<!-- 正在使用的home -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes" />
<title>code导航网站</title>
<style>
a {
margin-left: 2px;
}
</style>
<link href="img/monkey.png" rel="icon" type="image/x-ico">
<link rel="stylesheet" href="css/home.css">
<script>
if (localStorage.getItem("meek_theme") == null) { }
else if (localStorage.getItem("meek_theme") == "dark") { document.getElementsByTagName("html")[0].attributes.getNamedItem("data-color-mode").value = "dark"; }
else if (localStorage.getItem("meek_theme") == "light") { document.getElementsByTagName("html")[0].attributes.getNamedItem("data-color-mode").value = "light"; }
</script>
<style type="text/css">
body {
background-size: 100%;
}
body {
background: url("img/background.png") no-repeat center center fixed;
/*兼容浏览器版本*/
-webkit-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
<!-- <script type="text/javascript">
window.onload = function () {
window.requestAnimationFrame(getDate)
}
function getDate() {
window.setTimeout(function () {
window.requestAnimationFrame(getDate)
}, 1000 / 2)
var d = new Date();
var year = d.getFullYear() //获取年
var month = d.getMonth() + 1; //获取月,从Date 对象返回月份0 ~ 11
var day = d.getDay() //获取日
var days = d.getDate() //获取日期
var hour = d.getHours() //获取小时
var minute = d.getMinutes() //获取分钟
var second = d.getSeconds() //获取秒
if (month < 10) month = "0" + month
if (days < 10) days = "0" + days
if (hour < 10) hour = "0" + hour
if (minute < 10) minute = "0" + minute
if (second < 10) second = "0" + second
var week = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六")
var Tools = document.getElementById("Main")
var da = year + "-" + month + "-" + days + " " + week[day] + " " + hour + " : " + minute + " :" + second
Tools.innerHTML = da
}
</script> -->
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
_paq.push(["setCookieDomain", "*.time.utopiaxc.cn"]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function () {
var u = "//matomo.utopiaxc.cn/";
_paq.push(['setTrackerUrl', u + 'matomo.php']);
_paq.push(['setSiteId', '16']);
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s);
})();
</script>
<!-- End Matomo Code -->
<script type="text/javascript">
function baidu() {
text = document.getElementById('baidu_text').value;
url = 'https://www.baidu.com/s?wd=' + text;
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function pocket() {
text = document.getElementById('baidu_text').value;
url = 'https://getpocket.com/zh-cn/' + text;
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function baidu_kaifa() {
text = document.getElementById('baidu_text').value;
url = 'https://kaifa.baidu.com/searchPage?wd=' + text;
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function Java_Search() {
text = document.getElementById('baidu_text').value;
url = 'https://www.programcreek.com/java-api-examples/?action=search&ClassName=' + text + '&submit=Search';
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function Search_Code() {
text = document.getElementById('baidu_text').value;
url = 'https://searchcode.com/?q=' + text;
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function Stackover_Flow() {
text = document.getElementById('baidu_text').value;
url = 'https://stackoverflow.com/questions/tagged/' + text;
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function Quora_Flow() {
text = document.getElementById('baidu_text').value;
url = 'https://www.quora.com/search?q=' + text;
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function Ask_Search() {
text = document.getElementById('baidu_text').value;
url = 'https://www.ask.com/web?q=' + text;
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function yahoo_Search() {
text = document.getElementById('baidu_text').value;
url = 'https://search.yahoo.com/search?p=' + text;
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function Yandex_Search() {
text = document.getElementById('baidu_text').value;
url = 'https://yandex.com/search/?text=' + text;
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function Geek_Search() {
text = document.getElementById('baidu_text').value;
url = 'https://s.geekbang.org/search/c=0/k=' + text + '/t=';
window.open(url, "_blank")
}
</script>
<script type="text/javascript">
function DuckDuckgo_Search() {
text = document.getElementById('baidu_text').value;
url = 'https://duckduckgo.com/?q=' + text;
window.open(url, "_blank")
}
</script>
<!-- 百度地图 -->
<!-- <script src="http://api.map.baidu.com/api?v=2.0&ak=iKwglTh4wOIW6Q5N9KcsYP0MDPam7CB0"></script> -->
<script type="text/javascript">
// var map = new BMap.Map("container");
// var nowCity = new BMap.LocalCity();
// nowCity.get(bdGetPosition);
// function bdGetPosition(result){
// var cityName = result.name;
// alert('cityName'+nowCity);
// document.getElementById("wearher_font").innerText = cityName+"➦点击查看天气";
// document.getElementById("wearher_font").style.color = "#ff0000";
// document.getElementById("wearher_font").style.font
// }
</script>
</head>
<body class="b-page_com">
<script type="text/javascript" src="js/sakura-l.js"></script>
<div class='b-layout'>
<div class="a-line a-line__center">
<div class='main'>
<div class='fruits'>
<!-- <a target="_blank" href="https://leetcode-cn.com/">
<img id="img_index" src="./img/leetcode.png" alt="" title="leetcode刷题">
</a> -->
<!-- <a target="_blank" href="https://www.icourse163.org/">
<img id="img_index" src="./img/苹果.png" alt="" title="大学MOOC">
</a> -->
<a target="_blank" href="https://www.bilibili.com/">
<img class="img-packets1" id="img_index" src="./img/bilibili.png" alt="" title="哔哩哔哩">
</a>
<a target="_blank" href="https://email.163.com/">
<img class="img-packets2" id="img_index" src="./img/邮箱.png" alt="" title="网易邮箱">
</a>
<a target="_blank" href="https://mail.google.com/mail">
<img class="img-packets3" id="img_index" src="./img/gmail.png" alt="" title="谷歌gmail">
</a>
<a target="_blank" href="https://pan.baidu.com/">
<img class="img-packets4" id="img_index" src="./img/云盘.png" alt="" title="百度云盘">
</a>
<a target="_blank" href="https://www.aliyundrive.com/">
<img class="img-packets5" id="img_index" src="./img/云盘2.png" alt="" title="阿里云盘">
</a>
<a target="_blank" href="https://www.douyin.com/">
<img class="img-packets6" id="img_index" src="./img/抖音.png" alt="" title="抖音">
</a>
<!-- <img src="./img/猴子.png">
<img src="./img/草莓.png">
<img src="./img/橙子.png">
<img src="./img/梨子.png">
<img src="./img/荔枝.png">
<img src="./img/苹果.png">
<img src="./img/柿子.png"> -->
</div>
<!-- <p id="time" style="color: blueviolet;"></p>
<script>
function mtime() {
var a = new Date();
var b = a.toLocaleTimeString();
var c = a.toLocaleDateString();
document.getElementById("time").innerHTML = c + " " + b;
}
setInterval(function () { mtime() }, 1000);
</script> -->
<div class="search_region">
<!-- <div class='logo'><a class="home-link" href="https://yandex.com/" data-statlog="logo.default"
data-statlog-showed="1">
<div class="logo__image_bg" role="img" aria-label="Yandex"></div>
</a>
</div> -->
<!-- 旧版 -->
<!-- <form class="search2 search2_type_2021" action="https://cn.bing.com/search" target="_blank">
<div class='search2__input'>
<span class="input input_size_search
input_theme_search
input_search2-clear-hide_yes
input_ahead_yes
input_autofocus_capture
input_clear_yes">
<span class="input__box">
<input class="input__control
input__input
mini-suggest__input" tabindex="2" autocomplete="off" autocorrect="off" autocapitalize="off"
spellcheck="false" aria-autocomplete="list" aria-label="Request" name="q"
maxlength="400" name="text" />
</div>
<div class='search2__button'>
<button class="button button_theme_search button_size_search i-bem" tabindex="-1"
role="button" type="submit">
<span class="button__text"><strong class="a_text text-packets">Bing Search</strong></span>
</button>
</div>
<div class="search2__placeholder" aria-hidden="true">Finds everything</div>
</form> -->
<!-- 新版 -->
<!-- <form class="search2 search2_type_2021" target="_blank"> -->
<!-- <h2 class="text-normal" >
<svg aria-hidden="true" height="24" viewBox="0 0 24 24" version="1.1" width="24" data-view-component="true" class="octicon octicon-search">
<path fill-rule="evenodd" d="M10.25 2a8.25 8.25 0 105.28 14.59l5.69 5.69a.75.75 0 101.06-1.06l-5.69-5.69A8.25 8.25 0 0010.25 2zM3.5 10.25a6.75 6.75 0 1113.5 0 6.75 6.75 0 01-13.5 0z"></path>
</svg>
Search more than <strong>finds everything</strong>
</h2> -->
<form class="search2" target="_blank">
<div class='search2__input'>
<span class="input input_size_search" target="_blank">
<input id="baidu_text" class="input__control " name="q" autocomplete="off" value=""
type="text" autofocu="true" spellcheck="true" target="_blank" />
</span>
</div>
<div class='search2__button'>
<input class="button_theme_search enjoy-css-submit bing" tabindex="-1" role="button"
type="submit" formaction="https://cn.bing.com/search" value=" Bing " id="submit"
target="_blank" />
</div>
<div class='search2__button'>
<input class="button_theme_search enjoy-css-submit baidu" tabindex="-1" role="button"
type="button" value=" Baidu " id="submit" onclick="baidu();" target="_blank" />
</div>
<div class='search2__button'>
<input class="button_theme_search enjoy-css-submit github" tabindex="-1" role="button"
type="submit" formaction="https://github.com/search" value="Github" id="submit"
target="_blank" />
</div>
<div class='search2__button'>
<input class="button_theme_search enjoy-css-submit google" tabindex="-1" role="button"
type="submit" formaction="https://www.google.com/search" value="Google⇡" id="submit"
target="_blank" />
</div>
</form>
<div class="other_search">
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="pocket();" target="_blank"><strong>pocket<font color="yellow">⇡
</font></strong></a>
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="baidu_kaifa();" target="_blank"><strong>开发者搜索</strong></a>
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="Geek_Search();" target="_blank"><strong>极客搜索</strong></a>
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="Stackover_Flow();" target="_blank"><strong>Stackoverflow</strong></a>
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="Java_Search();" target="_blank"><strong>JavaSearch</strong></a>
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="Search_Code();" target="_blank"><Strong>SearchCode</Strong></a>
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="Yandex_Search();" target="_blank"><strong>Yandex</strong></a>
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="Quora_Flow();" target="_blank"><strong>quora<font color="yellow">⇡
</font></strong></a>
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="yahoo_Search();" target="_blank"><strong>yahoo<font color="yellow">⇡
</font></strong></a>
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="DuckDuckgo_Search();" target="_blank"><Strong>DuckDuckgo<font
color="yellow">⇡</font></Strong></a>
<a style="cursor:pointer" class="italic_font" tabindex="-1" role="button" type="button"
id="submit" onclick="Ask_Search();" target="_blank"><strong>Ask<font color="yellow">⇡</font>
</strong></a>
<!-- <button class="btn btn-invisible circle" onclick="modeSwitch()" title="切换主题">
<svg class="octicon" width="13" height="13" style="color: rgb(255, 80, 0);">
<path id="themeSwitch" fill-rule="evenodd"
d="M8 10.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM8 12a4 4 0 100-8 4 4 0 000 8zM8 0a.75.75 0 01.75.75v1.5a.75.75 0 01-1.5 0V.75A.75.75 0 018 0zm0 13a.75.75 0 01.75.75v1.5a.75.75 0 01-1.5 0v-1.5A.75.75 0 018 13zM2.343 2.343a.75.75 0 011.061 0l1.06 1.061a.75.75 0 01-1.06 1.06l-1.06-1.06a.75.75 0 010-1.06zm9.193 9.193a.75.75 0 011.06 0l1.061 1.06a.75.75 0 01-1.06 1.061l-1.061-1.06a.75.75 0 010-1.061zM16 8a.75.75 0 01-.75.75h-1.5a.75.75 0 010-1.5h1.5A.75.75 0 0116 8zM3 8a.75.75 0 01-.75.75H.75a.75.75 0 010-1.5h1.5A.75.75 0 013 8zm10.657-5.657a.75.75 0 010 1.061l-1.061 1.06a.75.75 0 11-1.06-1.06l1.06-1.06a.75.75 0 011.06 0zm-9.193 9.193a.75.75 0 010 1.06l-1.06 1.061a.75.75 0 11-1.061-1.06l1.06-1.061a.75.75 0 011.061 0z">
</path>
</svg>
</button> -->
</div>
<!-- <input
class="button button_theme_search button_size_search i-bem enjoy-css-submit"
tabindex="-1" role="button" type="button" value=" Java Search " id="submit"
onclick="baidu();" target="_blank"/> -->
<!-- <a target="_blank" href="https://kaifa.baidu.com/home">
<div class="item">
<div class="logo"><img src="img/山竹.png" alt=""> 开发者搜索Beta</div>
</div>
</a>
<a target="_blank" href="https://www.programcreek.com/java-api-examples/index.php">
<div class="item">
<div class="logo"><img src="img/冰淇淋.png" alt=" "> java Search</div>
</div>
</a>
<a target="_blank" href="https://searchcode.com/">
<div class="item">
<div class="logo"><img src="img/水果杯2.png" alt=""> SearchCode</div>
</div> -->
</div>
<!-- 英文阅读网站-->
<!-- <div class="a-line a-line__mfooter" role="contentinfo" data-bem="{}">
<a class="a-home-link a-mfooter__item a-mfooter__link" href="https://www.quora.com/"
data-statlog="foot.company" data-statlog-showed="1">quora</a>
<a class="a-home-link a-mfooter__item a-mfooter__link" href="https://learn-anything.xyz/"
data-statlog="foot.feedback" data-statlog-showed="1">LearnAnything</a>
<a class="a-home-link a-mfooter__item a-mfooter__link" href="https://devrant.com/"
data-statlog="foot.company" data-statlog-showed="1">devrant</a>
<a class="a-home-link a-mfooter__item a-mfooter__link" href="https://arstechnica.com/"
data-statlog="foot.company" data-statlog-showed="1">arstechnica</a>
<a class="a-home-link a-mfooter__item a-mfooter__link" href="https://hndigest.com/"
data-statlog="foot.company" data-statlog-showed="1">HackerNewsDigest</a>
<a class="a-home-link a-mfooter__item a-mfooter__link" href="https://technews.acm.org/"
data-statlog="foot.company" data-statlog-showed="1">technews</a>
<a class="a-home-link a-mfooter__item a-mfooter__link" href="https://lobste.rs/"
data-statlog="foot.company" data-statlog-showed="1">lobste</a>
<a class="a-home-link a-mfooter__item a-mfooter__link" href="https://www.gsmarena.com/"
data-statlog="foot.company" data-statlog-showed="1">gsmarena</a>
<a class="a-home-link a-mfooter__item a-mfooter__link" href="https://www.producthunt.com/m/"
data-statlog="foot.company" data-statlog-showed="1">producthunt</a>
<a class="a-home-link a-mfooter__item a-mfooter__link" href="https://alternativeto.net/"
data-statlog="foot.company" data-statlog-showed="1">alternativeto</a>
<a class="a-home-link a-mfooter__item a-mfooter__link" href="./english.html"
data-statlog="foot.company" data-statlog-showed="1">more</a>
</div> -->
<div class='cc'>
<a id="wearher_font" class="wearher_font" target="_blank"><strong>Linux(C/C++): </strong></a>
<!-- -->
<u><a id="wearher_font" class="" href="./linux.html" target="_blank"
style='color:#ce3b6c'><strong>Linux大全</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce3b6c'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://buildroot.org/" target="_blank"
style='color:#ce823b'><strong>buildroot</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://www.debian.org/" target="_blank"
style='color:#ce823b'><strong>debian</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://www.kernel.org/" target="_blank"
style='color:#ce823b'><strong>Linux kernel</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://en.cppreference.com/w/" target="_blank"
style='color:#ce823b'><strong>◉cppreference</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://www.tutorialspoint.com/index.htm" target="_blank"
style='color:#ce823b'><strong>◉tutorialspoint</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href=" https://cplusplus.com/" target="_blank"
style='color:#ce823b'><strong>◉cplusplus</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
</div>
<div class='developer'>
<a id="wearher_font" class="wearher_font" target="_blank">Android(Java): </a>
<!-- <u><a id="wearher_font" class="" href="./android_boot.html" target="_blank"
style='color:#ce3b6c'><strong>Android Boot</strong></a></u> -->
<u><a id="wearher_font" class="" href="https://f-droid.org/" target="_blank"
style='color:#ce823b'><strong>f-droid</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://www.simplemobiletools.com/" target="_blank"
style='color:#ce823b'><strong>simplemobiletools</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://termux.dev/en/" target="_blank"
style='color:#ce823b'><strong>Termux</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://square.github.io/" target="_blank"
style='color:#ce823b'><strong>square</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://developer.android.google.cn/guide" target="_blank"
style='color:#ce823b'><strong>Developer</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://source.android.google.cn/" target="_blank"
style='color:#ce823b'><strong>androidSource</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="http://androidxref.com/" target="_blank"
style='color:#ce823b'><strong>androidxref</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="http://gityuan.com/" target="_blank"
style='color:#ce823b'><strong>gityuan</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://androidperformance.com/" target="_blank"
style='color:#ce823b'><strong>TechAndPerf</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://skytoby.github.io/" target="_blank"
style='color:#ce823b'><strong>skytoby</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="http://liuwangshu.cn/" target="_blank"
style='color:#ce823b'><strong>BATcoder</strong></a></u>
</div>
<!-- <div class='rtos'>
<a id="wearher_font" class="wearher_font" target="_blank">RTOS实时: </a>
<u><a id="wearher_font" class="" href="https://github.com/features/copilot" target="_blank"
style='color:#ce823b'><strong>μClinuxt</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class="" href="https://colab.google/" target="_blank"
style='color:#ce823b'><strong>μC/OS-IIb</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class="" href="https://openai.com/" target="_blank"
style='color:#ce823b'><strong>eCos</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://developer.android.google.cn/studio/preview/studio-bot/" target="_blank"
style='color:#ce823b'><strong>FreeRTOS</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class="" href="https://marketplace.visualstudio.com/vscode" target="_blank"
style='color:#ce823b'><strong>mbed OS</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class="" href="https://github.com/features/copilot" target="_blank"
style='color:#ce823b'><strong>RTX</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class="" href="https://colab.google/" target="_blank"
style='color:#ce823b'><strong>VxWorks</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class="" href="https://openai.com/" target="_blank"
style='color:#ce823b'><strong>QNX</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://developer.android.google.cn/studio/preview/studio-bot/" target="_blank"
style='color:#ce823b'><strong>NuttX</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://developer.android.google.cn/studio/preview/studio-bot/" target="_blank"
style='color:#ce823b'><strong>djyos</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class="" href="https://marketplace.visualstudio.com/vscode" target="_blank"
style='color:#ce823b'><strong>Alios Things</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class="" href="https://github.com/features/copilot" target="_blank"
style='color:#ce823b'><strong>Huawei LiteOS</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class="" href="https://colab.google/" target="_blank"
style='color:#ce823b'><strong>RT-Thread</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
<u><a id="wearher_font" class="" href="https://openai.com/" target="_blank"
style='color:#ce823b'><strong>SylixOS</strong></a></u>
<a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a>
</div> -->
<div class='ai'>
<a id="wearher_font" class="wearher_font" target="_blank">AI/AIGC: </a>
<!--
<u><a id="wearher_font" class="" href="./ai.html" target="_blank"
style='color:#ce3b6c'><strong>AI大全</strong></a></u>
-->
<!-- <a id="wearher_font" target="_blank" style='color:#ce3b6c'><strong> </strong></a> -->
<!-- -->
<u><a id="wearher_font" class="" href="https://github.com/features/copilot" target="_blank"
style='color:#ce823b'><strong>Github copilot</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://colab.google/" target="_blank"
style='color:#ce823b'><strong>google colab</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://openai.com/" target="_blank"
style='color:#ce823b'><strong>Chat GPT</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class=""
href="https://developer.android.google.cn/studio/preview/studio-bot/" target="_blank"
style='color:#ce823b'><strong>Studio bot</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://marketplace.visualstudio.com/vscode" target="_blank"
style='color:#ce823b'><strong>VS Code(Extensions)</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
</div>
<div class='blog'>
<a id="wearher_font" class="wearher_font" target="_blank">blog博文: </a>
<u><a id="wearher_font" class="" href="https://toutiao.io/" target="_blank"
style='color:#ce823b'><strong>开发者头条</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://juejin.cn/" target="_blank"
style='color:#ce823b'><strong>稀土掘金</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://www.zhihu.com/" target="_blank"
style='color:#ce823b'><strong>知乎</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://www.csdn.net/" target="_blank"
style='color:#ce823b'><strong>CSDN</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://Segmentfault.com/" target="_blank"
style='color:#ce823b'><strong>segmentfault</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://macshuo.com/" target="_blank"
style='color:#ce823b'><strong>MacTalk</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://coolshell.cn/" target="_blank"
style='color:#ce823b'><strong>coolshell</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://readhub.cn/" target="_blank"
style='color:#ce823b'><strong>readhub</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://www.freebuf.com/" target="_blank"
style='color:#ce823b'><strong>freebuf</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://www.redhat.com/en/command-line-heroes"
target="_blank" style='color:#ce823b'><strong>代码英雄(Redhat播客)</strong></a></u>
<!-- <a id="wearher_font" target="_blank" style='color:#ce823b'><strong> </strong></a> -->
<u><a id="wearher_font" class="" href="https://stackoverflow.blog/podcast/" target="_blank"
style='color:#ce823b'><strong>StackOverflow(播客)</strong></a></u>
</div>
<!-- <div class='github'>
<a id="wearher_font" class="wearher_font" target="_blank">AI工具:</a>
<u><a id="wearher_font" class=""
href="https://developer.android.google.cn/guide" target="_blank" style='color:#ce823b' ><strong>开发者指南</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong>f-droid</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://square.github.io/" target="_blank" style='color:#ce823b' ><strong>square</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://www.simplemobiletools.com/" target="_blank" style='color:#ce823b' ><strong>simplemobiletools</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://termux.dev/en/" target="_blank" style='color:#ce823b' ><strong>Termux</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://source.android.google.cn/" target="_blank" style='color:#ce823b' ><strong>Source</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="http://androidxref.com/" target="_blank" style='color:#ce823b' ><strong>androidxref</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://www.kernel.org/" target="_blank" style='color:#ce823b' ><strong>Linux内核</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="http://gityuan.com/" target="_blank" style='color:#ce823b' ><strong>gityuan</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://androidperformance.com/" target="_blank" style='color:#ce823b' ><strong>TechAndPerf</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="https://skytoby.github.io/" target="_blank" style='color:#ce823b' ><strong>skytoby</strong></a></u>
<a id="wearher_font" class="" href="https://f-droid.org/" target="_blank" style='color:#ce823b' ><strong> </strong></a>
<u><a id="wearher_font" class=""
href="http://liuwangshu.cn/" target="_blank" style='color:#ce823b' ><strong>BATcoder</strong></a></u>
</div> -->
<!-- 收藏网站 -->
<div class="container" style="font-family:item_style;">
<!-- 第一列 -->
<div id="sub_one">
<!-- <a target="_blank" href="./collect.html">
<div class="item">
<div class="logo" letter-spacing:4px><img src="img/leon.png" alt="">开发工具
</div>
</div>
</a> -->
<!-- <a target="_blank" href="https://cn.bing.com/">
<div class="item">
<div class="logo" letter-spacing:4px><img src="img/search.png" alt="">Bing</div>
</div>
</a> -->
<!-- <a target="_blank" href="https://www.google.com/">
<div class="item">
<div class="logo"><img src="img/可口可乐汽水.png" alt=""> google</div>
</div>
</a> -->
<a target="_blank" href="https://github.com/">
<div class="item">
<div class="logo"><img src="img/橘子汽水.png" alt=" "> github</div>
</div>
</a>
<a target="_blank" href="https://github.com/trending">
<div class="item">
<div class="logo"><img src="img/奶茶.png" alt=" "> github trending</div>
</div>
</a>
<!-- <a target="_blank" href="https://cs.github.com/">
<div class="item">
<div class="logo"><img src="img/12-咖啡.png" alt=" "> gitHub Search</div>
</div>
</a> -->
<a target="_blank" href="https://octoverse.github.com/">
<div class="item">
<div class="logo"><img src="img/饮料2.png" alt=" "> github 报告</div>
</div>
</a>
<a target="_blank" href="https://github.com/features/copilot">
<div class="item">
<div class="logo"><img src="img/水果卷.png" alt=""> github copilot</div>
</div>
</a>
<!-- <a target="_blank" href="https://github.com/readme/podcast">
<div class="item">
<div class="logo"><img src="img/冰淇淋.png" alt=""> github 播客</div>
</div>
</a> -->
<!-- <a target="_blank" href="https://sourceforge.net/">
<div class="item">
<div class="logo"><img src="img/no_ladder.png" alt=""> sourceforge</div>
</div>
</a> -->
<!-- <a target="_blank" href="https://yandex.com/">
<div class="item">
<div class="logo" letter-spacing:4px><img src="img/search.png" alt="">yandex|搜索
</div>
</div>
</a> -->
<!-- <a target="_blank" href="https://kaifa.baidu.com/home">
<div class="item">
<div class="logo"><img src="img/山竹.png" alt=""> 开发者搜索Beta</div>
</div>
</a>
<a target="_blank" href="https://www.programcreek.com/java-api-examples/index.php">
<div class="item">
<div class="logo"><img src="img/冰淇淋.png" alt=" "> java Search</div>
</div>
</a>
<a target="_blank" href="https://searchcode.com/">
<div class="item">
<div class="logo"><img src="img/水果杯2.png" alt=""> SearchCode</div>
</div>
</a> -->
<!-- <a target="_blank" href="https://www.boxuegu.com/">
<div class="item">
<div class="logo" letter-spacing:4px><img src="img/search.png" alt="">博学谷
</div>
</div>
</a> -->
<a target="_blank" href="https://so.csdn.net/">
<div class="item">
<div class="logo"><img src="img/柠檬.png" alt=""> so.csdn</div>
</div>
</a>
<a target="_blank" href=" https://www.acwing.com/">
<div class="item">
<div class="logo" letter-spacing:4px><img src="img/山竹.png" alt="">acwing
</div>
</div>
</a>
<a target="_blank" href="https://regex101.com/">
<div class="item">
<div class="logo"><img src="img/冰淇淋.png" alt=" "> 正则表达式</div>
</div>
</a>
<a target="_blank" href="https://www.linuxcool.com/">
<div class="item">
<div class="logo"><img src="img/水果杯2.png" alt=""> Linux命令大全</div>
</div>
</a>
<a target="_blank" href="https://quickref.cn/">
<div class="item">
<div class="logo"><img src="img/雪顶.png" alt=" "> 速查表</div>
</div>
</a>
<a target="_blank" href="https://python123.io/">
<div class="item">
<div class="logo"><img src="img/开心果.png" alt=""> python123</div>
</div>
</a>
<a target="_blank" href="https://news.ycombinator.com/news">
<div class="item">
<div class="logo"><img src="img/饼干-Biscuit.png" alt=""> Hacker News</div>
</div>
</a>
<!-- <a target="_blank" href="https://toutiao.io/">
<div class="item">
<div class="logo"><img src="img/无花果.png" alt=" "> 开发者头条</div>
</div>
</a> -->
</div>
<!-- 第二列 -->
<div id="sub_two">
<!-- <a target="_blank" href="http://stackoverflow.com/">
<div class="item">
<div class="logo"><img src="img/圣诞-饼干.png" alt="">stackoverflow</div>
</div>
</a> -->
<a target="_blank" href="https://mirrors.tuna.tsinghua.edu.cn/">
<div class="item">
<div class="logo"><img src="img/niu.png" alt=""> 清华镜像站</div>
</div>
</a>
<a target="_blank" href="https://mirrors.ustc.edu.cn/">
<div class="item">
<div class="logo"><img src="img/huli.png" alt=""> USTC镜像站</div>
</div>
</a>
<a target="_blank" href="https://www.infoq.cn/">
<div class="item">
<div class="logo"><img src="img/饼干icon.png" alt=""> infoq.com</div>
</div>
</a>
<a target="_blank" href="https://www.infoworld.com/category/application-development/">
<div class="item">
<div class="logo"><img src="img/蛋糕.png" alt=""> infoworld</div>
</div>
</a>
<a target="_blank" href="https://www.devjobsscanner.com/">
<div class="item">
<div class="logo"><img src="img/蛋糕2.png" alt=" "> devjobsscanner</div>
</div>
</a>
<a target="_blank" href="https://cloud.tencent.com/">
<div class="item">
<div class="logo"><img src="img/饮料.png" alt=""> 腾讯云</div>
</div>
</a>
<a target="_blank" href="https://cn.aliyun.com/">
<div class="item">
<div class="logo"><img src="img/饮料杯.png" alt=""> 阿里云</div>
<div></div>
</div>
</a>
<!-- <a target="_blank" href="https://www.csdn.net/">
<div class="item">
<div class="logo"><img src="img/冰棍.png" alt=" "> CSDN</div>
</div>
</a> -->
<a target="_blank" href="https://www.diagrams.net/">
<div class="item">
<div class="logo"><img src="img/美食11.png" alt=""> draw.io</div>
</div>
</a>
<a target="_blank" href="https://www.processon.com/">
<div class="item">
<div class="logo"><img src="img/梅花.png" alt=""> processon</div>
</div>
</a>
<!-- <a target="_blank" href="https://waifu2x.io/">
<div class="item">
<div class="logo"><img src="img/坚果.png" alt=" "> 图片压缩</div>
</div>
</a>
<a target="_blank" href="https://squoosh.app/">
<div class="item">
<div class="logo"><img src="img/圣诞-饼干.png" alt="">squoosh</div>
</div>
</a> -->
<a target="_blank" href="https://roadmap.sh/roadmaps">
<div class="item">
<div class="logo"><img src="img/坚果.png" alt=" "> Roadmap</div>
</div>
</a>
<a target="_blank" href="https://devhints.io/">
<div class="item">
<div class="logo"><img src="img/圣诞-饼干.png" alt=""> DevHints</div>
</div>
</a>
</div>
<!-- 第三列 -->
<div id="sub_three">
<!-- <a target="_blank" href="https://wantwords.thunlp.org/home/">
<div class="item">
<div class="logo"><img src="img/no_ladder.png" alt="">万词王</div>
</div>
</a> -->
<!-- <a target="_blank" href="https://unbug.github.io/codelf/">
<div class="item">
<div class="logo"><img src="img/no_ladder.png" alt=""> 变量命名AI神器</div>
</div>
</a> -->
<!-- <a target="_blank" href="https://bitbucket.org/">
<div class="item">
<div class="logo"><img src="img/code.png" alt="">bitbucket|托管</div>
</div>
</a> -->
<a target="_blank" href="https://git-scm.com/">
<div class="item">