Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
bajins committed Sep 14, 2023
1 parent 145b442 commit 5df55ea
Show file tree
Hide file tree
Showing 21 changed files with 70 additions and 17 deletions.
1 change: 1 addition & 0 deletions Go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
* [https://github.com/golang101/golang101](https://github.com/golang101/golang101)
* [https://github.com/yongxinz/gopher](https://github.com/yongxinz/gopher)
* [https://github.com/gocn](https://github.com/gocn)
* [https://github.com/astaxie/build-web-application-with-golang](https://github.com/astaxie/build-web-application-with-golang)
* 日报 [https://github.com/bigwhite/gopherdaily](https://github.com/bigwhite/gopherdaily)


Expand Down
2 changes: 1 addition & 1 deletion IDE/Eclipse.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
-`@`不提示注解:`Window` -> `Preferences` -> `Java` -> `Editor` -> `Content Assist`
- `Advanced` 下把`java Proposals`勾上
- `Enable non-blocking completion(does not affect open editors)` 启用非阻塞完成(不影响打开的编辑器)
- `Window` -> `Preferences` -> `Java` -> `Editor` -> `Mark Occurences`
- 高亮显示 `Window` -> `Preferences` -> `Java` -> `Editor` -> `Mark Occurences`
- `Mark occurrences of the selected element in the current file.` 高亮显示选中的相同变量


Expand Down
1 change: 1 addition & 0 deletions IDE/Git服务.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ volumes:
+ [https://github.com/github](https://github.com/github)
+ 预览项目HTML [https://github.com/htmlpreview/htmlpreview.github.com](https://github.com/htmlpreview/htmlpreview.github.com)
+ 生成更新日志 [https://github.com/shipkit/shipkit-changelog](https://github.com/shipkit/shipkit-changelog)
* GitHub漫游指南 [https://github.com/phodal/github](https://github.com/phodal/github)
Expand Down
2 changes: 1 addition & 1 deletion IDE/软件安全.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* [https://github.com/coreruleset/coreruleset](https://github.com/coreruleset/coreruleset)
* [https://github.com/titansec/OpenWAF](https://github.com/titansec/OpenWAF)
* [http://www.modsecurity.cn](http://www.modsecurity.cn)

* 风险控制 [https://github.com/WalterInSH/risk-management-note](https://github.com/WalterInSH/risk-management-note)



Expand Down
17 changes: 9 additions & 8 deletions Java/Java第三方库.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@
+ [https://github.com/inferred/FreeBuilder](https://github.com/inferred/FreeBuilder)
+ [https://github.com/RichardWarburton/lambda-behave](https://github.com/RichardWarburton/lambda-behave)
+ [https://github.com/jasongoodwin/better-java-monads](https://github.com/jasongoodwin/better-java-monads)
+ [https://github.com/functionaljava/functionaljava](https://github.com/functionaljava/functionaljava)
+ 规则引擎 [https://github.com/j-easy](https://github.com/j-easy)
+ [Java规则引擎 Easy Rules](https://www.cnblogs.com/cjsblog/archive/2020/06/11/13088017.html)
+ 并发数据结构 [https://github.com/JCTools/JCTools](https://github.com/JCTools/JCTools)
Expand Down Expand Up @@ -482,7 +483,7 @@



**测试**
**测试/mock/faker**

+ [https://github.com/topics/mock](https://github.com/topics/mock)
+ [https://github.com/topics/mock-data](https://github.com/topics/mock-data)
Expand All @@ -493,31 +494,32 @@
+ [https://github.com/topics/data-generation](https://github.com/topics/data-generation)


> 所谓的mock就是创建一个类的虚假的对象,在测试环境中,用来替换掉真实的对象,以达到两大目的
> 所谓的mock就是创建一个类的虚假的对象,以达到expect-run-verify (期望-运行-验证)
> 1. 验证这个对象的某些方法的调用情况,调用了多少次,参数是什么等等;
> 2. 指定这个对象的某些方法的行为,返回特定的值,或者是执行特定的动作
* [https://github.com/junit-team](https://github.com/junit-team)
* [https://sourceforge.net/projects/dbunit](https://sourceforge.net/projects/dbunit)
* [https://github.com/piotrturski/zohhak](https://github.com/piotrturski/zohhak)
* [https://github.com/jqwik-team](https://github.com/jqwik-team)
* [https://github.com/easymock](https://github.com/easymock)
* [https://github.com/powermock/powermock](https://github.com/powermock/powermock)
* [https://github.com/mockito](https://github.com/mockito)
* [https://github.com/jmock-developers](https://github.com/jmock-developers)
* [https://github.com/jmockit](https://github.com/jmockit)
* [https://github.com/houbb/junitperf](https://github.com/houbb/junitperf)
* 测试 [https://github.com/testcontainers](https://github.com/testcontainers)
* [https://github.com/testcontainers](https://github.com/testcontainers)
* [https://github.com/testsigmahq](https://github.com/testsigmahq)
* [https://github.com/mock-server](https://github.com/mock-server)
* [https://github.com/GraphWalker](https://github.com/GraphWalker)
* [https://github.com/dreamhead/moco](https://github.com/dreamhead/moco)
* 单元测试 [https://github.com/mockito](https://github.com/mockito)
* [https://github.com/spockframework](https://github.com/spockframework)
* [https://github.com/jmock-developers](https://github.com/jmock-developers)
* [https://github.com/cbeust/testng](https://github.com/cbeust/testng)
* [https://github.com/google/truth](https://github.com/google/truth)
* [https://github.com/arquillian](https://github.com/arquillian)
* [https://github.com/awaitility/awaitility](https://github.com/awaitility/awaitility)
* [https://github.com/wiremock/wiremock](https://github.com/wiremock/wiremock)
* [https://github.com/TNG/ArchUnit](https://github.com/TNG/ArchUnit)
* [https://github.com/jmockit](https://github.com/jmockit)
* [https://github.com/jumper2014/fast-test](https://github.com/jumper2014/fast-test)
* 生成测试数据 [https://github.com/jsonzou/jmockdata](https://github.com/jsonzou/jmockdata)
* [https://github.com/szpak/mockito-java8](https://github.com/szpak/mockito-java8)
Expand All @@ -529,7 +531,6 @@
* [https://github.com/Double-O-Seven/stubr](https://github.com/Double-O-Seven/stubr)
* [https://github.com/autonomx](https://github.com/autonomx)
* [https://github.com/dbunit/dbunit-mirror](https://github.com/dbunit/dbunit-mirror)
* [https://github.com/easymock](https://github.com/easymock)
* [https://github.com/datafaker-net/datafaker](https://github.com/datafaker-net/datafaker)
* [https://github.com/instancio/instancio](https://github.com/instancio/instancio)
* [https://github.com/Terracotta-OSS/angela](https://github.com/Terracotta-OSS/angela)
Expand All @@ -538,7 +539,6 @@
* [https://github.com/intuit/karate](https://github.com/intuit/karate)
* [https://github.com/kevin-wang001/mockj](https://github.com/kevin-wang001/mockj)
* [https://github.com/mtedone/podam](https://github.com/mtedone/podam)
* 模糊测试
* [https://gitlab.com/gitlab-org/security-products/analyzers/fuzzers](https://gitlab.com/gitlab-org/security-products/analyzers/fuzzers)

- [https://github.com/mryingjie/common-insert](https://github.com/mryingjie/common-insert)
Expand All @@ -553,6 +553,7 @@
+ [https://github.com/topics/shiro](https://github.com/topics/shiro)
+ [https://github.com/johntostring/spring-boot-shiro](https://github.com/johntostring/spring-boot-shiro)
+ [https://github.com/YuxingXie/shiro](https://github.com/YuxingXie/shiro)
+ [https://github.com/waylau/apache-shiro-1.2.x-reference](https://github.com/waylau/apache-shiro-1.2.x-reference)
+ [https://github.com/resteasy](https://github.com/resteasy)
+ [https://github.com/vaadin](https://github.com/vaadin)
+ [https://github.com/allwefantasy/ServiceFramework](https://github.com/allwefantasy/ServiceFramework)
Expand Down
10 changes: 9 additions & 1 deletion Other/Bookmarks.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
* [https://www.adobe.io/open](https://www.adobe.io/open)
* [https://github.com/redhatofficial](https://github.com/redhatofficial)
* [https://redhatofficial.github.io](https://redhatofficial.github.io)

* [https://github.com/airbnb](https://github.com/airbnb)


- [https://github.com/TogetherOS](https://github.com/TogetherOS)
Expand Down Expand Up @@ -142,13 +142,16 @@
+ [https://github.com/topics/awesome-list](https://github.com/topics/awesome-list)


* [https://github.com/trackawesomelist/trackawesomelist](https://github.com/trackawesomelist/trackawesomelist)
* [https://www.trackawesomelist.com](https://www.trackawesomelist.com)
* [https://awesomeopensource.com](https://awesomeopensource.com)
* [https://github.com/sindresorhus/awesome](https://github.com/sindresorhus/awesome)
* [https://github.com/icopy-site/awesome-cn](https://github.com/icopy-site/awesome-cn)
* [思维导图](https://github.com/search?o=desc&q=%E6%80%9D%E7%BB%B4%E5%AF%BC%E5%9B%BE&s=updated&type=Repositories)
* [https://github.com/polaris1119/awesome-cheatsheets-cn](https://github.com/polaris1119/awesome-cheatsheets-cn)
* [https://github.com/rstacruz/cheatsheets](https://github.com/rstacruz/cheatsheets)
* 学习主题清单 [https://github.com/jwasham/coding-interview-university](https://github.com/jwasham/coding-interview-university)
* [https://github.com/YuzheSHI/awesome-agi-cocosci](https://github.com/YuzheSHI/awesome-agi-cocosci)
* [https://github.com/tuteng/Best-websites-a-programmer-should-visit-zh](https://github.com/tuteng/Best-websites-a-programmer-should-visit-zh)
* [https://github.com/yangshun/tech-interview-handbook](https://github.com/yangshun/tech-interview-handbook)
* [https://github.com/practical-tutorials/project-based-learning](https://github.com/practical-tutorials/project-based-learning)
Expand Down Expand Up @@ -233,6 +236,11 @@
* [设计师口袋心理学](https://iason.notion.site/6719c7650fd1406c92287f556520fbc3)
* [认知偏差知识手册](https://s75w5y7vut.feishu.cn/docs/doccn3BatnScBJe7wD7K3S5poFf)
* [认知偏差](https://colossal-riddle-1431.glideapp.io)
* [https://github.com/debitCrossBlockchain/renzhengfei](https://github.com/debitCrossBlockchain/renzhengfei)
* [https://github.com/fenwii/huaweimind](https://github.com/fenwii/huaweimind)
* [https://github.com/xiaolai/everyone-can-use-english](https://github.com/xiaolai/everyone-can-use-english)
* [https://github.com/PKUanonym/REKCARC-TSC-UHT](https://github.com/PKUanonym/REKCARC-TSC-UHT)
* [https://github.com/QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles)



Expand Down
4 changes: 4 additions & 0 deletions Other/Markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
* [https://github.com/pycco-docs/pycco](https://github.com/pycco-docs/pycco)
* [https://github.com/Python-Markdown/markdown](https://github.com/Python-Markdown/markdown)
* [https://github.com/jgm/pandoc](https://github.com/jgm/pandoc)
* [https://github.com/missive/emoji-mart](https://github.com/missive/emoji-mart)
* [https://github.com/rickstaa/github-emoji-picker](https://github.com/rickstaa/github-emoji-picker)
* [https://github.com/Awes0meM4n/Awes0meM4n.github.io](https://github.com/Awes0meM4n/Awes0meM4n.github.io)



Expand Down Expand Up @@ -547,6 +550,7 @@ string &operator+(const string& A,const string& B) //cpp
* [https://github.com/aguang-xyz/aurora-editor](https://github.com/aguang-xyz/aurora-editor)
* 笔记 [https://github.com/laurent22/joplin](https://github.com/laurent22/joplin)
* [https://github.com/evernote](https://github.com/evernote)
* [https://github.com/leanote](https://github.com/leanote)
* [https://github.com/zadam/trilium](https://github.com/zadam/trilium)
* [https://github.com/flxzt/rnote](https://github.com/flxzt/rnote)
* [https://github.com/pbek/QOwnNotes](https://github.com/pbek/QOwnNotes)
Expand Down
1 change: 1 addition & 0 deletions Other/专业术语.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
- 系统测试
- 单元测试
- 基准测试
- 模糊测试
- 持续开发
- 持续集成
- 持续构建
Expand Down
3 changes: 3 additions & 0 deletions Other/书籍和博客.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@
## 技术博客

+ [https://github.com/timqian/chinese-independent-blogs](https://github.com/timqian/chinese-independent-blogs)
+ [https://github.com/peterc/engblogs](https://github.com/peterc/engblogs)


* [有赞权限系统(SAM)](https://tech.youzan.com/sam)
* [美团技术团队](https://tech.meituan.com)
Expand Down Expand Up @@ -188,6 +190,7 @@
* [https://hellogitlab.com](https://hellogitlab.com)
* [https://gitee.com/crazymaker/SimpleCrayIM](https://gitee.com/crazymaker/SimpleCrayIM)
* [https://www.lzskyline.com](https://www.lzskyline.com)
* [https://github.com/isno/theByteBook](https://github.com/isno/theByteBook)



Expand Down
7 changes: 5 additions & 2 deletions PL/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
## Flag

**千万不要尝试用记忆力去替代自己的理解力!**
- 代码不是靠死记硬背,而是不停的写、不停的思考,在反复的练习中熟练掌握的。
- 编程需要学习记住的是:不同的场景中一些实现方式的原理机制、思维方式,如:设计模式、排序算法、数据结构等,而不是具体的代码。
> 代码不是靠死记硬背,而是不停的写、不停的思考,在反复的练习中熟练掌握的。
>
> 编程需要学习记住的是:不同的场景中一些实现方式的原理机制、思维方式,如:设计模式、排序算法、数据结构等,而不是具体的代码。
- [我在 20 年的软件工程师生涯中学到的事情](https://github.com/ruanyf/weekly/blob/master/docs/issue-267.md#%E6%96%87%E6%91%98)
- [自学编程的八大误区!克服它!](https://mp.weixin.qq.com/s/r_vm7lA2Ul_ZFhkx60wplg)
- [https://github.com/easychen/stack-roadmap](https://github.com/easychen/stack-roadmap)
Expand Down Expand Up @@ -291,6 +293,7 @@
* [https://github.com/basarat/typescript-book](https://github.com/basarat/typescript-book)


- [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped)
- 静态分析 [https://github.com/kaleidawave/ezno](https://github.com/kaleidawave/ezno)
- [https://github.com/total-typescript/ts-reset](https://github.com/total-typescript/ts-reset)
- [https://github.com/JDFED](https://github.com/JDFED)
Expand Down
1 change: 1 addition & 0 deletions PL/技术概念.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@


* [https://github.com/labuladong/fucking-algorithm](https://github.com/labuladong/fucking-algorithm)
* [https://github.com/maemual/raft-zh_cn](https://github.com/maemual/raft-zh_cn)

> 排序、双指针、查找、分治、动态规划、递归、回溯、贪心、位运算、DFS、BFS、图
Expand Down
1 change: 1 addition & 0 deletions PL/文档处理.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@
* [https://github.com/d-band/better-xlsx](https://github.com/d-band/better-xlsx)
* [https://github.com/dream-num](https://github.com/dream-num)
* [https://github.com/ag-grid/ag-grid](https://github.com/ag-grid/ag-grid)
* [https://github.com/myliang/x-spreadsheet](https://github.com/myliang/x-spreadsheet)
* TableExport [https://github.com/clarketm/TableExport](https://github.com/clarketm/TableExport)
* tableExport.jquery.plugin [https://github.com/hhurz/tableExport.jquery.plugin](https://github.com/hhurz/tableExport.jquery.plugin)
* excellentexport [https://github.com/jmaister/excellentexport](https://github.com/jmaister/excellentexport)
Expand Down
1 change: 1 addition & 0 deletions Python/Python第三方库.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
* [https://github.com/pallets/flask](https://github.com/pallets/flask)
* [https://dormousehole.readthedocs.io](https://dormousehole.readthedocs.io)
* [https://github.com/greyli/helloflask](https://github.com/greyli/helloflask)
* [https://github.com/vincentmi/vnzmi](https://github.com/vincentmi/vnzmi)
* [https://github.com/Pylons](https://github.com/Pylons)
* [https://github.com/bottlepy/bottle](https://github.com/bottlepy/bottle)
* [https://github.com/frappe/frappe](https://github.com/frappe/frappe)
Expand Down
8 changes: 4 additions & 4 deletions Python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
* [https://github.com/cycleuser/ThinkPython-CN](https://github.com/cycleuser/ThinkPython-CN)


* [FantixKing 的个人主页-掘金](https://juejin.cn/user/4372110956833581/posts)
+ [Python中的GIL机制详解](https://zhuanlan.zhihu.com/p/353555643)
+ [深挖python上下文管理——类的__init____enter____exit____del__在with下的表现](https://blog.csdn.net/qq_27884799/article/details/101535569)
+ [深入理解 Python 中的上下文管理器](https://www.cnblogs.com/wongbingming/p/10519553.html)
- [FantixKing 的个人主页-掘金](https://juejin.cn/user/4372110956833581/posts)
- [Python中的GIL机制详解](https://zhuanlan.zhihu.com/p/353555643)
- [深挖python上下文管理——类的__init____enter____exit____del__在with下的表现](https://blog.csdn.net/qq_27884799/article/details/101535569)
- [深入理解 Python 中的上下文管理器](https://www.cnblogs.com/wongbingming/p/10519553.html)

```python
test = Test() # 触发__del__
Expand Down
2 changes: 2 additions & 0 deletions Shell/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
- [https://github.com/idank/explainshell](https://github.com/idank/explainshell)
- [https://www.shellscript.sh](https://www.shellscript.sh)
- [https://math.ecnu.edu.cn/~jypan/Teaching/Linux](https://math.ecnu.edu.cn/~jypan/Teaching/Linux)
- [https://github.com/qinjx/30min_guides](https://github.com/qinjx/30min_guides)
- GUI [什么是X11-Forwarding](https://blog.csdn.net/weixin_41668084/article/details/113361765)
- 命令行基准测试工具 [https://github.com/sharkdp/hyperfine](https://github.com/sharkdp/hyperfine)
- [https://github.com/chinanf-boy/hyperfine-zh](https://github.com/chinanf-boy/hyperfine-zh)




**命令助手**

- 命令补全 [https://github.com/scop/bash-completion](https://github.com/scop/bash-completion)
Expand Down
3 changes: 3 additions & 0 deletions System/Android.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@
+ [https://github.com/Trinea/android-open-project](https://github.com/Trinea/android-open-project)


* [https://github.com/chrisbanes](https://github.com/chrisbanes)
* [https://github.com/JakeWharton](https://github.com/JakeWharton)
* [https://github.com/hehonghui](https://github.com/hehonghui)
* [https://github.com/dlew](https://github.com/dlew)
* [https://github.com/litao0621](https://github.com/litao0621)
Expand Down Expand Up @@ -304,6 +306,7 @@
* [https://github.com/dmytrodanylyk/circular-progress-button](https://github.com/dmytrodanylyk/circular-progress-button)
* [https://github.com/material-components](https://github.com/material-components)
* [https://github.com/lapism/search](https://github.com/lapism/search)
* [https://github.com/airbnb/lottie-android](https://github.com/airbnb/lottie-android)
* 多点触控 [https://github.com/DeviceFarmer/minitouch](https://github.com/DeviceFarmer/minitouch)
* [https://github.com/MaaAssistantArknights/MaaTouch](https://github.com/MaaAssistantArknights/MaaTouch)
* 密码存储 [https://github.com/android-password-store](https://github.com/android-password-store)
Expand Down
2 changes: 2 additions & 0 deletions Web/CSS.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
* [https://github.com/windicss/windicss](https://github.com/windicss/windicss)
* [https://github.com/tailwindlabs/tailwindcss](https://github.com/tailwindlabs/tailwindcss)
* [https://www.tailwindcss.cn](https://www.tailwindcss.cn)
* [https://github.com/mdbootstrap/Tailwind-Elements](https://github.com/mdbootstrap/Tailwind-Elements)
* [https://github.com/sailboatui/sailboatui](https://github.com/sailboatui/sailboatui)
* [https://github.com/dufu1991/stdf](https://github.com/dufu1991/stdf)
* [https://github.com/FullHuman/purgecss](https://github.com/FullHuman/purgecss)
Expand All @@ -154,6 +155,7 @@
* [https://www.flaticon.com/authors/freepik](https://www.flaticon.com/authors/freepik)
* [https://glyphicons.com](https://glyphicons.com)
* [https://iconbuddy.app](https://iconbuddy.app)
* [https://useanimations.com](https://useanimations.com)


- [最受程序员欢迎的 20 个 CSS 框架](https://www.fuocu.cn/archives/css-frame)
Expand Down
1 change: 1 addition & 0 deletions Web/JavaScript.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
- [https://mujs.com](https://mujs.com)
- [https://github.com/gfwilliams/tiny-js](https://github.com/gfwilliams/tiny-js)
- [https://github.com/cesanta/v7](https://github.com/cesanta/v7)
- [https://github.com/zurb/tribute](https://github.com/zurb/tribute)



Expand Down
Loading

0 comments on commit 5df55ea

Please sign in to comment.