-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
989 lines (413 loc) · 28.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
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
<!DOCTYPE HTML>
<html lang="zh-hans" >
<head>
<meta charset="UTF-8">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>首页 · 魏华祎的个人网站</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="">
<meta name="generator" content="GitBook 3.2.3">
<meta name="author" content="Wei, Huayi">
<link rel="stylesheet" href="gitbook/style.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-prism/prism-tomorrow.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-image-captions/image-captions.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-fontsettings/website.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-expandable-chapters-small/expandable-chapters-small.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-search/search.css">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="gitbook/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="gitbook/images/favicon.ico" type="image/x-icon">
<link rel="next" href="me.html" />
</head>
<body>
<div class="book">
<div class="book-summary">
<div id="book-search-input" role="search">
<input type="text" placeholder="输入并搜索" />
</div>
<nav role="navigation">
<ul class="summary">
<li class="chapter active" data-level="1.1" data-path="./">
<a href="./">
首页
</a>
</li>
<li class="chapter " data-level="1.2" data-path="me.html">
<a href="me.html">
个人简介
</a>
</li>
<li class="chapter " data-level="1.3" data-path="life/">
<a href="life/">
工作与家庭
</a>
<ul class="articles">
<li class="chapter " data-level="1.3.1" data-path="life/key_work.html">
<a href="life/key_work.html">
什么是我的核心工作?
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.4" data-path="code/">
<a href="code/">
编程
</a>
<ul class="articles">
<li class="chapter " data-level="1.4.1" data-path="code/python/">
<a href="code/python/">
python
</a>
<ul class="articles">
<li class="chapter " data-level="1.4.1.1" data-path="code/python/python_env.html">
<a href="code/python/python_env.html">
Python 环境搭建
</a>
</li>
<li class="chapter " data-level="1.4.1.2" data-path="code/python/python_basic.html">
<a href="code/python/python_basic.html">
Python 基础
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.4.2" data-path="code/matlab/">
<a href="code/matlab/">
matlab
</a>
<ul class="articles">
<li class="chapter " data-level="1.4.2.1" data-path="code/matlab/matlab_engine.html">
<a href="code/matlab/matlab_engine.html">
Matlab engine for Python
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="1.5" data-path="fly/">
<a href="fly/">
Fealpy
</a>
<ul class="articles">
<li class="chapter " data-level="1.5.1" data-path="fly/class2020.html">
<a href="fly/class2020.html">
Fealpy 2020 暑期课程
</a>
</li>
<li class="chapter " data-level="1.5.2" data-path="fly/fealpy.html">
<a href="fly/fealpy.html">
Fealpy 帮助与安装
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.6" data-path="tools/">
<a href="tools/">
效率工具
</a>
<ul class="articles">
<li class="chapter " data-level="1.6.1" data-path="tools/operator_system.html">
<a href="tools/operator_system.html">
操作系统
</a>
</li>
<li class="chapter " data-level="1.6.2" data-path="tools/hardware.html">
<a href="tools/hardware.html">
硬件
</a>
</li>
<li class="chapter " data-level="1.6.3" data-path="tools/vim.html">
<a href="tools/vim.html">
VIM
</a>
</li>
<li class="chapter " data-level="1.6.4" data-path="tools/vscode.html">
<a href="tools/vscode.html">
VSCode
</a>
</li>
<li class="chapter " data-level="1.6.5" data-path="tools/unix.html">
<a href="tools/unix.html">
Unix
</a>
</li>
<li class="chapter " data-level="1.6.6" data-path="tools/linux.html">
<a href="tools/linux.html">
Linux
</a>
</li>
<li class="chapter " data-level="1.6.7" data-path="tools/grep.html">
<a href="tools/grep.html">
grep
</a>
</li>
<li class="chapter " data-level="1.6.8" data-path="tools/linux_cli.html">
<a href="tools/linux_cli.html">
Linux 命令行
</a>
</li>
<li class="chapter " data-level="1.6.9" data-path="tools/ubuntu.html">
<a href="tools/ubuntu.html">
Ubuntu
</a>
</li>
<li class="chapter " data-level="1.6.10" data-path="tools/gdb.html">
<a href="tools/gdb.html">
gdb
</a>
</li>
<li class="chapter " data-level="1.6.11" data-path="tools/wubi.html">
<a href="tools/wubi.html">
fctix 和五笔输入法
</a>
</li>
<li class="chapter " data-level="1.6.12" data-path="tools/git.html">
<a href="tools/git.html">
Git 版本控制
</a>
</li>
<li class="chapter " data-level="1.6.13" data-path="tools/gitbook.html">
<a href="tools/gitbook.html">
Gitbook
</a>
</li>
<li class="chapter " data-level="1.6.14" data-path="tools/make.html">
<a href="tools/make.html">
Make
</a>
</li>
<li class="chapter " data-level="1.6.15" data-path="tools/cmake.html">
<a href="tools/cmake.html">
CMake
</a>
</li>
<li class="chapter " data-level="1.6.16" data-path="tools/latex.html">
<a href="tools/latex.html">
latex
</a>
</li>
<li class="chapter " data-level="1.6.17" data-path="tools/markdown.html">
<a href="tools/markdown.html">
Markdown
</a>
</li>
<li class="chapter " data-level="1.6.18" data-path="tools/github.html">
<a href="tools/github.html">
代码托管
</a>
</li>
<li class="chapter " data-level="1.6.19" data-path="tools/zotero.html">
<a href="tools/zotero.html">
知识管理工具 Zotero
</a>
</li>
<li class="chapter " data-level="1.6.20" data-path="tools/windows.html">
<a href="tools/windows.html">
Windows
</a>
</li>
<li class="chapter " data-level="1.6.21" data-path="tools/zoom.html">
<a href="tools/zoom.html">
Zoom
</a>
</li>
<li class="chapter " data-level="1.6.22" data-path="tools/howdoi.html">
<a href="tools/howdoi.html">
howdoi
</a>
</li>
<li class="chapter " data-level="1.6.23" data-path="tools/docker.html">
<a href="tools/docker.html">
Docker
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.7" data-path="scsoft/">
<a href="scsoft/">
专业软件工具
</a>
<ul class="articles">
<li class="chapter " data-level="1.7.1" data-path="scsoft/taichi.html">
<a href="scsoft/taichi.html">
Taichi
</a>
</li>
<li class="chapter " data-level="1.7.2" data-path="scsoft/tetgen.html">
<a href="scsoft/tetgen.html">
TetGen
</a>
</li>
<li class="chapter " data-level="1.7.3" data-path="scsoft/vtk.html">
<a href="scsoft/vtk.html">
VTK
</a>
</li>
<li class="chapter " data-level="1.7.4" data-path="scsoft/paraview.html">
<a href="scsoft/paraview.html">
Paraview
</a>
</li>
<li class="chapter " data-level="1.7.5" data-path="scsoft/cgal.html">
<a href="scsoft/cgal.html">
CGAL
</a>
</li>
<li class="chapter " data-level="1.7.6" data-path="scsoft/moab.html">
<a href="scsoft/moab.html">
MOAB
</a>
</li>
<li class="chapter " data-level="1.7.7" data-path="scsoft/cgm.html">
<a href="scsoft/cgm.html">
CGM
</a>
</li>
<li class="chapter " data-level="1.7.8" data-path="scsoft/oce.html">
<a href="scsoft/oce.html">
OCE
</a>
</li>
<li class="chapter " data-level="1.7.9" data-path="scsoft/pyqt5.html">
<a href="scsoft/pyqt5.html">
PyQT5
</a>
</li>
<li class="chapter " data-level="1.7.10" data-path="scsoft/gmsh.html">
<a href="scsoft/gmsh.html">
Gmsh
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.8" data-path="questions/">
<a href="questions/">
提问与回答
</a>
<ul class="articles">
<li class="chapter " data-level="1.8.1" data-path="questions/stackoverflow.html">
<a href="questions/stackoverflow.html">
Stackoverflow
</a>
</li>
</ul>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
本书使用 GitBook 发布
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<!-- Title -->
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i>
<a href="." >首页</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<div id="book-search-results">
<div class="search-noresults">
<section class="normal markdown-section">
<h1 id="魏华祎的个人网站">魏华祎的个人网站</h1>
<blockquote>
<p>现在的世界变化太快,每个个体都需要不断学习成长,才能从容面对不确定的未来世界。
祎哥立志终身做一名学生,不断学习;做一名老师,不断分享;做一名工程师,不断去尝试解决实际问题。</p>
</blockquote>
<p>本网站是用 Gitbook 搭建在 Github 上的,主要放一些我想和大家分享的东西。比如通过
下面的链接你可以了解我的基本情况。</p>
<ul>
<li><a href="me.html">个人简介</a></li>
</ul>
<p>本网站每一个页面基本都可以进行评论,该功能基于
<a href="https://github.com/imsun/gitment" target="_blank">gitment</a> 实现。 但需要首先注册一个 Github 帐
号,并用该帐号登录一下才能进行评论。在常用设备上,一般只需要登录一次即可。评论支
持 Markdown 标记语言,但遗憾的是 Github 的评论不支持数学公式。</p>
<p>另外,我还在网站中集成了几个 <a href="https://gitter.im" target="_blank">Gitter</a> 的聊天室, 建议使用
Github 帐号加入聊天室。下面的两个聊天室中,只有 <a href="https://gitter.im/weihuayi/iteam" target="_blank">iteam
</a> 聊天室是需要许可才能加入的,fealpy 是开放的。</p>
<ul>
<li><a href="https://gitter.im/weihuayi/iteam" target="_blank">iteam</a></li>
<li><a href="https://gitter.im/weihuayi/fealpy" target="_blank">fealpy</a></li>
<li><a href="https://gitter.im/weihuayi/whysite" target="_blank">whysite</a></li>
</ul>
<p>在本页面右下角有一个 <code>OPEN CHAT</code> 的按钮,点击即可进入<a href="https://gitter.im/weihuayi/whysite" target="_blank">whysite
</a> 聊天室, 在这个聊天室可以就本网站有关问题
进行讨论。注意第一次使用,Gitter 会要求登录,建议选择用 Github 帐户登录。Gitter
提供的聊天室也支持 Markdown 语言,特别是支持数学公式的输入。</p>
<p>如果有意读我的研究生,请进入 <a href="postgrad/index.html">研究生招生与培养</a>, 了解我关
于研究生招生与培养的相关要求、想法和建议。</p>
<p>更多详细内容,请点击页面右上角的目录按钮(四条短横线),右侧会出现本网站的导航
目录。</p>
<p><div id="container"></div></p>
<p><link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/theme-next/theme-next-gitment@1/default.css"></p>
<script src="https://cdn.jsdelivr.net/gh/theme-next/theme-next-gitment@1/gitment.browser.js"></script>
<script>
var gitment = new Gitment({
id: 'window.location.pathname', // 可选。默认为 location.href
owner: 'weihuayi',
repo: 'weihuayi.github.io',
oauth: {
client_id: '7dd9c9fc3ac45352b55b',
client_secret: '4e6f74b82a7ac18671c7e9e0d17a1ceb9359a5ad',
},
})
gitment.render('container')
</script>
<script>
((window.gitter = {}).chat = {}).options = {
room: 'weihuayi/whysite'
};
</script>
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer></script>
</section>
</div>
<div class="search-results">
<div class="has-results">
<h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1>
<ul class="search-results-list"></ul>
</div>
<div class="no-results">
<h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<a href="me.html" class="navigation navigation-next navigation-unique" aria-label="Next page: 个人简介">
<i class="fa fa-angle-right"></i>
</a>
</div>
<script>
var gitbook = gitbook || [];
gitbook.push(function() {
gitbook.page.hasChanged({"page":{"title":"首页","level":"1.1","depth":1,"next":{"title":"个人简介","level":"1.2","depth":1,"path":"me.md","ref":"./me.md","articles":[]},"dir":"ltr"},"config":{"plugins":["-highlight","prism","prism-themes","mathjax","image-captions","fontsettings","expandable-chapters-small","simple-page-toc","copy-code-button","ga"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"prism":{"css":["prismjs/themes/prism-tomorrow.css"]},"simple-page-toc":{"maxDepth":3,"skipFirstH1":true},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"family":"sans","size":2,"theme":"white"},"fontSettings":{"size":1},"prism-themes":{},"mathjax":{"forceSVG":false,"version":"2.6-latest"},"expandable-chapters-small":{},"copy-code-button":{},"ga":{"configuration":"auto","token":"UA-45014540-2"},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"image-captions":{"variable_name":"_pictures"}},"theme":"default","author":"Wei, Huayi","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{"_pictures":[{"backlink":"./code/python/python_env.html#fig1.4.1.1.1","level":"1.4.1.1","list_caption":"Figure: 命令行终端","alt":"命令行终端","nro":1,"url":"./figures/shell.png","index":1,"caption_template":"Figure: _CAPTION_","label":"命令行终端","attributes":{},"skip":false,"key":"1.4.1.1.1"},{"backlink":"./tools/linux.html#fig1.6.6.1","level":"1.6.6","list_caption":"Figure: 各种操作系统","alt":"各种操作系统","nro":2,"url":"./figures/topsys.png","index":1,"caption_template":"Figure: _CAPTION_","label":"各种操作系统","attributes":{},"skip":false,"key":"1.6.6.1"},{"backlink":"./tools/linux.html#fig1.6.6.2","level":"1.6.6","list_caption":"Figure: 操作系统的历史","alt":"操作系统的历史","nro":3,"url":"./figures/Unix_history.svg","index":2,"caption_template":"Figure: _CAPTION_","label":"操作系统的历史","attributes":{},"skip":false,"key":"1.6.6.2"}]},"title":"魏华祎的个人网站","language":"zh-hans","gitbook":"3.2.3","description":"生活工作科研中的点滴记录"},"file":{"path":"README.md","mtime":"2020-06-27T07:21:20.264Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2023-02-10T02:42:49.480Z"},"basePath":".","book":{"language":""}});
});
</script>
</div>
<script src="gitbook/gitbook.js"></script>
<script src="gitbook/theme.js"></script>
<script src="https://cdn.mathjax.org/mathjax/2.6-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script src="gitbook/gitbook-plugin-mathjax/plugin.js"></script>
<script src="gitbook/gitbook-plugin-fontsettings/fontsettings.js"></script>
<script src="gitbook/gitbook-plugin-expandable-chapters-small/expandable-chapters-small.js"></script>
<script src="gitbook/gitbook-plugin-copy-code-button/toggle.js"></script>
<script src="gitbook/gitbook-plugin-ga/plugin.js"></script>
<script src="gitbook/gitbook-plugin-search/search-engine.js"></script>
<script src="gitbook/gitbook-plugin-search/search.js"></script>
<script src="gitbook/gitbook-plugin-lunr/lunr.min.js"></script>
<script src="gitbook/gitbook-plugin-lunr/search-lunr.js"></script>
<script src="gitbook/gitbook-plugin-sharing/buttons.js"></script>
</body>
</html>