From 61e7626b100e92f460383392e5fa95a6bdd6d1f4 Mon Sep 17 00:00:00 2001 From: lmj01 Date: Mon, 1 Jul 2024 14:42:27 +0800 Subject: [PATCH] update --- articles/safe/index.md | 6 ++++++ dev-note/index.md | 1 + web/index.md | 1 + web/store.md | 2 ++ 4 files changed, 10 insertions(+) create mode 100644 articles/safe/index.md diff --git a/articles/safe/index.md b/articles/safe/index.md new file mode 100644 index 0000000..a93e4b3 --- /dev/null +++ b/articles/safe/index.md @@ -0,0 +1,6 @@ +# 安全 + +- [溢出](/articles/safe/overflow.md) +- [计时攻击](/articles/safe/time.attacks.md) +- [OpenArk:专业的 Windows 恶意程序分析与清理工具。](github.com/BlackINT3/OpenArk) +- [分析 Go 编译后文件大小的工具](github.com/Zxilly/go-size-analyzer) diff --git a/dev-note/index.md b/dev-note/index.md index 091db1b..75e5ad8 100644 --- a/dev-note/index.md +++ b/dev-note/index.md @@ -22,3 +22,4 @@ - [MDN--Documenting web technologies, including CSS, HTML, and JavaScript, since 2005.](https://developer.mozilla.org/en-US/docs/Web) - [Google的开发工具,面向开发者的Android](https://developer.android.google.cn/?hl=zh-cn) +- [远程终端工具Mosh is a remote terminal application that supports intermittent connectivity, allows roaming, and provides speculative local echo and line editing of user keystrokes.](https://github.com/mobile-shell/mosh) diff --git a/web/index.md b/web/index.md index 8ff3250..68959ff 100644 --- a/web/index.md +++ b/web/index.md @@ -9,6 +9,7 @@ - [web概念](/web/web.md) - [html](/web/html.md) - [css](/web/css.md) +- [store存储数据](/web/store.md) - [canvas](/cg/canvas.md) - [小程序开发](/web/mini.md) - [字体](/cg/font.md) diff --git a/web/store.md b/web/store.md index d73a10b..9e39b63 100644 --- a/web/store.md +++ b/web/store.md @@ -6,6 +6,8 @@ 小数据,比如用户登录信息,使用localestorage存储 大数据,比如用户选择的图片信息,使用indexdb存储 +- [用 JavaScript 编写、运行在浏览器里的 NoSQL 数据库,它能够在离线状态下将数据存储至本地,并在网络恢复后自动同步数据,保持数据与服务器同步PouchDB is an open-source JavaScript database inspired by Apache CouchDB that is designed to run well within the browser.](https://github.com/pouchdb/pouchdb) + ## store vuex是vue的状态全局关联的模式