From 04ae815c762400612f0fda13ee6991937aa90e58 Mon Sep 17 00:00:00 2001 From: bajins Date: Fri, 11 Oct 2024 10:09:02 +0800 Subject: [PATCH] add --- ...54\344\270\211\346\226\271\345\272\223.md" | 1 + IDE/Eclipse.md | 64 +++++++++++++++++++ ...11\350\243\205\351\205\215\347\275\256.md" | 2 + ...54\344\270\211\346\226\271\345\272\223.md" | 6 +- PL/CPlusPlus.md | 1 + PL/README.md | 4 +- "PL/\344\270\255\351\227\264\344\273\266.md" | 2 +- ...72\345\267\245\346\231\272\350\203\275.md" | 1 + ...40\345\257\206\350\256\244\350\257\201.md" | 3 + ...07\346\241\243\345\244\204\347\220\206.md" | 14 ++++ ...26\347\250\213\350\247\204\350\214\203.md" | 1 + Python/README.md | 2 +- Shell/README.md | 1 + Shell/ShellWindows.md | 3 +- System/Android.md | 1 + System/IOS.md | 1 + System/README.md | 10 +-- "System/Windows\350\275\257\344\273\266.md" | 1 + "Web/JavaScript\346\241\206\346\236\266.md" | 2 + 19 files changed, 109 insertions(+), 11 deletions(-) diff --git "a/Go/Go\347\254\254\344\270\211\346\226\271\345\272\223.md" "b/Go/Go\347\254\254\344\270\211\346\226\271\345\272\223.md" index fd212cd8..e756e6a0 100644 --- "a/Go/Go\347\254\254\344\270\211\346\226\271\345\272\223.md" +++ "b/Go/Go\347\254\254\344\270\211\346\226\271\345\272\223.md" @@ -74,6 +74,7 @@ * [https://github.com/chenhg5/collection](https://github.com/chenhg5/collection) * [https://github.com/Andrew-M-C/go.jsonvalue](https://github.com/Andrew-M-C/go.jsonvalue) * [https://github.com/tidwall/gjson](https://github.com/tidwall/gjson) +* [https://github.com/timbray/quamina](https://github.com/timbray/quamina) * JSON转CSV [https://github.com/yukithm/json2csv](https://github.com/yukithm/json2csv) * 线程池 [https://github.com/xxjwxc/gowp](https://github.com/xxjwxc/gowp) * [https://github.com/panjf2000/ants](https://github.com/panjf2000/ants) diff --git a/IDE/Eclipse.md b/IDE/Eclipse.md index 0b76958c..b0d9ad1f 100644 --- a/IDE/Eclipse.md +++ b/IDE/Eclipse.md @@ -441,6 +441,70 @@ ``` +## 命令执行 + + +**eclipsec应用程序** + +- `org.eclipse.jdt.core.JavaCodeFormatter` 格式化 Java 代码 + - `-config` +- `org.eclipse.jdt.core.JavaCompiler` 编译 Java 代码 + - `-sourcepath` + - `-classpath` +- `org.eclipse.equinox.p2.director` 安装、更新或卸载 Eclipse 插件 + - `-repository` + - `-installIU` + - `-` + - `-` +- `org.eclipse.ant.core.antRunner` 运行 Apache Ant 构建脚本 + - `-buildfile` +- `org.eclipse.ui.ide.workbench` 启动 Eclipse IDE 工作台 +- `org.eclipse.jdt.apt.core.aptBuild` 运行 Java 注解处理器(Annotation Processing Tool) + - `-sourcepath` + - `-classpath` +- `org.eclipse.jdt.core.JavaIndexer` 索引 Java 项目 + - `-sourcepath` +- `org.eclipse.jdt.core.JavaModelManager` 管理 Java 模型 + - `-sourcepath` +- `org.eclipse.update.core.standaloneUpdate` 更新 Eclipse 安装 + - `-command install` + - `-featureId org.eclipse.platform` +- `org.eclipse.core.launcher.Main` 启动 Eclipse 主应用程序 + + +**启动** + +- `eclipse -consoleLog -nosplash -data ` + + +**格式化代码** + +- ` eclipsec -data -application org.eclipse.jdt.core.JavaCodeFormatter [ OPTIONS: -help、-quiet、-verbose ] -config ` +- `Window` -> `Preferences` -> `Java` -> `Code Style` -> `Formatter` -> `Export All` 导出格式化代码的配置XML文件 + + +**编译构建** + +- `eclipsec -nosplash -data -application org.eclipse.ant.core.antRunner -buildfile ` + +```xml + + + + + + + + + + + + + + + +``` + diff --git "a/Java/JDK\345\256\211\350\243\205\351\205\215\347\275\256.md" "b/Java/JDK\345\256\211\350\243\205\351\205\215\347\275\256.md" index 70fcf183..5b2868c2 100644 --- "a/Java/JDK\345\256\211\350\243\205\351\205\215\347\275\256.md" +++ "b/Java/JDK\345\256\211\350\243\205\351\205\215\347\275\256.md" @@ -166,6 +166,8 @@ ```bash JAVA_OPTS=" -Dfile.encoding=UTF-8 +-Dstdout.encoding=UTF-8 +-Dstderr.encoding=UTF-8 -server -Xms2688M -Xmx2688M diff --git "a/Java/Java\347\254\254\344\270\211\346\226\271\345\272\223.md" "b/Java/Java\347\254\254\344\270\211\346\226\271\345\272\223.md" index 2da77dcf..87efe381 100644 --- "a/Java/Java\347\254\254\344\270\211\346\226\271\345\272\223.md" +++ "b/Java/Java\347\254\254\344\270\211\346\226\271\345\272\223.md" @@ -209,8 +209,7 @@ -* [https://github.com/HtmlUnit/htmlunit](https://github.com/HtmlUnit/htmlunit) - * [https://sourceforge.net/projects/htmlunit](https://sourceforge.net/projects/htmlunit) + * Java8以下的时间替代项目`joda-time` [https://github.com/JodaOrg](https://github.com/JodaOrg) * [https://github.com/ocpsoft/prettytime](https://github.com/ocpsoft/prettytime) * [https://github.com/ThreeTen/threetenbp](https://github.com/ThreeTen/threetenbp) @@ -263,6 +262,7 @@ - [https://github.com/imcdonagh/image4j](https://github.com/imcdonagh/image4j) - 图片压缩 [https://github.com/coobird/thumbnailator](https://github.com/coobird/thumbnailator) - [http://projects.coobird.net](http://projects.coobird.net) +- SVG [https://github.com/css4j/echosvg](https://github.com/css4j/echosvg) - 压缩文件 [https://github.com/junrar/junrar](https://github.com/junrar/junrar) - [https://github.com/apache/commons-compress](https://github.com/apache/commons-compress) - [https://github.com/airlift/aircompressor](https://github.com/airlift/aircompressor) @@ -390,6 +390,8 @@ * [https://gitee.com/l-weiwei/Spiderman2](https://gitee.com/l-weiwei/Spiderman2) * [https://gitee.com/flashsword20/webmagic](https://gitee.com/flashsword20/webmagic) * [https://github.com/zhegexiaohuozi/SeimiCrawler](https://github.com/zhegexiaohuozi/SeimiCrawler) +* html [https://github.com/HtmlUnit/htmlunit](https://github.com/HtmlUnit/htmlunit) + * [https://sourceforge.net/projects/htmlunit](https://sourceforge.net/projects/htmlunit) + JSON-P [https://github.com/eclipse-ee4j/jsonp](https://github.com/eclipse-ee4j/jsonp) diff --git a/PL/CPlusPlus.md b/PL/CPlusPlus.md index 381dcda0..0933f501 100644 --- a/PL/CPlusPlus.md +++ b/PL/CPlusPlus.md @@ -211,6 +211,7 @@ * 范围 [https://github.com/ericniebler/range-v3](https://github.com/ericniebler/range-v3) * 队列 [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue) * 编码检测 [https://github.com/BYVoid/uchardet](https://github.com/BYVoid/uchardet) +* 代码高亮 [https://github.com/TelegramMessenger/libprisma](https://github.com/TelegramMessenger/libprisma) diff --git a/PL/README.md b/PL/README.md index c3d03f91..75785841 100644 --- a/PL/README.md +++ b/PL/README.md @@ -26,6 +26,7 @@ - [https://github.com/weijunext/indie-hacker-tools](https://github.com/weijunext/indie-hacker-tools) - [https://github.com/shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist) - [https://indiehackertools.net](https://indiehackertools.net) +- [https://github.com/lukasz-madon/awesome-remote-job](https://github.com/lukasz-madon/awesome-remote-job) - 推广渠道 [https://github.com/naxiaoduo/1000UserGuide](https://github.com/naxiaoduo/1000UserGuide) - [Sam Altman的创业手册](https://jxp73q7qjsg.feishu.cn/docx/WCNZdKDa4o2eUrxK5ElcfBXEnah) - 硬地骇客 [https://github.com/hardhackerlabs/book](https://github.com/hardhackerlabs/book) @@ -515,6 +516,7 @@ * [lib目录下包含了所有JavaScript官方DOM API](https://github.com/microsoft/TypeScript/tree/master/lib) * [https://www.typescriptlang.org](https://www.typescriptlang.org) * [https://www.tslang.cn](https://www.tslang.cn) + * [https://typeroom.cn/problems/all](https://typeroom.cn/problems/all) * 深入理解TypeScript [https://jkchao.github.io/typescript-book-chinese](https://jkchao.github.io/typescript-book-chinese) * [https://github.com/basarat/typescript-book](https://github.com/basarat/typescript-book) @@ -577,7 +579,7 @@ - [走进 WebAssembly 的世界](https://juejin.cn/column/7210666370487681082) - [https://github.com/yaozhongxiao/webassembly_tech](https://github.com/yaozhongxiao/webassembly_tech) - [WebAssembly 模块化与动态链接](https://mp.weixin.qq.com/s/MPBwFuL2CYFVXIowoB542A) -* 微信小游戏 [https://github.com/wechat-miniprogram](https://github.com/wechat-miniprogram) +- 微信小游戏 [https://github.com/wechat-miniprogram](https://github.com/wechat-miniprogram) * [https://github.com/ShizukuIchi/winXP](https://github.com/ShizukuIchi/winXP) diff --git "a/PL/\344\270\255\351\227\264\344\273\266.md" "b/PL/\344\270\255\351\227\264\344\273\266.md" index a6a3ab7a..8eb1cb19 100644 --- "a/PL/\344\270\255\351\227\264\344\273\266.md" +++ "b/PL/\344\270\255\351\227\264\344\273\266.md" @@ -363,7 +363,7 @@ - [https://sourceforge.net/projects/jasperstarter](https://sourceforge.net/projects/jasperstarter) - [https://github.com/zhangdaiscott/JimuReport](https://github.com/zhangdaiscott/JimuReport) - [https://gitee.com/summer-T/ureport-keep](https://gitee.com/summer-T/ureport-keep) - - [http://wiki.bsdn.org](http://wiki.bsdn.org) + - [https://www.w3cschool.cn/ureport](https://www.w3cschool.cn/ureport) - [ureport2报表详细使用](https://www.cnblogs.com/niceyoo/p/14311257.html) - [SpringBoot整合Ureport2 报表 及常见使用方法](https://blog.csdn.net/weixin_41451078/article/details/113123215) - [https://sourceforge.net/projects/dynamicreports](https://sourceforge.net/projects/dynamicreports) diff --git "a/PL/\344\272\272\345\267\245\346\231\272\350\203\275.md" "b/PL/\344\272\272\345\267\245\346\231\272\350\203\275.md" index 9535cf14..3ec92af7 100644 --- "a/PL/\344\272\272\345\267\245\346\231\272\350\203\275.md" +++ "b/PL/\344\272\272\345\267\245\346\231\272\350\203\275.md" @@ -271,6 +271,7 @@ * [https://github.com/open-mmlab/Amphion](https://github.com/open-mmlab/Amphion) * [https://github.com/panyanyany/Awesome-ChatTTS](https://github.com/panyanyany/Awesome-ChatTTS) * [https://github.com/2noise/ChatTTS](https://github.com/2noise/ChatTTS) +* [https://github.com/ElmTran/praises](https://github.com/ElmTran/praises) * 变声 [https://github.com/w-okada/voice-changer](https://github.com/w-okada/voice-changer) * 捕获键盘声音 [https://github.com/ggerganov/kbd-audio](https://github.com/ggerganov/kbd-audio) * Whisper [https://github.com/chidiwilliams/buzz](https://github.com/chidiwilliams/buzz) diff --git "a/PL/\345\212\240\345\257\206\350\256\244\350\257\201.md" "b/PL/\345\212\240\345\257\206\350\256\244\350\257\201.md" index 9f04863e..542dfd55 100644 --- "a/PL/\345\212\240\345\257\206\350\256\244\350\257\201.md" +++ "b/PL/\345\212\240\345\257\206\350\256\244\350\257\201.md" @@ -143,6 +143,9 @@ + [https://github.com/BLAKE3-team](https://github.com/BLAKE3-team) + [https://github.com/BLAKE2](https://github.com/BLAKE2) + [https://github.com/syncsynchalt/illustrated-x25519](https://github.com/syncsynchalt/illustrated-x25519) ++ [https://github.com/OpenPGP/openpgp.org](https://github.com/OpenPGP/openpgp.org) + + [https://www.gpg4win.org](https://www.gpg4win.org) + + [https://github.com/open-keychain/open-keychain](https://github.com/open-keychain/open-keychain) - 对称加密算法 diff --git "a/PL/\346\226\207\346\241\243\345\244\204\347\220\206.md" "b/PL/\346\226\207\346\241\243\345\244\204\347\220\206.md" index 5acc529b..40f20f35 100644 --- "a/PL/\346\226\207\346\241\243\345\244\204\347\220\206.md" +++ "b/PL/\346\226\207\346\241\243\345\244\204\347\220\206.md" @@ -89,6 +89,7 @@ ## PDF + [https://github.com/topics/pdf](https://github.com/topics/pdf) ++ [https://github.com/topics/pdflib](https://github.com/topics/pdflib) + [https://github.com/topics/pdf-viewer](https://github.com/topics/pdf-viewer) + [https://github.com/topics/poi](https://github.com/topics/poi) + [https://github.com/topics/excel](https://github.com/topics/excel) @@ -114,10 +115,14 @@ * [https://github.com/apache/pdfbox](https://github.com/apache/pdfbox) * [https://github.com/apache/tika](https://github.com/apache/tika) * [https://github.com/itext](https://github.com/itext) +* [https://github.com/flyingsaucerproject/flyingsaucer](https://github.com/flyingsaucerproject/flyingsaucer) +* [https://github.com/openhtmltopdf/openhtmltopdf](https://github.com/openhtmltopdf/openhtmltopdf) +* [https://github.com/LibrePDF/OpenPDF](https://github.com/LibrePDF/OpenPDF) * [https://github.com/Frooodle/Stirling-PDF](https://github.com/Frooodle/Stirling-PDF) * [https://github.com/ofdrw/ofdrw](https://github.com/ofdrw/ofdrw) * [https://github.com/MrRio/jsPDF](https://github.com/MrRio/jsPDF) * [https://github.com/mozilla/pdf.js](https://github.com/mozilla/pdf.js) +* [https://github.com/Hopding/pdf-lib](https://github.com/Hopding/pdf-lib) * 读取PDF [https://github.com/ledongthuc/pdf](https://github.com/ledongthuc/pdf) * [https://github.com/google/go-tika](https://github.com/google/go-tika) * [https://github.com/pdfcpu/pdfcpu](https://github.com/pdfcpu/pdfcpu) @@ -129,6 +134,15 @@ * [https://github.com/apache/xmlgraphics-fop](https://github.com/apache/xmlgraphics-fop) * [https://github.com/apache/xmlgraphics-fop-pdf-images](https://github.com/apache/xmlgraphics-fop-pdf-images) * [https://github.com/bpampuch/pdfmake](https://github.com/bpampuch/pdfmake) +* python [https://github.com/py-pdf/pypdf](https://github.com/py-pdf/pypdf) +* [https://github.com/pymupdf/PyMuPDF](https://github.com/pymupdf/PyMuPDF) +* [https://hg.reportlab.com/hg-public](https://hg.reportlab.com/hg-public) +* [https://github.com/pdfminer/pdfminer.six](https://github.com/pdfminer/pdfminer.six) + * [https://github.com/euske/pdfminer](https://github.com/euske/pdfminer) +* [https://github.com/alephdata/pdflib](https://github.com/alephdata/pdflib) +* [https://github.com/pyx-project/pyx](https://github.com/pyx-project/pyx) +* [https://github.com/reingart/pyfpdf](https://github.com/reingart/pyfpdf) +* [https://github.com/pmaupin/pdfrw](https://github.com/pmaupin/pdfrw) diff --git "a/PL/\347\274\226\347\250\213\350\247\204\350\214\203.md" "b/PL/\347\274\226\347\250\213\350\247\204\350\214\203.md" index e0f2b0fa..ab3e457a 100644 --- "a/PL/\347\274\226\347\250\213\350\247\204\350\214\203.md" +++ "b/PL/\347\274\226\347\250\213\350\247\204\350\214\203.md" @@ -14,6 +14,7 @@ + [https://github.com/fossas](https://github.com/fossas) + [https://app.fossa.com](https://app.fossa.com) + [https://fossa.com/learn/developers-guide-open-source-software-licenses](https://fossa.com/learn/developers-guide-open-source-software-licenses) + + [https://open-source-license-chooser.toolsnav.top/zh](https://open-source-license-chooser.toolsnav.top/zh) + [如何选择开源许可证?](http://www.ruanyifeng.com/blog/2011/05/how_to_choose_free_software_licenses.html) + [如何选择开源许可证?](https://blog.csdn.net/wadefelix/article/details/6384317) + [https://spdx.org/licenses](https://spdx.org/licenses) diff --git a/Python/README.md b/Python/README.md index 4d5ea0b9..5e6afe10 100644 --- a/Python/README.md +++ b/Python/README.md @@ -198,7 +198,7 @@ vi /usr/libexec/urlgrabber-ext-down * [https://github.com/python-poetry/poetry](https://github.com/python-poetry/poetry) * [https://github.com/pyenv/pyenv](https://github.com/pyenv/pyenv) * [https://github.com/danhper/asdf-python](https://github.com/danhper/asdf-python) -* [https://github.com/frostming/pdm](https://github.com/frostming/pdm) +* [https://github.com/pdm-project/pdm](https://github.com/pdm-project/pdm) * [https://bitbucket.org/virtualenvwrapper/virtualenvwrapper](https://bitbucket.org/virtualenvwrapper/virtualenvwrapper) * [https://github.com/davidmarble/virtualenvwrapper-win](https://github.com/davidmarble/virtualenvwrapper-win) * [https://github.com/python-poetry/poetry](https://github.com/python-poetry/poetry) diff --git a/Shell/README.md b/Shell/README.md index 03b5f662..1453fc60 100644 --- a/Shell/README.md +++ b/Shell/README.md @@ -46,6 +46,7 @@ - 历史导入SQLite [https://github.com/atuinsh/atuin](https://github.com/atuinsh/atuin) - 历史查找 [https://github.com/YiNNx/cmd-wrapped](https://github.com/YiNNx/cmd-wrapped) - 录屏 [https://github.com/gvcgo/asciinema](https://github.com/gvcgo/asciinema) +- 词典 [https://github.com/lengyijun/mdict-cli-rs](https://github.com/lengyijun/mdict-cli-rs) * [https://github.com/google/zx](https://github.com/google/zx) diff --git a/Shell/ShellWindows.md b/Shell/ShellWindows.md index 4af92b1c..cf61b88a 100644 --- a/Shell/ShellWindows.md +++ b/Shell/ShellWindows.md @@ -12,8 +12,7 @@ -- [https://github.com/OpenPGP/openpgp.org](https://github.com/OpenPGP/openpgp.org) -- GPG密钥 [https://www.gpg4win.org](https://www.gpg4win.org) + - 多个shell软件包镜像 [https://github.com/mirror](https://github.com/mirror) - [https://github.com/svn2github](https://github.com/svn2github) - [https://winlibs.com](https://winlibs.com) diff --git a/System/Android.md b/System/Android.md index 04a821e1..cb3725d0 100644 --- a/System/Android.md +++ b/System/Android.md @@ -425,6 +425,7 @@ * [https://www.lightricks.com](https://www.lightricks.com) * 磁力下载 [https://github.com/proninyaroslav/libretorrent](https://github.com/proninyaroslav/libretorrent) * 运行Windows应用 [https://github.com/brunodev85/winlator](https://github.com/brunodev85/winlator) +* 词典 [https://github.com/mumu-lhl/Ciyue](https://github.com/mumu-lhl/Ciyue) **下载Google Play Store上的应用** diff --git a/System/IOS.md b/System/IOS.md index 850f4b9d..42bf20f1 100644 --- a/System/IOS.md +++ b/System/IOS.md @@ -70,6 +70,7 @@ - [https://github.com/paulmillr/encrypted-dns](https://github.com/paulmillr/encrypted-dns) - 应用管理器 [https://github.com/milanvarady/Applite](https://github.com/milanvarady/Applite) - [https://devutils.com](https://devutils.com) +- 剪贴板 [https://github.com/s1ntoneli/Copi](https://github.com/s1ntoneli/Copi) * [https://macked.app](https://macked.app) diff --git a/System/README.md b/System/README.md index 2791d451..9529ea13 100644 --- a/System/README.md +++ b/System/README.md @@ -203,9 +203,6 @@ * [https://github.com/samboy/MaraDNS](https://github.com/samboy/MaraDNS) * [https://github.com/m13253/dns-over-https](https://github.com/m13253/dns-over-https) * [https://github.com/DNSCrypt/dnscrypt-proxy](https://github.com/DNSCrypt/dnscrypt-proxy) -* []() -* []() -* []() * [https://github.com/getdnsapi/stubby](https://github.com/getdnsapi/stubby) * [https://github.com/NetworkConfiguration/openresolv](https://github.com/NetworkConfiguration/openresolv) * [https://github.com/gdnsd/gdnsd](https://github.com/gdnsd/gdnsd) @@ -370,8 +367,9 @@ - [https://github.com/ClementTsang/bottom](https://github.com/ClementTsang/bottom) - [https://github.com/aksakalli/gtop](https://github.com/aksakalli/gtop) - [https://github.com/xxxserxxx/gotop](https://github.com/xxxserxxx/gotop) -- [https://github.com/aristocratos/btop](https://github.com/aristocratos/btop) - [https://github.com/htop-dev/htop](https://github.com/htop-dev/htop) +- [https://github.com/aristocratos/btop](https://github.com/aristocratos/btop) + - [还在用 top htop? 赶紧换 btop 吧,真香!](https://mp.weixin.qq.com/s/Qr-z0-zL44UjnItmDlsMzg) - [https://github.com/nicolargo/glances](https://github.com/nicolargo/glances) - [https://github.com/sysstat/sysstat](https://github.com/sysstat/sysstat) - [https://github.com/context-labs/mactop](https://github.com/context-labs/mactop) @@ -502,6 +500,7 @@ * [https://github.com/jellyfin/jellyfin](https://github.com/jellyfin/jellyfin) * [https://github.com/movie-web/movie-web](https://github.com/movie-web/movie-web) * 证件照 [https://github.com/zhbhun/idify](https://github.com/zhbhun/idify) +* [https://github.com/Zeyi-Lin/HivisionIDPhotos](https://github.com/Zeyi-Lin/HivisionIDPhotos) * 在线PS [https://github.com/viliusle/miniPaint](https://github.com/viliusle/miniPaint) * [https://zaixianps.net](https://zaixianps.net) * [https://github.com/CH563/shot-easy-website](https://github.com/CH563/shot-easy-website) @@ -563,6 +562,9 @@ * 汇编写的论坛 [https://asm32.info/fossil/asmbb](https://asm32.info/fossil/asmbb) * 二维码分享文件 [https://github.com/sz3/libcimbar](https://github.com/sz3/libcimbar) * 数字转中文 [https://github.com/Ailln/cn2an](https://github.com/Ailln/cn2an) +* 文字转图片 [https://github.com/byodian/oneimg](https://github.com/byodian/oneimg) +* 麻将游戏 [https://github.com/liumengniu/majiang](https://github.com/liumengniu/majiang) +* AI姿势 [https://github.com/AmyangXYZ/MiKaPo](https://github.com/AmyangXYZ/MiKaPo) diff --git "a/System/Windows\350\275\257\344\273\266.md" "b/System/Windows\350\275\257\344\273\266.md" index 29685cde..ada3cc01 100644 --- "a/System/Windows\350\275\257\344\273\266.md" +++ "b/System/Windows\350\275\257\344\273\266.md" @@ -1058,6 +1058,7 @@ THUV2-32HH7-6NMHN-PTX7Y-QQCTH(该序列号来自昔阳县政府) * [https://github.com/1Password](https://github.com/1Password) +* [https://github.com/ftyszyx/lockpass](https://github.com/ftyszyx/lockpass) * [https://authy.com](https://authy.com) * [https://github.com/momaek/authy](https://github.com/momaek/authy) * [https://github.com/BrandonPotter/GoogleAuthenticator](https://github.com/BrandonPotter/GoogleAuthenticator) diff --git "a/Web/JavaScript\346\241\206\346\236\266.md" "b/Web/JavaScript\346\241\206\346\236\266.md" index 70d1414f..9f142363 100644 --- "a/Web/JavaScript\346\241\206\346\236\266.md" +++ "b/Web/JavaScript\346\241\206\346\236\266.md" @@ -85,6 +85,7 @@ * [https://github.com/react-guide](https://github.com/react-guide) * [https://github.com/camsong/redux-in-chinese](https://github.com/camsong/redux-in-chinese) * [https://www.reduxjs.cn](https://www.reduxjs.cn) +* [https://github.com/onejs/one](https://github.com/onejs/one) * 状态管理 [https://github.com/pmndrs/valtio](https://github.com/pmndrs/valtio) * [https://github.com/facebookexperimental/Recoil](https://github.com/facebookexperimental/Recoil) * [https://www.recoiljs.cn](https://www.recoiljs.cn) @@ -147,6 +148,7 @@ * [https://github.com/PanJiaChen/vue-element-admin](https://github.com/PanJiaChen/vue-element-admin) +* 3D可视化 [https://github.com/hawk86104/icegl-three-vue-tres](https://github.com/hawk86104/icegl-three-vue-tres) ### VueJS框架