From a16ded7c48dbbbed45d700342af3108f7019070b Mon Sep 17 00:00:00 2001 From: 45gfg9 <45gfg9@45gfg9.net> Date: Wed, 18 Oct 2023 00:31:15 +0800 Subject: [PATCH] docs: build lec1 [deploy] --- slides/site/2023-fall-ckc/index.html | 5 +- .../site/2023-fall-ckc/lec1/assets/custom.css | 10 +- slides/site/2023-fall-ckc/lec1/index.html | 654 +++++++++++++----- .../site/2023-fall-ckc/lec1/lec0/makefile.png | Bin 0 -> 302323 bytes .../lec1/lec1/VT100-terminal.png | Bin 0 -> 85307 bytes .../2023-fall-ckc/lec1/lec1/apple-dos.png | Bin 0 -> 10048 bytes .../2023-fall-ckc/lec1/lec1/apple-lisa.jpg | Bin 0 -> 68482 bytes .../lec1/linus-torvald-first-linux-email.png | Bin 0 -> 38309 bytes slides/src/home.md | 4 +- 9 files changed, 484 insertions(+), 189 deletions(-) create mode 100644 slides/site/2023-fall-ckc/lec1/lec0/makefile.png create mode 100644 slides/site/2023-fall-ckc/lec1/lec1/VT100-terminal.png create mode 100644 slides/site/2023-fall-ckc/lec1/lec1/apple-dos.png create mode 100644 slides/site/2023-fall-ckc/lec1/lec1/apple-lisa.jpg create mode 100644 slides/site/2023-fall-ckc/lec1/lec1/linus-torvald-first-linux-email.png diff --git a/slides/site/2023-fall-ckc/index.html b/slides/site/2023-fall-ckc/index.html index 6b761ea..df8096e 100644 --- a/slides/site/2023-fall-ckc/index.html +++ b/slides/site/2023-fall-ckc/index.html @@ -52,7 +52,7 @@ |课程|日期|讲师|幻灯片|回放| |:--|:--|:--|:--|:--| |lec0:前瞻:通往 Pro 的第一步|10.14(秋四周)|TonyCrane|[lec0](lec0/)|| -|lec1:Shell 基础及 CLI 工具推荐|10.22(秋五周)|45gfg9||| +|lec1:Shell 基础及 CLI 工具推荐|10.22(秋五周)|45gfg9|[lec1](lec1/)|| |lec2:Git/GitHub 基础介绍|11.05(秋七周)|TonyCrane||| |lec3:Markdown 语法及应用|11.19(冬一周)|TonyCrane||| |lec4:LaTeX 排版简要介绍|12.03(冬三周)|45gfg9||| @@ -61,7 +61,8 @@ -
*时间均为暂定
+*时间均为暂定
+ diff --git a/slides/site/2023-fall-ckc/lec1/assets/custom.css b/slides/site/2023-fall-ckc/lec1/assets/custom.css index 29efa3c..e00274e 100644 --- a/slides/site/2023-fall-ckc/lec1/assets/custom.css +++ b/slides/site/2023-fall-ckc/lec1/assets/custom.css @@ -11,11 +11,11 @@ .reveal .slide-number { font-size: 26px; border-radius: 5px; - background-color: rgba(0, 0, 0, .3); + background-color: rgba(0, 0, 0, .4); } .reveal .slides { - border: 1.5px #ddd solid; + border: 1.5px rgba(0, 0, 0, .25) solid; border-radius: 7px; text-align: left; font-weight: 300; @@ -270,4 +270,10 @@ html.print-pdf .reveal pre code { } .slide-menu-wrapper .slide-menu.slide-menu--wide { width: 450px !important; +} + +.reveal blockquote { + width: 80%; + font-style: normal; + background-color: #eef4ff; } \ No newline at end of file diff --git a/slides/site/2023-fall-ckc/lec1/index.html b/slides/site/2023-fall-ckc/lec1/index.html index 57f18ef..d4f6d46 100644 --- a/slides/site/2023-fall-ckc/lec1/index.html +++ b/slides/site/2023-fall-ckc/lec1/index.html @@ -26,8 +26,10 @@ ## 本节内容 -- 清楚认识什么是 Shell,什么是 Terminal -- 学会 Shell 基础命令,包括目录操作、文本编辑、重定向、管道等 +- 了解 Linux +- 区分 Shell 与 Terminal +- 掌握 Shell 基础命令,包括文件与目录操作 +- 了解 Shell 的进阶概念:重定向、管道等 - 了解 vim 编辑器的基本用法,以及如何自行学习 - 了解 GNU make 的基本用法,以及如何自行学习 - 了解一些常用的命令行工具 @@ -38,6 +40,148 @@