摘要: 数据库系统原理 第一章 数据库系统概述 第一节 数据库基本概念 数据Data 数据(Data)是描述事务的符号记录,是指用物理符号记录下来的、可以鉴别的信息 数据是信息存在的一种形式,只有通过解释或处理的数据才能成为有用的信息 数据库DB 数据库(DB)是指长期储存在计算机中的有组织的、可共享的数据 阅读全文
posted @ 2023-10-02 02:51 人间丶迷走 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 一、首次安装 1. 准备工作 资源下载网站 # 其他插件包 https://www.pling.com/p/1805660/ # WhiteSur Gtk Theme https://github.com/vinceliuice/WhiteSur-gtk-theme.git # Icon Theme 阅读全文
posted @ 2023-09-24 02:41 人间丶迷走 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 马克思主义基本原理概论 题型与分值 单选题:25 * 2 = 50 简答题: 5 * 6 = 30 论述题:2/3 * 10 = 20 绪论 马克思主义是关于无产阶级和人类解放的科学 第一节 马克思主义的产生和发展 马克思主义的实践背景 客观条件:资本主义发展 阶级基础:工人阶级 时代的产物:马克思 阅读全文
posted @ 2023-09-21 21:50 人间丶迷走 阅读(137) 评论(0) 推荐(0) 编辑
摘要: Linux新增分区操作 df命令查看 # 查看已挂载分区 及 文件系统类型 snowing@ubuntus:~$ df -T Filesystem Type 1K-blocks Used Available Use% Mounted on /dev/sda2 ext4 57359200 133970 阅读全文
posted @ 2023-09-10 14:56 人间丶迷走 阅读(85) 评论(0) 推荐(0) 编辑
摘要: ### 1.0 refernce manual - [Chinese reference manual](https://yianwillis.github.io/vimcdoc/doc/help.html) ```bash https://yianwillis.github.io/vimcdoc/ 阅读全文
posted @ 2023-07-29 23:22 人间丶迷走 阅读(30) 评论(0) 推荐(0) 编辑
摘要: # 1.常用快捷键 ## 1.1 vscode常用快捷键 - 光标移动(Left为左方向键) ```bash Ctrl + Left 向左移动一个单词 ``` - 侧边栏 ```bash Ctrl + b 关闭/打开侧边栏 ``` ## 1.2 终端常用快捷键 - shell 常用快捷键 ```ba 阅读全文
posted @ 2023-07-11 21:55 人间丶迷走 阅读(21) 评论(0) 推荐(0) 编辑
摘要: # 2. Linux基础 ## 2.1. 查看系统版本信息 ### 2.1.1 查看操作系统内核 - centos ```bash [demo@centos ~]$ uname -r 3.10.0-693.el7.x86_64 ``` - ubuntu ```bash # ubuntu walker 阅读全文
posted @ 2023-06-24 00:58 人间丶迷走 阅读(20) 评论(0) 推荐(0) 编辑
摘要: - 操作系统与原有python ```bash [pythondemo@localhost ~]$ cat /etc/centos-release CentOS Linux release 7.4.1708 (Core) [pythondemo@localhost ~]$ python Python 阅读全文
posted @ 2023-06-11 14:34 人间丶迷走 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 1.软件管理 1.1 软件的编译和运行 C语言的运行和编译 源文件`--预处理--`预处理文件`--编译--`汇编文件`--汇编--`目标文件`--链接--`可执行文件 #分步骤编译运行 gcc -E hello.c -o hello.i gcc -S hello.i -o hello.s gcc 阅读全文
posted @ 2022-08-31 00:28 人间丶迷走 阅读(39) 评论(0) 推荐(0) 编辑
摘要: # 6.文本处理和正则表达式 ## 6.1 常见文本处理工具 ### 6.1.1 查看普通文本内容 - `cat` 命令格式 ```bash cat [OPTION]... [FILE]... # 支持标准输入 With no FILE, or when FILE is -, read standa 阅读全文
posted @ 2022-08-31 00:27 人间丶迷走 阅读(111) 评论(0) 推荐(0) 编辑