相关文章
从0到1搭建文档库——sphinx + git + read the docs
sphinx git read the docs
目录
一、sphinx
1 sphinx的安装
2 本地构建文件框架
1)创建基本框架(生成index.rst ;conf.py)
conf.py默认内容
index.rst默认内容
2)生成页面(Windows系统下…
建站知识
2025/1/20 10:45:29
TCP重传机制详解——05RACK
文章目录 TCP重传机制详解——05RACKRACK是什么?基本原理使用条件 TCP重传机制详解——05RACK
RACK是什么?
RACK(Recent ACKnowledgment)是一种新的基于时间的丢包探索算法,RACK的目的是取代传统的基于dupthresh门限的分钟快速重传及其变种…
建站知识
2025/1/12 21:17:04
【机器学习】数学基础详解
线性代数:构建数据的骨架
数学对象 标量(Scalar)
标量是最基本的数学对象,代表了单个的数值,无论是整数还是实数。在机器学习中,标量可以用来表示一个模型的单个参数,如偏差(bias&…
建站知识
2025/1/21 15:29:21
Linux - mac 装 mutipass 获取 ubuntu
mutipass :https://multipass.run/docs/mac-tutorial mutipass list mutipass launch --name myname mutipass shell myname 获取 root权限: sudo su
建站知识
2025/1/21 15:38:32
【MacBook系统homebrew镜像记录】
安装
使用Homebrew 国内源安装脚本,贼方便:
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"切换至清华大学镜像源:
命令合并: 分别切换了 brew.git、 homebrew-core.git、 homebrew-…
建站知识
2025/1/21 15:24:56
SQLite 4.9的 OS 接口或“VFS”(十三)
返回:SQLite—系列文章目录
上一篇:SQLite字节码引擎(十二)
下一篇:SQLite 4.9的虚拟表机制(十四) 1. 引言
本文介绍了 SQLite OS 可移植性层或“VFS” - 模块位于 SQLite 实现堆栈底部 提供跨操作系统的可移植性。
VFS是Virtual File…
建站知识
2024/12/30 0:49:13
Flask Python Flask-SQLAlchemy中数据库的数据类型、flask中数据可的列约束配置
Flask Python Flask-SQLAlchemy中数据库的数据类型、flask中数据可的列约束配置 SQLAlchemy官方文档地址实战的代码分享数据类型列约束配置自定义方法 SQLAlchemy官方文档地址
SQLAlchemy官方文档地址
实战的代码分享
Flask-SQLAlchemy框架为创建数据库的实例提供了一个基类…
建站知识
2024/12/31 12:53:50
leetcode - 678. Valid Parenthesis String
Description
Given a string s containing only three types of characters: ‘(’, ‘)’ and ‘*’, return true if s is valid.
The following rules define a valid string:
Any left parenthesis ( must have a corresponding right parenthesis ).
Any right parenth…
建站知识
2024/12/31 20:49:20