摘要: ## 五十音图 | | a | i | u | e | o | | | | | | | | | a | あ ア | い イ | う ウ | え エ | お オ | | k | か カ | き キ | く ク | け ケ | こ コ | | s | さ サ | し シ | す ス | せ セ | そ  阅读全文
posted @ 2023-08-01 22:01 rustling 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and effici 阅读全文
posted @ 2023-07-01 15:55 rustling 阅读(16) 评论(0) 推荐(0) 编辑
摘要: vim 是 Linux 系统上一款常用的文本编辑器 编辑文件: vim filename 或 vi filename 只读模式查看文件: view filename 常用命令 # 1.进入输入状态的命令 a #从光标所在位置后追加文字 A #从光标所在行最后追加文字 i #从光标所在位置前面插入文字 阅读全文
posted @ 2023-06-15 22:26 rustling 阅读(59) 评论(1) 推荐(0) 编辑
摘要: JavaScript 是属于 Web 的编程语言,对网页行为进行编程。 参考教程: 1. 2. JavaScript 能够改变 HTML 内容 ``` js document.getElementById("demo").innerHTML = "Hello JavaScript"; ``` Jav 阅读全文
posted @ 2023-05-21 09:57 rustling 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Markdown 是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档,Markdown文件的后缀名便是“.md”。 参考教程: ## 基本语法 ``` md 标题: # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 粗体: **bold text 阅读全文
posted @ 2023-05-20 22:47 rustling 阅读(28) 评论(0) 推荐(0) 编辑
摘要: CSS (Cascading Style Sheets) 指层叠样式表,是一种描述如何显示 HTML 元素的语言。 参考教程: https://www.w3school.com.cn/css/index.asp CSS 语法 CSS 规则集(rule-set)由选择器和声明块组成: CSS 选择器 阅读全文
posted @ 2023-05-20 22:08 rustling 阅读(21) 评论(0) 推荐(0) 编辑
摘要: HTML 指的是超文本标记语言 (Hyper Text Markup Language) ``` html Hello World hello html ``` 参考教程: 1. 2. ## HTML 标签 - 标题 `This is a heading` - 段落 `This is a parag 阅读全文
posted @ 2023-05-20 10:39 rustling 阅读(30) 评论(0) 推荐(0) 编辑
摘要: Nginx (engine x) 是一个高性能web服务器和反向代理服务器。 官网: https://nginx.org/en/download.html 安装 # 在Debian10上安装nginx apt install nginx # 查看版本 nginx -v # nginx version 阅读全文
posted @ 2023-05-15 20:43 rustling 阅读(25) 评论(0) 推荐(0) 编辑
摘要: Miniconda 是一个 Anaconda 的轻量级替代,默认只包含了 python 和 conda,但是可以通过 pip 和 conda 来安装所需要的包。 官方文档: https://docs.conda.io/en/latest/miniconda.html 安装 # Test in Deb 阅读全文
posted @ 2023-05-14 11:12 rustling 阅读(245) 评论(0) 推荐(0) 编辑
摘要: ftp - Internet file transfer program 常用命令 | 命令 | 用法 | 描述 | | | | | | ftp | ftp test@192.168.199.10 | 连接到FTP服务器 | | ls | ls [remote-directory] | 列出远程目录 阅读全文
posted @ 2023-05-13 22:36 rustling 阅读(85) 评论(0) 推荐(0) 编辑