This commit is contained in:
ouczbs 2023-08-05 17:53:27 +08:00
parent d8dcfeb696
commit 7da2e9886a
13 changed files with 271 additions and 0 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
.obsidian/workspace.json
.obsidian/plugins/

6
.obsidian/community-plugins.json vendored Normal file
View File

@ -0,0 +1,6 @@
[
"obsidian-git",
"obsidian-kanban",
"obsidian-excalidraw-plugin",
"calendar"
]

6
.obsidian/daily-notes.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"template": "",
"autorun": true,
"folder": "插件文档/日记",
"format": "YYYY-MM-DD"
}

View File

@ -0,0 +1,112 @@
---
excalidraw-plugin: parsed
tags: [excalidraw]
---
==⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠==
# Text Elements
%%
# Drawing
```json
{
"type": "excalidraw",
"version": 2,
"source": "https://github.com/zsviczian/obsidian-excalidraw-plugin/releases/tag/1.9.12",
"elements": [
{
"id": "7Ke6pgiEXgvLVewAStK3E",
"type": "rectangle",
"x": -285,
"y": -117.25,
"width": 280,
"height": 342,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "hachure",
"strokeWidth": 1,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 3
},
"seed": 720366220,
"version": 36,
"versionNonce": 1674986932,
"isDeleted": false,
"boundElements": null,
"updated": 1691147719007,
"link": null,
"locked": false
},
{
"id": "CXZMRG4yBMoVQ6vhNKLzA",
"type": "ellipse",
"x": 250,
"y": -11.25,
"width": 229,
"height": 155,
"angle": 0,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"fillStyle": "hachure",
"strokeWidth": 1,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 2
},
"seed": 534847372,
"version": 55,
"versionNonce": 866637580,
"isDeleted": false,
"boundElements": null,
"updated": 1691147723201,
"link": null,
"locked": false
}
],
"appState": {
"theme": "light",
"viewBackgroundColor": "#ffffff",
"currentItemStrokeColor": "#1e1e1e",
"currentItemBackgroundColor": "transparent",
"currentItemFillStyle": "hachure",
"currentItemStrokeWidth": 1,
"currentItemStrokeStyle": "solid",
"currentItemRoughness": 1,
"currentItemOpacity": 100,
"currentItemFontFamily": 1,
"currentItemFontSize": 20,
"currentItemTextAlign": "left",
"currentItemStartArrowhead": null,
"currentItemEndArrowhead": "arrow",
"scrollX": 787,
"scrollY": 380.75,
"zoom": {
"value": 1
},
"currentItemRoundness": "round",
"gridSize": null,
"currentStrokeOptions": null,
"previousGridSize": null,
"frameRendering": {
"enabled": true,
"clip": true,
"name": true,
"outline": true
}
},
"files": {}
}
```
%%

View File

View File

@ -0,0 +1,18 @@
---
kanban-plugin: basic
---
##
- [ ] 音标
%% kanban:settings
```
{"kanban-plugin":"basic"}
```
%%

View File

@ -0,0 +1,25 @@
---
kanban-plugin: basic
---
## 待开发
- [ ] [[数据类型]]
- [ ] [[数据事件]]
- [ ] [[数据语言]]
- [ ] [[数据规范]]
##
%% kanban:settings
```
{"kanban-plugin":"basic","new-note-folder":"程序开发/工具开发/zero"}
```
%%

View File

@ -0,0 +1,14 @@
## 注册
要翻墙,要买外国手机号接收注册码
## 登录
[地址](https://chat.openai.com/auth/login)
要翻墙
## 使用
https://chat.openai.com/
登录后无需翻墙

View File

@ -0,0 +1,65 @@
## 定义
```c++
//基础类型
S S8 S16 S32 S64
{
+ - > <
}
U U8 U16 U32 U64
{
data => data;
size => n;
}
//字符串
string
{
data => data\x00;
size => ?;
}
//数组
array
{
data => array;
size => n;
}
//哈希表
map
{
data => map;
size => ?;
}
//树
tree{
}
//对象
struct{
U8 a1;
string a2;
...
}
```
## 存储
```c++
binary string{
data =>data\x00
}
binary array{
size;
data => array;
}
binary map{
size;
key-value;
key-value;
}
parent{
U32 size;
BYTES data;
}
binary struct parent{
U32 a1;
U32 a2;
}
```

View File

@ -0,0 +1,24 @@
# 数据操作
## 读取
- 二进制
- 格式
- 加载数据[a:b]
- 数据元素索引地址 [i]
- 无需解析
- 语言文本
## 查询
- 需要配备一个数据编辑器
- 对象数据
- 可自定义显示优化
- 可自定义
## 修改
- 语言文本
- 修改无依赖
- 二进制
- 不可读
-
## 添加
## 删除
## 保存