├── .gitignore ├── .vscode └── settings.json ├── README.md ├── package.json ├── posts ├── .gitkeep ├── assembly │ └── 汇编语言学习小结.md ├── blockchain │ ├── crypto-conditions 简述.md │ └── 实用拜占庭容错简介.md ├── browser │ └── 浏览器异步加载和同源策略.md ├── cpp │ └── the-as-if-rule.md ├── crypto │ └── brief-crypto.md ├── deno │ └── native-plugin.md ├── javascript │ ├── Javascript 内部的字符编码是 UCS-2 还是 UTF16.md │ ├── generator function.md │ ├── 解析 JSON 的成本.md │ ├── 闭包.md │ └── 闭包的作用.md ├── node │ └── Cluster 模块分析.md ├── oop │ └── ioc.md ├── os │ ├── UTF-8 编码及检查其完整性.md │ ├── 大小端序.md │ ├── 字符集和字符编码.md │ └── 魔数0x7c00.md ├── php │ ├── .gitkeep │ └── 为什么 PHP 不适合长时间运行.md ├── rust │ └── lifetime.md ├── static-analysis │ └── ternjs.md ├── typescript │ └── decorator.md ├── v8 │ ├── common-data-types.md │ └── debug-v8-in-vscode.md ├── websocket │ ├── WebSocket 协议 1~4 节.md │ └── WebSocket 协议 5~10 节.md └── work │ └── parsing-in-practice.md └── re-index.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/package.json -------------------------------------------------------------------------------- /posts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /posts/assembly/汇编语言学习小结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/assembly/汇编语言学习小结.md -------------------------------------------------------------------------------- /posts/blockchain/crypto-conditions 简述.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/blockchain/crypto-conditions 简述.md -------------------------------------------------------------------------------- /posts/blockchain/实用拜占庭容错简介.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/blockchain/实用拜占庭容错简介.md -------------------------------------------------------------------------------- /posts/browser/浏览器异步加载和同源策略.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/browser/浏览器异步加载和同源策略.md -------------------------------------------------------------------------------- /posts/cpp/the-as-if-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/cpp/the-as-if-rule.md -------------------------------------------------------------------------------- /posts/crypto/brief-crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/crypto/brief-crypto.md -------------------------------------------------------------------------------- /posts/deno/native-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/deno/native-plugin.md -------------------------------------------------------------------------------- /posts/javascript/Javascript 内部的字符编码是 UCS-2 还是 UTF16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/javascript/Javascript 内部的字符编码是 UCS-2 还是 UTF16.md -------------------------------------------------------------------------------- /posts/javascript/generator function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/javascript/generator function.md -------------------------------------------------------------------------------- /posts/javascript/解析 JSON 的成本.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/javascript/解析 JSON 的成本.md -------------------------------------------------------------------------------- /posts/javascript/闭包.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/javascript/闭包.md -------------------------------------------------------------------------------- /posts/javascript/闭包的作用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/javascript/闭包的作用.md -------------------------------------------------------------------------------- /posts/node/Cluster 模块分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/node/Cluster 模块分析.md -------------------------------------------------------------------------------- /posts/oop/ioc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/oop/ioc.md -------------------------------------------------------------------------------- /posts/os/UTF-8 编码及检查其完整性.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/os/UTF-8 编码及检查其完整性.md -------------------------------------------------------------------------------- /posts/os/大小端序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/os/大小端序.md -------------------------------------------------------------------------------- /posts/os/字符集和字符编码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/os/字符集和字符编码.md -------------------------------------------------------------------------------- /posts/os/魔数0x7c00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/os/魔数0x7c00.md -------------------------------------------------------------------------------- /posts/php/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /posts/php/为什么 PHP 不适合长时间运行.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/php/为什么 PHP 不适合长时间运行.md -------------------------------------------------------------------------------- /posts/rust/lifetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/rust/lifetime.md -------------------------------------------------------------------------------- /posts/static-analysis/ternjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/static-analysis/ternjs.md -------------------------------------------------------------------------------- /posts/typescript/decorator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/typescript/decorator.md -------------------------------------------------------------------------------- /posts/v8/common-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/v8/common-data-types.md -------------------------------------------------------------------------------- /posts/v8/debug-v8-in-vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/v8/debug-v8-in-vscode.md -------------------------------------------------------------------------------- /posts/websocket/WebSocket 协议 1~4 节.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/websocket/WebSocket 协议 1~4 节.md -------------------------------------------------------------------------------- /posts/websocket/WebSocket 协议 5~10 节.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/websocket/WebSocket 协议 5~10 节.md -------------------------------------------------------------------------------- /posts/work/parsing-in-practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/posts/work/parsing-in-practice.md -------------------------------------------------------------------------------- /re-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiaosiyuan0/blog/HEAD/re-index.js --------------------------------------------------------------------------------