cppdoc
基础概念
定义和 ODR(one definition rule)
ODR: 一个翻译单元中只有一个定义 It consists of the contents of a single sou ...
express
jwt(JSON Web Token)
组成
JSON Web Tokens consist of three parts separated by dots (.), 每部分用 base64 ...
memo源码笔记
memo 结构
.├── index.html├── package.json├── pnpm-lock.yaml├── postcss.config.js├── public│ └── ...
rfc笔记
rfc6265 http state(cookie)
cookie:xxx set-cokie:xxx
一些概念
client A program that establishes co ...
react
八股
jsx
作为文本 直接在 JSX 标签内: <h1>{name}'s To Do List</h1> 有效,但 <{tag& ...
mysql面经
索引
连接池
主要负责连接管理、授权认证、安全等等。每个客户端连接都对应着服务器上的一个线程。服务器上维护了一个线程池,避免为每个连接都创建销毁一个线程。当客户端连接到MySQL服务器时,服务 ...
redis设计与实现读书笔记
数据结构
简单动态字符串 simple dynamic string SDS
除了字符串外还用做缓冲区, 二进制安全(api 以处理二进制的方式处理 buf 数组)
struct sdshdr ...
深入浅出nodejs
Commonjs
每个模块都有 require exports module __filename __dirname变量
事实上,在编译的过程中,Node对获取的JavaScript文件内容 ...
nodejs-project-structure
原文地址 https://www.softwareontheroad.com/ideal-nodejs-project-structure/?utm_source=github&utm_me ...
为什么这么设计
https://draveness.me/whys-the-design/
为什么设计系列文章总结
为什么 TCP 建立连接需要三次握手
什么是连接: The reliability and f ...