├── .gitignore ├── LICENSE ├── README.md └── assets └── heroku.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.config.toml 2 | *.idea/ 3 | *.~$lock 4 | **/.idea 5 | *./__pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Resource 2 | ![user-repo](https://img.shields.io/badge/MaiXiaochai-Resource-brightgreen?style=float-square&logo=github&?link=https://github.com/MaiXiaochai/Resource) ![GitHub last commit](https://img.shields.io/github/last-commit/MaiXiaochai/Resource?style=flat-square) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/MaiXiaochai/Resource?style=flat-square) ![GitHub commits since tagged version (branch)](https://img.shields.io/github/commits-since/MaiXiaochai/Resource/v0.0.1/master?style=flat-square) ![GitHub contributors](https://img.shields.io/github/contributors/MaiXiaochai/Resource?style=flat-square) ![GitHub repo size](https://img.shields.io/github/repo-size/MaiXiaochai/Resource?style=flat-square) 3 | 4 | 收集的一些优质的资源,不定期更新。也欢迎通过`PR`补充。 5 | 6 | --- 7 | 8 | ##### 1. 猿奋 9 | 10 | + **自托管项目集合** 11 | + [awesome-selfhosted,包含各种各样的自托管项目源码](https://github.com/awesome-selfhosted/awesome-selfhosted) 12 | + **可视化** 13 | + [`cutecharts`,轻量,手绘风图表](https://github.com/cutecharts/cutecharts.py) 14 | + `streamlit`,`Python`三方库,数据可视化框架 15 | 16 | + **服务器** 17 | + [heroku, 云平台即服务,网易邮箱和QQ邮箱不能用于注册](https://www.heroku.com/) 18 | + ![image-20211223151237562](assets/heroku.png) 19 | + **跨平台应用开发** 20 | + [**Electron—用javaScript、HTML和CSS构建跨平台的桌面应用**](https://www.electronjs.org/) 21 | + **开发的应用** 22 | + Visual Studio Code 23 | + WhatsApp 24 | + Twitch 25 | + Slack 26 | + InVision 27 | + **Typora** 28 | + **[Flutter](https://flutter.dev/)** 29 | + **编程语言** 30 | + **GoLang** 31 | + [Go by example—中文版](https://books.studygolang.com/gobyexample/) 32 | + **Python** 33 | + **基础入门+进阶** 34 | + [**Python 中文指南**](https://python.iswbm.com) 35 | + [**Python 3 标准库实例教程**](https://learnku.com/docs/pymotw) 36 | + [**Pycharm中文指南**](https://pycharm.iswbm.com/) 37 | + **进阶** 38 | + [**Python3-cookbook**](https://python3-cookbook.readthedocs.io) 39 | + [Python黑魔法指南](https://magic.iswbm.com) 40 | + **爬虫**:[Scrapy Cookbook](https://scrapy-cookbook.readthedocs.io/zh_CN/latest/) 41 | + [Django Web框架](https://developer.mozilla.org/zh-CN/docs/learn/Server-side/Django) 42 | + [Django REST Framework](https://zhuanlan.zhihu.com/djstudyteam) 43 | + [Flask官方文档](http://www.pythondoc.com/flask/index.html) 44 | + [Flask系统学习](http://www.pythondoc.com/) 45 | + [魔法学院:Python (这个可能付费,但是免费的部分也有很多高质量内容)](http://www.nowamagic.net/academy/category/13/) 46 | + [Python3源码剖析(完善中)](https://flaggo.github.io/python3-source-code-analysis/) 47 | + [Python3.6源码分析](https://he11olx.com/) 48 | + [Python3.8源码剖析(英文)](https://realpython.com/cpython-source-code-guide/) 49 | + [Python Tips 设计模式](http://www.pythontip.com/python-patterns/detail/abstract_factory) 50 | + **Python资源类** 51 | + [书栈网](https://www.bookstack.cn/rank?tab=popular) 52 | + [awesome-python](https://github.com/iswbm/awesome-python-cn) 53 | + [PyCrumbs](https://github.com/kirang89/pycrumbs) 54 | + [Python中文学习大本营](http://www.pythondoc.com/) 55 | + **Python待测试资源** 56 | + `GUI`库:`Gooey`(比`Thinker`简单)、`Thinker`(传统`Python``GUI`库) 57 | + **算法** 58 | + [Data Structure Visualizations (算法可视化)](https://www.cs.usfca.edu/~galles/visualization/Algorithms.html) 59 | + [基于LeetCode,举一反三,通俗易懂](https://github.com/labuladong/fucking-algorithm) 60 | + [AlgorithmsByPython-LeetCode (用Python写成的算法)](https://github.com/Jack-Lee-Hiter/AlgorithmsByPython) 61 | + [Learn X in Y minutes(包括很多简短的入门教程--算法、编程语言、开发工具)](https://learnxinyminutes.com/) 62 | + **网络安全** 63 | + **硬件** 64 | + [网络安全硬件列表](https://github.com/yadox666/The-Hackers-Hardware-Toolkit) 65 | + **论坛和网站** 66 | * [看雪论坛](https://bbs.pediy.com) 67 | * [吾爱破解](https://www.52pojie.cn) 68 | * [JarvisOJ—浙江大学系统安全实验室CTF在线答题系统](https://www.jarvisoj.com/) 69 | * [BUUCTF—安恒网安学习平台](https://buuoj.cn/challenges) 70 | * [websec](http://www.websec.fr) 71 | * [ringzeroctf—国外,范围广](https://ringzer0ctf.com/) 72 | * [wargames—基于游戏的学习安全技术和概念的网站](http://overthewire.org/wargames/) 73 | + **媒体** 74 | * [Freebuf](https://www.freebuf.com/) 75 | * [安全牛](https://www.aqniu.com/) 76 | * [安全客](https://www.anquanke.com/) 77 | + **安全研究团队** 78 | * [玄武安全实验室(腾讯,**tombkeeper**领导)](https://xlab.tencent.com/cn/) 79 | * [科恩安全实验室(腾讯 **吴石**)](https://keenlab.tencent.com/zh/index.html) 80 | * [360核心安全技术博客](https://blogs.360.cn/) 81 | * [冰刃实验室](https://www.iceswordlab.com/) 82 | * [国外大佬**j00ru**的安全博客](https://j00ru.vexillium.org/) 83 | + **其它资料** 84 | + [《365天获取玄武实验室工作》](https://github.com/Vancir/365-days-get-xuanwulab-job) 85 | + **计算机网络** 86 | + [《HTTP API设计指南》](https://github.com/ZhangBohan/http-api-design-ZH_CN) 87 | + **数学** 88 | + [可视化概率论网站](https://seeing-theory.brown.edu/cn.html) 89 | + **英语** 90 | + [A路人--B站Up主,幽默的方式讲解各种英语疑难杂症](https://space.bilibili.com/391679/channel/detail?cid=62387) 91 | + [每日英语听力(APP和网站)点击句子,视频跳转到相应位置](http://dict.eudic.net/ting) 92 | + [译学馆--英语视频翻译](https://www.yxgapp.com/) 93 | + **机器学习** 94 | + [机器学习路线图(中文)](https://ailearning.apachecn.org/) 95 | + [《可解释的机器学习--黑盒模型可解释性理解指南》](https://github.com/MingchaoZhu/InterpretableMLBook) 96 | + [卷积神经网络可视化](https://github.com/poloclub/cnn-explainer) 97 | + [中文机器学习资源](https://github.com/apachecn/AiLearning) 98 | + [Lyft的云原生机器学习和数据处理平台—Flyte](https://flyte.org/) 99 | + **各种命令** 100 | + [各种命令查询](http://lnmp.ailinux.net/) 101 | + **架构** 102 | + [《云原生基础架构中文版》](https://github.com/rootsongjc/cloud-native-infra/releases/tag/v20200214) 103 | + **技能** 104 | + [Git学习—操作可视化,界面友好](https://learngitbranching.js.org/) 105 | + [`README.md`中标签的生成和使用](https://shields.io/) 106 | 107 | ##### 2. **电子书** 108 | 109 | + **`IT`技术** 110 | + [salttiger--编程类英文原版](https://salttiger.com/) 111 | + [技术书籍](https://github.com/KeKe-Li/books) 112 | + **非`IT`** 113 | + [皮皮书屋(2022-10-09可用)](https://www.pipibook.com/) 114 | + [ZLibrary.Global(中外文都能搜到,**[ 需科学上网]**](https://1lib.us/) 115 | + [古腾堡计划(Project Gutenberg)--始于 1971](https://dev.gutenberg.org/) 116 | + [Library Genesis--电子书搜索,**[ 需科学上网]**](http://gen.lib.rus.ec/) 117 | + [电子版图书--鸠摩搜索](https://www.jiumodiary.com/) 118 | + [读书小站--百度网盘下载](https://ibooks.org.cn/) 119 | + [中国国家数字图书馆--注册后可在线阅读](http://www.nlc.cn/) 120 | 121 | 122 | ##### 3. 工具 123 | 124 | + **信息检索** 125 | + [中国大百科全书数据库](http://h.bkzx.cn/) 126 | + [英文字母转ASCII码画](http://patorjk.com/software/taag/#p=display&f=Graffiti&t=Type%20Something%20) 127 | + [物联网设备搜索](https://www.shodan.io/) 128 | + [人脸搜索-5亿网站数据匹配](https://pimeyes.com) 129 | + [微软系统镜像下载站](http://msdn.itellyou.cn/) 130 | + [ip定位](https://www.opengps.cn/Data/IP/LocHighAcc.aspx) 131 | + **视频** 132 | * [视频开头制作-panzoid](https://panzoid.com/) 133 | + **字体** 134 | * [字体家-免费商用字体](https://www.zitijia.com/) 135 | + **论文** 136 | * [iData-论文搜索下载](https://www.cn-ki.net/) 137 | + **仿真** 138 | + [物理引擎--taichi(Python)](https://github.com/taichi-dev/taichi) 139 | + **设计** 140 | + [Dimensions--物体尺寸库](https://www.dimensions.guide/) 141 | + [RemoveBG--在线抠图](https://www.remove.bg/zh) 142 | + [各种前端效果源码](http://www.jq22.com/) 143 | + **PPT** 144 | + **灵感** 145 | + [envato--设计界的领头羊](https://elements.envato.com/) 146 | + [原创馆--灵感](https://ycg.qq.com/) 147 | + **图片** 148 | + [泼辣有图--免版权高清图片](http://www.polayoutu.com/collections) 149 | + **字体** 150 | + [求字体网--可用截图找字体](http://www.qiuziti.com/) 151 | + [字体天下--各类字体大全](http://www.fonts.net.cn/) 152 | + [FreeChineseFont--中文字体免费下载](https://www.freechinesefont.com/) 153 | + [FontSpace--免费英文字体下载](https://www.fontspace.com/) 154 | + [UrbanFonts--免费英文字体下载](https://www.urbanfonts.com/) 155 | + **配色** 156 | + [中国色--各种中国传统颜色](http://zhongguose.com/) 157 | + [WebGradients--渐变配色](https://webgradients.com/) 158 | + [ColorHunt--每天更新配色](https://colorhunt.co/) 159 | + **模板** 160 | + [优品PPT](http://www.ypppt.com/) 161 | + [51PPT](http://www.51pptmoban.com/) 162 | + [叮当设计](http://www.dingdangsheji.com/) 163 | ##### 4. 软件 164 | 165 | + [Typora—MarkDown编辑器](https://www.typora.io/) 166 | + [KeePassXC (本地密码保存和生成软件)](https://github.com/keepassxreboot/keepassxc) 167 | + [GifCam—小巧强悍的Gif录制工具](http://blog.bahraniapps.com/gifcam/) 168 | + [Captura—录屏软件](https://github.com/MathewSachin/Captura) 169 | + [Cloaker—轻量文件加密软件](https://github.com/spieglt/Cloaker) 170 | + [Diffinity—文件对比软件(轻量级)](http://truehumandesign.se/s_diffinity.php) 171 | + [SpaceDesk—把另外任意一块屏幕作为第二屏的软件(科学上网)](https://spacedesk.net/) 172 | + [EasyService—让程序以 Windows 系统服务的方式,无窗口运行](https://github.com/pandolia/easy-service) 173 | + **B站:** 174 | + [跨平台,B站视频下载软件](https://github.com/blogwy/BilibiliVideoDownload) 175 | 176 | 177 | ##### 5. 教程 178 | 179 | + **历史** 180 | + [全历史--优质历史展现网站](https://www.allhistory.com/) 181 | + **专业课程** 182 | + [中国大学MOOC](https://www.icourse163.org/) 183 | + [可汗学院--英文优质学校课程](https://www.khanacademy.org/) 184 | + [学堂在线--有优质院校课程](https://next.xuetangx.com/) 185 | + [超星尔雅--读书和课程](http://erya.mooc.chaoxing.com/) 186 | + **软件技能** 187 | + [doyoudo--软件教学网站](https://www.doyoudo.com/) 188 | 189 | * **Web** 190 | * [矢量图标](https://www.iconfont.cn/) 191 | * [flaction-免费扁平图标搜索](https://www.flaticon.com/) 192 | * [WebGradients--渐变配色](https://webgradients.com/) 193 | * [Flask前后分离](https://frostming.com/tag/flask) 194 | * [用Hexo搭建Github主页](http://blog.haoji.me/build-blog-website-by-hexo-github.html?from=xa) 195 | * [hexo主题选择页](https://hexo.io/themes/) 196 | * [GoDaddy域名购买网站](https://sg.godaddy.com/zh) 197 | * **后台管理模板** 198 | + [tabler(Bootstrap4)]( https://github.com/tabler/tabler ) 199 | + [ ant-design-pro ]( https://github.com/ant-design/ant-design-pro ) 200 | + [ngx-admin(Angular8/Nebular)]( https://github.com/akveo/ngx-admin ) 201 | 202 | ##### 6. 自媒体 203 | 204 | + [今日热榜--追热点神器](https://tophub.today/) 205 | + [考拉新媒体导航--新媒体人必备神器](https://www.kaolamedia.com/) 206 | + [公众号文章编辑排版-MarkDown](https://doocs.gitee.io/md/) 207 | + [GitMind--在线免费思维导图制作](https://gitmind.cn/) 208 | 209 | ##### 7. 超清壁纸 210 | 211 | + [wallhaven](http://wallhaven.cc/) 212 | + [netbian](https://pic.netbian.com/) 213 | 214 | ##### 8.硬件 215 | 216 | - 台式机组装配置网站 217 | - [365pcbuy](https://www.365pcbuy.com/) 218 | 219 | - CPU 220 | - [CPU天梯-超能网](https://topic.expreview.com/CPU/) 221 | - 显卡 222 | - [显卡天梯-超能网](https://topic.expreview.com/GPU/) 223 | 224 | + **显示器** 225 | + [显示器信息参数查询网站](https://www.displayspecifications.com/) 226 | + [面板信息查询网站](https://www.panelook.cn/) 227 | + **显示器测评网站** 228 | + [rtings](www.rtings.com) 229 | + [tftcentral](https://tftcentral.co.uk/) 230 | + [刷新率测试-testufo](https://www.testufo.com/) 231 | + **硬盘** 232 | + `BackBlaze`年度硬盘报告 233 | + `RAID`(待完善) 234 | + **台式机电源** 235 | + [电源天梯](https://topic.expreview.com/Power/) 236 | + 五毛钱或者以上一瓦的都是好电源 237 | 238 | + **手柄** 239 | + 性能测试网站 240 | + https://gamepad-tester.com/ 241 | 242 | ##### 9. 应急储备 243 | 244 | + [根据已有粮食生成菜谱](https://cook.yunyoujun.cn/) 245 | 246 | ##### 10. 其它 247 | 248 | + [乳腺癌AI检测(需要科学上网)](http://mammo.neuralrad.com:5300/) 249 | 250 | + **红与黑** 251 | + [维基百科-600G敏感文件](https://file.wikileaks.org/file/) 252 | + **其它优秀资源分享地址** 253 | + [awesome,分享各种东西](https://github.com/sindresorhus/awesome) 254 | 255 | 256 | --- 257 | + 作者:[maixiaochai](https://github.com/MaiXiaochai) 258 | + Email: maixiaochai@outlook.com 259 | 260 | -------------------------------------------------------------------------------- /assets/heroku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaiXiaochai/Resource/67b92bd74a3264fe5f6890f42bc470669f734554/assets/heroku.png --------------------------------------------------------------------------------