相关文章
linux ubuntu机械硬盘休眠设置
1. 前言
最近搞了个nas机箱,里面可以装4块机箱硬盘,J1900u, 虽然有黑群晖系统,但是总感觉不够灵活(对于raid 硬盘模式我是完全用不上,读写速度没需求,数据安全性也没需求,最主要是要灵活&#…
建站知识
2025/1/30 20:20:50
【antd + vue】表格行合并,同时使用插槽
一、需求说明
表格中,如果一个学校有多个考试科目,则分行展示,其余列,则合并为一行展示,如图所示 二、需求分析
1、表格行合并
相当于有4行,其中1、2行是同一个学校包含不同考试科目及对应人次的数据&am…
建站知识
2025/1/30 22:17:41
pycharm如何使用jupyter
目录 配置jupyter新建jupyter文件别人写的方法(在pycharm种安装,在网页中使用) pycharm专业版
配置jupyter
在pycharm终端启动一个conda虚拟环境,输入
conda install jupyter会有很多前置包需要安装:
新建jupyter…
建站知识
2025/1/19 4:43:22
【Linux】进程创建和终止 | slab分配器
进程创建 fork
1.fork 之后发生了什么 将给子进程分配新的内存块和内核数据结构(形成了新的页表映射)将父进程部分数据结构内容拷贝至子进程添加子进程到系统进程列表当中fork 返回,开始调度器调度 这样就可以回答之前返回两个值?…
建站知识
2025/1/19 4:43:19
安装 tesseract
安装 tesseract 1. Ubuntu-24.04 安装 tesseract2. Ubuntu-24.04 安装支持语言3. Windows 安装 tesseract4. Oracle Linux 8 安装 tesseract 1. Ubuntu-24.04 安装 tesseract
sudo apt install tesseract-ocr
sudo apt install libtesseract-devreference: https://tesseract-…
建站知识
2025/1/19 4:43:21
Turborepo简易教程
参考官网:https://turbo.build/repo/docs
开始
安装全新的项目
pnpm dlx create-turbolatest测试应用包含:
两个可部署的应用三个共享库 运行:
pnpm install
pnpm dev会启动两个应用web(http://localhost:3000/)、docs(http://localhost…
建站知识
2025/1/30 22:17:39
c_各个unsigned int 和 int的取值范围
bool, uint8_t, uint16_t, uint32_t, uint64_t, int8_t, int16_t, int32_t, int64_t 取值范围分别是什么?
定义形式: typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef unsigned long uint64_…
建站知识
2025/1/19 4:43:40