├── pattern └── README.md ├── algorithm └── README.md ├── README.md ├── net └── README.md ├── manage └── README.md └── github └── README.md /pattern/README.md: -------------------------------------------------------------------------------- 1 | ### 设计模式 2 | 3 | #### [design-patterns](https://github.com/oxnz/design-patterns) 4 | > 通过示例代码介绍编程过程中常见的设计模式。示例代码使用的语言包括但不限于C++, Java, Python, PHP, Perl. 5 | 6 | #### [java-design-patterns](https://github.com/iluwatar/java-design-patterns) 7 | 8 | #### [Android源码设计模式分析项目](https://github.com/simple-android-framework-exchange/android_design_patterns_analysis) 9 | -------------------------------------------------------------------------------- /algorithm/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### 算法 3 | 4 | #### [力扣](https://leetcode-cn.com/) 5 | 6 | #### [leetcode](https://leetcode.com/) 7 | 8 | #### [visualgo](https://visualgo.net/zh) 9 | > 数据结构和算法可视化 10 | 11 | #### [LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation) 12 | 13 | #### [七月算法](http://ask.julyedu.com/) 14 | 15 | #### [July的博客](http://blog.csdn.net/v_july_v) 16 | 17 | #### [Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms) 18 | 19 | #### [Algorithms](https://github.com/pedrovgs/Algorithms) 20 | > Solutions for some common algorithm problems written in Java. 21 | 22 | #### [swift-algorithm-club](https://github.com/hollance/swift-algorithm-club) 23 | > Swift算法学习集锦 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ProjectDevelopment 2 | 项目开发相关资源整理 3 | * algorithm:主要整理算法等文章。 4 | * github:主要整理GitHub上面的资源集。 5 | * manage:积累项目开发中项目管理方面的文章。 6 | * net:积累网络编程、通信协议等方面的知识文章。 7 | * pattern:积累设计模式文章。 8 | 9 | ### 格式: 10 | #### 资源名称 11 | > 用概括性的话对资源做简单描述。 12 | 13 | ### 其它相关: 14 | 15 | > * 移动开发在线分享开发工具库:[DevelopmentTools](https://github.com/MobDevGroup/DevelopmentTools) 16 | 17 | > * 移动开发在线分享移动设计库:[MobileDesign](https://github.com/MobDevGroup/MobileDesign) 18 | 19 | > * 移动开发在线分享开Android开发资源库:[AndroidResources](https://github.com/MobDevGroup/AndroidResources) 20 | 21 | > * 移动开发在线分享iOS开发资源库:[iOSResources](https://github.com/MobDevGroup/iOSResources) 22 | 23 | > * 移动开发在线分享前端资源库:[HTML5Resources](https://github.com/MobDevGroup/HTML5Resources) 24 | -------------------------------------------------------------------------------- /net/README.md: -------------------------------------------------------------------------------- 1 | ### 网络编程 2 | 3 | #### [RESTful Service API 设计最佳工程实践和常见问题解决方案](http://www.macode.net/restful-service-api-design-best-practise/) 4 | 5 | #### [移动端基于 Cursor Based Pagination 的实时数据分页](http://www.sitepoint.com/paginating-real-time-data-cursor-based-pagination/) 6 | 7 | #### [Twitter时间线分页方案](https://dev.twitter.com/rest/public/timelines) 8 | 9 | #### [在淘宝上买件东西,背后发生了什么?](http://blog.jobbole.com/98501/) 10 | 11 | #### [RESTful 架构风格概述](http://blog.igevin.info/posts/restful-architecture-in-general/) 12 | 13 | #### [jsonapi](http://jsonapi.org/) 14 | > 用 JSON 构建 API 的标准指南,开源库[地址](https://github.com/json-api/json-api) 15 | 16 | #### [用 JSON 构建 API 的标准指南](http://jsonapi.org.cn/) 17 | > 上面的中文版 开源库[地址](https://github.com/justjavac/json-api-zh_CN) 18 | 19 | #### [最好的8个 Java RESTful 框架](http://colobu.com/2015/11/15/best-available-java-restful-micro-frameworks/?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io) 20 | 21 | #### [java-jwt](https://github.com/auth0/java-jwt) 22 | > Java implementation of JSON Web Token (JWT) 23 | 24 | #### [jjwt](https://github.com/jwtk/jjwt) 25 | > Java JWT: JSON Web Token for Java 26 | 27 | #### [RESTful Api 身份认证中的安全性设计探讨](https://mengkang.net/625.html) 28 | 29 | #### [REST API 安全设计指南](http://blog.nsfocus.net/rest-api-design-safety/?comefrom=http://blogread.cn/news/) 30 | 31 | #### [使用 AngularJS & NodeJS 实现基于 token 的认证应用](http://zhuanlan.zhihu.com/FrontendMagazine/19920223) 32 | 33 | #### [gs-rest-service](https://github.com/spring-guides/gs-rest-service) 34 | > Building a RESTful Web Service :: Learn how to create a RESTful web service with Spring. 35 | 36 | #### [Web技能树](https://github.com/352Media/skilltree) 37 | > web技术栈 38 | 39 | ### 关于HTTPS 40 | 41 | #### [Let’s Encrypt](https://letsencrypt.org/) 42 | > 免费自由的证书认证机构。 43 | 44 | #### [certbot](https://certbot.eff.org/) 45 | > 可以自动部署Let’s Encrypt证书到你的网站。 46 | 47 | ### 文档 48 | 49 | #### [Charles 从入门到精通](http://blog.devtang.com/blog/2015/11/14/charles-introduction/) 50 | 51 | #### [http-api-design](https://github.com/interagent/http-api-design) 52 | > HTTP API 设计指南 53 | 54 | #### [http-api-design-ZH_CN](https://github.com/ZhangBohan/http-api-design-ZH_CN) 55 | > HTTP API 设计指南中文翻译版 56 | 57 | ### 网站性能测试 58 | 59 | #### [Google PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights/) 60 | > PageSpeed Insights 先分析网页的内容,然后提供关于如何提升网页加载速度的建议,需翻墙。 61 | 62 | #### [WebPageTest](http://www.webpagetest.org/) 63 | > 支持全球多地区速度测试和多种浏览器。 64 | 65 | #### [Pingdom](https://tools.pingdom.com/) 66 | > 测试页面加载速度,为你找出性能瓶颈。 67 | 68 | #### [GTmetrix](https://gtmetrix.com/) 69 | > 不光能测试速度,还能帮助分析是否有法律风险,并提出优化建议。 70 | 71 | #### Web开发订阅 72 | 73 | #### [wdrl.info](https://wdrl.info/) 74 | > 每周推送精心挑选的 Web 开发相关文章。 75 | 76 | #### [web tools weekly](http://webtoolsweekly.com/) 77 | > 主要推送 Web 开发工具。 78 | 79 | #### [webopsweekly.com](http://webopsweekly.com/) 80 | > 每周推送关于 Web 运营、部署等方面的文章。 81 | 82 | #### [/dev tips](https://umaar.com/dev-tips/) 83 | > 每周分享开发小技巧。 84 | -------------------------------------------------------------------------------- /manage/README.md: -------------------------------------------------------------------------------- 1 | ### 项目管理 2 | 3 | #### [Repo](https://code.google.com/archive/p/git-repo) 4 | > repo是Android项目团队为了方便管理Android项目及组成Android项目的几百个项目的Git库而开发的一套Python脚本,需翻墙。 5 | 6 | #### [Submodule](https://git-scm.com/docs/git-submodule) 7 | > Git 1.5.3中加入了git submodule这个命令。Git子模块允许你将一个Git仓库作为另一个Git仓库的子目录。它能让你将另一个仓库克隆到自己的项目中,同时还保持独立的提交。 8 | 9 | #### [git-subtree](https://github.com/apenwarr/git-subtree/) 10 | > Git在1.8.0版本引入了git subtree这个命令,它使用Git的subtree merge策略来得到类似git submodule的结果,使用git subtree,你不仅可以将其他项目合并为父项目的一个子目录,而且可以从父项目提取某个子目录的全部历史作为一个单独的项目。 11 | 12 | #### [gitslave](http://gitslave.sourceforge.net/) 13 | > GitSlave用于管理相关的一个父项目和多个Slave项目。通常,它会将你要执行的Git常规操作顺序在父项目和Slave项目中执行一遍,所以当你执行pull操作,项目中的所有仓库会顺序执行pull操作。GitSlave是对Git命令的封装,是被设计用于简化多仓库的Git操作,而不是要取代Git。 14 | 15 | #### [Git多项目管理](http://www.jianshu.com/p/284ded3d191b) 16 | > 介绍Git Submodule,Git Subtree,GitSlave和Google Repo这四种方式来管理多个Git项目 17 | 18 | ### 工作流 19 | 20 | #### [Git工作流指南:集中式工作流](http://blog.jobbole.com/76847/) 21 | 22 | #### [Git工作流指南:功能分支工作流](http://blog.jobbole.com/76857/) 23 | 24 | #### [Git工作流指南:Gitflow工作流](http://blog.jobbole.com/76867/) 25 | 26 | #### [Git工作流指南:Forking工作流](http://blog.jobbole.com/76861/) 27 | 28 | #### [Git工作流指南:Pull Request工作流](http://blog.jobbole.com/76854/) 29 | 30 | #### [Git工作流指南总结](http://blog.jobbole.com/76843/) 31 | 32 | #### [Git工作流指南比较英文原文](https://www.atlassian.com/git/tutorials/comparing-workflows) 33 | 34 | #### [Gitlab Gitflow总结](http://blog.csdn.net/uxyheaven/article/details/50373076) 35 | 36 | #### [GitFlow](http://nvie.com/posts/a-successful-git-branching-model/) 37 | > 一种借助Git分支来完成项目开发的工作流程,附上[GitHub地址](https://github.com/nvie/gitflow)。 38 | 39 | #### [改进合作 Git 工作流:自动提取、合并提交](http://tech.meituan.com/improving-git-flow_squashing-commits.html) 40 | > Git工作流 41 | 42 | ### 团队协作 43 | 44 | #### [slack群组](http://slack.com/) 45 | > Slack 是聊天群组 + 大规模工具集成 + 文件整合 + 统一搜索集为一体,是团队项目开发沟通的首选。 46 | 47 | #### [teambition](https://www.teambition.com/) 48 | > 国内一家工作做得一个高效而稳定的项目协作平台,它基于云服务的协作化项目管理平台,用户可以通过【任务板】【分享墙】【文件库】等功能来实现项目知识的分享、沟通,项目任务的安排及进度监督,以及相关项目的文档存储和分享。 49 | 50 | #### [tower](https://tower.im/) 51 | > 一款团队协作工具,可以让团队在 Tower.im 里在线讨论、任务指派管理、文件共享、日程安排、查看在线文档。 52 | 53 | #### [trello](https://trello.com/) 54 | > 国外一个方便的团队协作工具。它拥有足够的灵活度,来应对不同团队的需求,也通过详细的设置和安排,方便团队或项目负责人查看项目进度。 55 | 56 | #### [worktile](https://worktile.com/) 57 | > 一个团队协同办公工具,通过简单的协作、沟通和分享,实现团队交互与任务管理的轻松协作。工作随身带,多平台、云数据,随时随地与团队一起工作,项目、任务、文件、讨论、文档、事件、活动流、通知和日历,一个都不能少。 58 | 59 | #### [ZenHub](https://www.zenhub.io/) 60 | > 一款项目管理工具,嵌入到GitHub中,作为插件,与GitHub做到无缝结合 61 | 62 | ### 持续集成 63 | 64 | #### [Continuous-Integration-services](https://github.com/ligurio/Continuous-Integration-services/blob/master/continuous-integration-services-list.md) 65 | > 持续集成服务列表 66 | 67 | #### [Jenkins](https://jenkins.io/) 68 | > 一个用Java编写的开源的持续集成工具 69 | 70 | #### [TravisCI](https://travis-ci.org/) 71 | > 持续集成,用于自动化的单元测试和自动化部署,可以设定通过测试自动部署上线 72 | 73 | #### [CircleCI](https://circleci.com/) 74 | > 持续集成,用于自动化构建、测试、部署。 75 | 76 | #### [Gitlab-CI](https://about.gitlab.com/features/gitlab-ci-cd/) 77 | > 与Gitlab集成,无缝结合 78 | 79 | ### 代码审查 80 | 81 | #### [Gerrit](https://www.gerritcodereview.com/) 82 | > 一个开源的code review代码审查软件,Android源代码就是用该软件进行代码审查的 83 | 84 | #### [Reviewable](https://reviewable.io/) 85 | > 代码Review工具,可以与GitHub无缝结合,当你提交一个PR时,在你的PR中,会在评论框中嵌入这样的一个按钮:点击进入Reviewable的页面对应的PR进行review,并且一个PR没有完成Review之前,是会一直被警告,让你警惕进行合并。 86 | 87 | 88 | #### [Code Reviewer](https://codereview.appspot.com/) 89 | > Code Reviewer是一款免费的、简单的又易于部署和使用的代码审查工具,由SmartBear开发——也是Collaborator的发明者,业界第一家推出商用代码审查工具的公司。 90 | 91 | #### [Peer Review Plugin](http://trac-hacks.org/wiki/PeerReviewPlugin) 92 | > 此款插件通过提供基于Web的友好的审查环境,来节省开发人员在代码审查会议上所需要浪费的时间。 93 | 94 | #### [Review Board](https://www.reviewboard.org/) 95 | > Review Board是程序员节约时间、资金和精力的代码审查好工具。语法高亮的代码,可便于更快读取。 96 | 97 | #### [Code Review Tool](http://codereviewtool.com/) 98 | > Code Review Tool允许团队成员通过一种简单而有效的方式来协作审查代码。它提供了正式代码检查的所有优势,而且相比而言,所需的精力和时间更少。它既支持正式,也支持轻量级的代码审查进程。 99 | 100 | #### [Crucible](https://www.atlassian.com/software/crucible/overview) 101 | > Crucible是另一款超级受开发人员欢迎的代码审查工具,可以审查代码、讨论修改,通过Crucible灵敏的审阅流程来确定缺陷。Crucible能够使得Subversion、CVS、Perforce等版本控制软件的代码审查变得简单起来。 102 | 103 | #### [Codifferous](https://codifferous.com/) 104 | > Codifferous是一款免费的代码审查工具,能为我们提供更快的代码审查服务。无论你在何时何地,Codifferous能让你的团队协作审查工作变得更容易。你忘记了一个pull请求?没事。Codifferous允许你检查任意分支上的代码,无论何时你都可以留下注释、获得反馈。 105 | 106 | #### [RhodeCode](https://rhodecode.com/) 107 | > RhodeCode是另一款非常棒的代码审查工具,能让你发现代码中的bug和问题,并在检查过后删除它们。 108 | 109 | #### [Codebrag](http://codebrag.com/) 110 | > Codebrag是一款简单轻巧,提高进程作为的代码审查工具。它能帮助我们解决不少问题,如非阻塞代码审查、智能邮件通知、联机注释等等。 111 | 112 | #### [Coveralls](https://coveralls.io/) 113 | > 代码覆盖率测试工具,结合TravisCI的自动化测试单元,提高你对项目的信心 114 | 115 | #### [Conventional Commits](https://www.conventionalcommits.org/) 116 | > Commit message 和 Change log 编写约定规范(Angular版本) 117 | 118 | #### [SemVer](https://semver.org/) 119 | > 语义化版本管理规范 120 | 121 | #### [commitlint](https://github.com/conventional-changelog/commitlint) 122 | > 用工具来辅助规范Commit message 123 | 124 | #### [conventional-changelog](https://github.com/conventional-changelog/conventional-changelog) 125 | > Conventional Changelog生成 126 | 127 | #### [conventional-changelog-cli](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-cli#readme) 128 | > Conventional Changelog脚手架 129 | 130 | #### [Standard Version](https://github.com/conventional-changelog/standard-version) 131 | > 根据semver和conventionalcommits自动生成版本和CHANGELOG 132 | 133 | ### 文档管理 134 | 135 | #### [DokuWiki](https://www.dokuwiki.org/dokuwiki#) 136 | > 一款开源的wiki管理软件 137 | 138 | #### [Raneto](http://raneto.com/) 139 | > 利用 Markdown进行文档管理的系统 140 | 141 | #### [MkDocs](http://www.mkdocs.org/) 142 | > 项目文档生成器 143 | 144 | #### [Notion](https://www.notion.so/) 145 | > 在线的Docs、Wikis、Tasks管理工具,团队协作的利器。 146 | 147 | #### [ShowDoc](https://www.showdoc.cc/) 148 | > 一个适合IT团队的在线API文档、技术文档工具,支持离线部署。 149 | 150 | #### [RAP](https://github.com/thx/RAP) 151 | > Web接口管理工具,开源免费,接口自动化,MOCK数据自动生成,自动化测试,企业级管理。阿里妈妈MUX团队出品! 152 | 153 | #### [EasyAPI](http://www.easyapi.com/) 154 | > EasyAPI是一个为您提供API管理、API测试、API监控、API文档的综合性API服务平台。 155 | 156 | #### [slate](https://github.com/lord/slate) 157 | > 一个精美的API静态文档生成工具 158 | 159 | #### [SosoApi](http://www.sosoapi.com/) 160 | > 专注于API接口文档管理及线上线下测试的API服务平台 161 | 162 | #### [ApiManager](https://github.com/gongwalker/ApiManager) 163 | > 一个PHP开源项目,接口文档管理平台 164 | 165 | #### [APIDOC](http://apidocjs.com/) 166 | > 在线接口文档 167 | 168 | #### [apiary](https://apiary.io/) 169 | > 能够快速启动和运行文档,包括GitHub集成和I/O验证 170 | 171 | #### [swagger](http://swagger.io/) 172 | > Swagger框架可以通过代码生成漂亮的在线API,甚至可以提供运行示例。支持Scala、Java、Javascript、Ruby、PHP甚至 Actionscript 3。 173 | 174 | #### [I/O Docs](https://github.com/mashery/iodocs) 175 | > I/O Docs是一个用于RESTful Web APIs的交互式文档系统。使用 JSON 模型根据资源、方法和参数定义 APIs。I/O Docs 将生成 JavaScript 客户端接口,可通过这些接口来调用系统。服务器端基于 Node.js 开发。 176 | 177 | #### [JSONDoc](http://jsondoc.org/) 178 | > easily generate docs and playground for your RESTful API 179 | 180 | #### [Docco](http://jashkenas.github.io/docco/) 181 | > Docco是一个快速而随意、hundred-line-long、迭代程序风格的文档生成器。它会以HTML的方式显示评论和代码。 182 | 183 | #### [Dexy](http://www.dexy.it/) 184 | > 非常灵活的一款文档工具,支持任何语言编写的API。 185 | 186 | #### [Doxygen](http://www.stack.nl/~dimitri/doxygen/) 187 | > Doxgen可以从一套归档源文件开始,生成HTML格式的在线类浏览器,或离线的LATEX、RTF参考手册。对于未归档的源文件,也可以通过配置Doxygen来提取代码结构。 188 | 189 | #### [TurnAPI](http://turnapi.com/) 190 | > 是一款付费的文档API工具。里面包含了智能WIKI编辑器、基于标准的Markdown、文档分支、还可以与Git、SVN、Mercurial同步、整洁的主题、友好的界面。 191 | 192 | ### 自动化测试 193 | 194 | #### [STF](http://openstf.io/) 195 | > 移动端开源的利用web来管理终端设备的解决方案 196 | 197 | ### 经验分享 198 | 199 | #### [团队技术信息流建设](https://juejin.im/post/5955cd0e6fb9a06bc23a853e) 200 | 201 | #### [Travis CI - 项目持续集成好伴侣](http://swiftcafe.io/2016/03/18/travis/) 202 | 203 | #### [如何提升你的能力?给年轻程序员的几条建议](http://tech.glowing.com/cn/advices-to-junior-developers/) 204 | 205 | #### [怎么做好互联网公司的技术团队负责人?](http://www.jianshu.com/p/463528c4ec91) 206 | 207 | #### [写给那些傻傻的,想做服务器开发的应届生](http://blog.devtang.com/blog/2015/10/07/why-fresh-wants-to-do-server-dev/) 208 | 209 | ### 其他 210 | 211 | #### [选择一个开源协议](http://choosealicense.online/) 212 | > 为你自己的开源项目选择一个合适的开源协议 213 | 214 | #### [Sonatype Nexus](https://www.sonatype.com/) 215 | > Maven私服搭建服务 216 | 217 | #### [强迫症的 Mac 设置指南](https://github.com/macdao/ocds-guide-to-setting-up-mac) 218 | -------------------------------------------------------------------------------- /github/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### Android部分 3 | 4 | #### [UltimateAndroidReference](https://github.com/aritraroy/UltimateAndroidReference) 5 | > Android库精选 6 | 7 | #### [awesome-github-android-ui](https://github.com/opendigg/awesome-github-android-ui) 8 | > 安卓UI相关开源项目库汇总 9 | 10 | #### [Kotlin-Tutorials](https://github.com/enbandari/Kotlin-Tutorials) 11 | > Kotlin基础学习资料 12 | 13 | #### [Andriod-collect-blogs](https://github.com/ZQiang94/Andriod-collect-blogs) 14 | > Android优秀博客合集 15 | 16 | #### [Android-Dev-Favorites](https://github.com/ruijun/Android-Dev-Favorites) 17 | > Android开发资源合集 18 | 19 | #### [Awesome-Android-Architecture](https://github.com/Juude/Awesome-Android-Architecture/) 20 | > Android架构文章合集 21 | 22 | #### [awesome-android-testing](https://github.com/hotchemi/awesome-android-testing) 23 | > A curated list of awesome android testing libraries. 24 | 25 | #### [awesome-android-libraries](https://github.com/yeungeek/awesome-android-libraries) 26 | > Android开源框架库分类,挑选出最常用,最实用的开源项目,本篇主要介绍的是优秀开源框架库和项目 27 | 28 | #### [Java 8 学习指南](https://github.com/winterbe/java8-tutorial) 29 | > Java8提供很多好用的特性,是一个很不错的学习教程资源,推荐Java程序员可以看看 30 | 31 | #### [Java资源大全中文版](https://github.com/jobbole/awesome-java-cn) 32 | > 包括开发库、开发工具、网站、博客、微信、微博等,由伯乐在线持续更新。 33 | 34 | #### [Tim9Liu9总结的Android开源项目及库](https://github.com/Tim9Liu9/TimLiu-Android) 35 | 36 | #### [learnxinyminutes-docs](https://github.com/adambard/learnxinyminutes-docs) 37 | 38 | #### [awesome-android-libraries](https://github.com/wasabeef/awesome-android-libraries) 39 | 40 | #### [android相关的干货(文摘,名博,github等等)](https://github.com/openproject/AndroidDigest) 41 | 42 | #### [Android 开源项目 Demo](https://github.com/android-cn/android-open-project-demo) 43 | 44 | #### [Android源码设计模式分析项目](https://github.com/simple-android-framework/android_design_patterns_analysis) 45 | 46 | #### [Android知名开源库简单实现以及设计分析](https://github.com/simple-android-framework-exchange/simple-android-opensource-framework) 47 | 48 | #### [MaterialDesignLibrary](https://github.com/navasmdc/MaterialDesignLibrary) 49 | 50 | #### [Awesome-MaterialDesign](https://github.com/lightSky/Awesome-MaterialDesign) 51 | > Collection of material design libs and res. 52 | 53 | #### [android-common](https://github.com/Trinea/android-common) 54 | 55 | #### [awesome-android](https://github.com/JStumpp/awesome-android) 56 | 57 | #### [awesome-android-tools](https://github.com/wasabeef/awesome-android-tools) 58 | 59 | #### [stackoverflow上Java相关回答整理翻译](https://github.com/giantray/stackoverflow-java-top-qa) 60 | 61 | #### [awesome-android-ui](https://github.com/wasabeef/awesome-android-ui) 62 | 63 | #### [AndroidCat](http://www.androidcat.com/) 64 | 65 | #### [AndroidDevTools](https://github.com/inferjay/AndroidDevTools) 66 | 67 | #### [awesome-android](https://github.com/snowdream/awesome-android) 68 | 69 | #### [awesome-android-performance](https://github.com/Juude/awesome-android-performance) 70 | 71 | #### [awesome-java](https://github.com/akullpp/awesome-java) 72 | 73 | #### [android-security-awesome](https://github.com/ashishb/android-security-awesome) 74 | 75 | ### iOS部分 76 | 77 | #### [CocoaConferences](https://github.com/Lascorbe/CocoaConferences) 78 | > List of cocoa conferences for iOS & OSX developers. 79 | 80 | #### [Awesome-Swift-Education](https://github.com/hsavit1/Awesome-Swift-Education) 81 | > All the resources for Learning About Swift 82 | 83 | #### [苹果AppStore被拒理由大全](https://whyreject.me) 84 | > 作者整理的一份App上架AppStore后被拒理由大全 85 | 86 | #### [iOSHackStudy](https://github.com/pandazheng/IosHackStudy) 87 | > IOS安全学习资料汇总 88 | 89 | #### [Github-iOS备忘](http://github.ibireme.com/github/list/ios/) 90 | 91 | #### [awesome-objc-frameworks](https://github.com/XCGit/awesome-objc-frameworks) 92 | 93 | #### [iOS9AdaptationTips](https://github.com/ChenYilong/iOS9AdaptationTips) 94 | > iOS9适配系列教程 95 | 96 | #### [awesome-ios](https://github.com/Orion777/awesome-ios) 97 | 98 | #### [awesome-ios-plugins](https://github.com/sanketfirodiya/awesome-ios-plugins) 99 | 100 | #### [iOSDevResource](https://github.com/robotsu/iOSDevResource) 101 | 102 | #### [ios_top_1000](https://github.com/iamdaiyuan/ios_top_1000) 103 | 104 | #### [awesome-swift](https://github.com/Wolg/awesome-swift) 105 | 106 | #### [awesome-ios-ui](https://github.com/cjwirth/awesome-ios-ui) 107 | 108 | #### [awesome-swift](https://github.com/matteocrippa/awesome-swift) 109 | 110 | #### [awesome-osx](https://github.com/iCHAIT/awesome-osx) 111 | 112 | #### [awesome-ios](https://github.com/vsouza/awesome-ios) 113 | 114 | #### [iOSInterviewQuestions](https://github.com/ChenYilong/iOSInterviewQuestions) 115 | > iOS面试题集锦(附答案) 116 | 117 | #### [iOS-Swift-Demos](https://github.com/Lax/iOS-Swift-Demos) 118 | > 精心收集并分类整理的Swift开发学习资源 119 | 120 | #### [awesome-ios-animation](https://github.com/sxyx2008/awesome-ios-animation) 121 | 122 | #### [awesome-ios-chart](https://github.com/sxyx2008/awesome-ios-chart) 123 | 124 | 125 | 126 | ### 前端部分 127 | 128 | #### [awesome-npm](https://github.com/sindresorhus/awesome-npm?utm_source=javascriptweekly&utm_medium=email) 129 | > Awesome npm resources and tips 130 | 131 | #### [frontend-dev-bookmarks](https://github.com/dypsilon/frontend-dev-bookmarks) 132 | >前端开发书签资源整理 133 | 134 | #### [essential-javascript-links](https://github.com/ericelliott/essential-javascript-links) 135 | > Essential JavaScript website. 136 | 137 | #### [awesome-javascript-cn](https://github.com/jobbole/awesome-javascript-cn) 138 | > JavaScript 资源大全中文版 139 | 140 | #### [fe-dev-bookmarks](https://github.com/putaoshu/fe-dev-bookmarks) 141 | > 前端开发书签 142 | 143 | #### [前端博文库](https://github.com/fouber/blog) 144 | 145 | #### [前端开发面试问题及答案整理](https://github.com/Enolak/Front-end-questions-to-the-interview-stage) 146 | 147 | #### [前端资源教程](https://github.com/Enolak/Front-end-tutorial) 148 | 149 | #### [angular好用的插件集合](http://segmentfault.com/a/1190000003858219) 150 | > angular好用的插件集合 151 | 152 | #### [AngularJS-Learning](https://github.com/jmcunningham/AngularJS-Learning) 153 | > A bunch of links to blog posts, articles, videos, etc for learning AngularJS 154 | 155 | #### [recipes-with-angular-js-examples](https://github.com/fdietz/recipes-with-angular-js-examples) 156 | > Recipes with Angular.js 157 | 158 | #### [awesome-react-native](https://github.com/jondot/awesome-react-native) 159 | > An "awesome" type curated list of React Native components, news, tools, and learning material 160 | 161 | #### [fetool](https://github.com/nieweidong/fetool) 162 | > 大前端工具资源集 163 | 164 | #### [awesome-IoT-hybrid](https://github.com/weblancaster/awesome-IoT-hybrid) 165 | > The missing awesome list - collection of awesome IoT and Hybrid Apps frameworks, tools, resources, videos and shiny things. 166 | 167 | #### [front-end-collect](https://github.com/foru17/front-end-collect) 168 | 169 | #### [react-native-guide](https://github.com/ele828/react-native-guide) 170 | > React-Native指南汇集了react-native学习资源与各类开源app 171 | 172 | #### [be-grace-front-end-developer](https://github.com/iamjoel/be-grace-front-end-developer) 173 | 174 | #### [Font-Awesome中文版](https://github.com/FortAwesome/Font-Awesome) 175 | 176 | 177 | ### 其它部分 178 | 179 | #### [linux-command](https://wangchujiang.com/linux-command/) 180 | > Linux常用命令搜索 181 | 182 | #### [DockerCheatSheet](https://github.com/eon01/DockerCheatSheet) 183 | > Docker 速查手册 184 | 185 | #### [awesome-mac](https://github.com/jaywcjlove/awesome-mac) 186 | > Mac软件合集 187 | 188 | #### [awesome-macOS](https://github.com/iCHAIT/awesome-macOS) 189 | > Mac软件合集 190 | 191 | #### [以一种轻松的方式学习正则表达式](https://github.com/zeeshanu/learn-regex) 192 | 193 | #### [优秀国产软件名录](https://amazing-apps.gitbooks.io/windows-apps-that-amaze-us/zh-CN/china-apps.html) 194 | 195 | #### [Awesome-Windows](https://github.com/Awesome-Windows/Awesome) 196 | > windows软件合集 197 | 198 | #### [tensorflow-tutorial](https://github.com/wagamamaz/tensorflow-tutorial) 199 | > 机器学习资料合集 200 | 201 | #### [vps-comparison](https://github.com/joedicastro/vps-comparison) 202 | > vps提供商比较 203 | 204 | #### [awesome-indie](https://github.com/mezod/awesome-indie) 205 | > 那些已盈利的个人项目合集 206 | 207 | #### [Awesome_APIs](https://github.com/TonnyL/Awesome_APIs) 208 | > 开源API合集 209 | 210 | #### [Awesome-Hacking](https://github.com/Hack-with-Github/Awesome-Hacking) 211 | > hack系列合集 212 | 213 | #### [HelloGitHub](https://github.com/521xueweihan/HelloGitHub) 214 | > 一个旨在分享、推荐GitHub上的好玩、容易上手的项目,帮你找到编程的乐趣 215 | 216 | #### [system-design-prime](https://github.com/donnemartin/system-design-primer) 217 | > 全面讲解大规模可用系统的设计 218 | 219 | #### [interviews](https://github.com/kdn251/interviews) 220 | > 关于面试相关的都在这里了 221 | 222 | #### [Awesome-Linux-Software](https://github.com/VoLuong/Awesome-Linux-Software) 223 | > Linux软件合集 224 | 225 | #### [new-website](https://github.com/cdnjs/new-website) 226 | > cdnjs's website and api server 227 | 228 | #### [awesome-python](https://github.com/vinta/awesome-python) 229 | > A curated list of awesome Python frameworks, libraries, software and resources 230 | 231 | #### [resumecards](https://github.com/ellekasai/resumecards) 232 | > 基于MarkDown的简历生成器 233 | 234 | #### [awesome-github](https://github.com/AntBranch/awesome-github) 235 | > 收集这个列表,只是为了更好地使用亲爱的GitHub 236 | 237 | #### [awesome-app-ideas](https://github.com/tastejs/awesome-app-ideas) 238 | > List of awesome app ideas 239 | 240 | #### [awesome-c](https://github.com/aleksandar-todorovic/awesome-c) 241 | > Continuing the development of awesome-c list on GitHub 242 | 243 | #### [awesome-public-datasets](https://github.com/caesar0301/awesome-public-datasets) 244 | > An awesome list of high-quality open datasets in public domains (on-going). 245 | 246 | #### [Back-End-Developer-Interview-Questions](https://github.com/arialdomartini/Back-End-Developer-Interview-Questions) 247 | > A list of helpful back-end related questions you can use to interview potential candidates, test yourself or completely ignore. 248 | 249 | #### [HowToBeAProgrammer](https://github.com/braydie/HowToBeAProgrammer) 250 | > 如何成长为一个程序员 251 | 252 | #### [github-blogs](https://github.com/yutingzhao1991/github-blogs) 253 | > Github上Issues博客的收集和定期推送服务,watch本项目可接收推送。 254 | 255 | #### [Big-Data-Resources](https://github.com/Flowerowl/Big-Data-Resources) 256 | > 大数据/数据挖掘/推荐系统/机器学习相关资源 257 | 258 | #### [awesome-interviews](https://github.com/MaximAbramchuck/awesome-interviews) 259 | > A curated list of awesome lists of interview questions. 260 | 261 | #### [awesome-scala](https://github.com/lauris/awesome-scala) 262 | > A community driven list of useful Scala libraries, frameworks and software. 263 | 264 | #### [Design and development guides](https://github.com/NARKOZ/guides) 265 | > Design and development guides 266 | 267 | #### [free-for-dev](https://github.com/ripienaar/free-for-dev) 268 | > A list of SaaS, PaaS and IaaS offerings that have free tiers of interest to devops and infradev 269 | 270 | #### [CCBooks](https://github.com/marboo/CCBooks) 271 | > 开源著作列表 272 | 273 | #### [awesome-remote-job](https://github.com/lukasz-madon/awesome-remote-job) 274 | > A curated list of awesome remote jobs and resources. 275 | 276 | #### [awesome-sketch](https://github.com/diessica/awesome-sketch) 277 | > 关于Sketch的资料 278 | 279 | #### [Awesome-Sketch](https://github.com/CharzLuo/Awesome-Sketch) 280 | > 关于Sketch的资料中文翻译 281 | 282 | #### [WebsitesForStudents](https://github.com/Xuanwo/WebsitesForStudents) 283 | > 一个旨在建设一个对大学生有益有用的集合的库 284 | 285 | #### [Chrome开发者工具中文手册](https://github.com/CN-Chrome-DevTools/CN-Chrome-DevTools) 286 | > Chrome DevTools中文文档翻译 287 | 288 | #### [badges](https://github.com/boennemann/badges) 289 | > 与JS相关的免费开源的readme角标集合 290 | 291 | #### [awesome-osx-command-line](https://github.com/herrbischoff/awesome-osx-command-line) 292 | > Use your OS X terminal shell to do awesome things. 293 | 294 | #### [awesome-awesomeness-zh_CN](https://github.com/justjavac/awesome-awesomeness-zh_CN) 295 | > 一份关于“资料汇总”的汇总。 296 | 297 | #### [ToolsOfTheTrade](https://github.com/cjbarber/ToolsOfTheTrade) 298 | > 非常棒的工具收集 299 | 300 | #### [awesome-aws](https://github.com/donnemartin/awesome-aws) 301 | > A curated list of awesome Amazon Web Services (AWS) libraries, open source repos, guides, blogs, and other resources. 302 | 303 | #### [computer-science](https://github.com/open-source-society/computer-science) 304 | > 开源的社会大学在:自学计算机科学 305 | 306 | #### [最流行的开源静态网站生成器](http://www.staticgen.com) 307 | > 最流行的开源静态网站生成器 308 | 309 | #### [awesome-developer](https://github.com/phodal/awesome-developer) 310 | > Web Developer学习路线图 311 | 312 | #### [Google-IPs](https://github.com/justjavac/Google-IPs) 313 | > Google 全球 IP 地址库 314 | 315 | #### [translations](https://github.com/oldratlee/translations) 316 | > 一些不错英文资料的中文翻译。 317 | 318 | #### [free-programming-books-zh_CN](https://github.com/justjavac/free-programming-books-zh_CN) 319 | 320 | #### [awesome-awesomeness](https://github.com/bayandin/awesome-awesomeness) 321 | 322 | #### [awesome-electron](https://github.com/sindresorhus/awesome-electron) 323 | 324 | #### [awesome-crystal](https://github.com/veelenga/awesome-crystal) 325 | 326 | #### [awesome-courses](https://github.com/prakhar1989/awesome-courses) 327 | 328 | #### [awesome-iot](https://github.com/phodal/awesome-iot) 329 | 330 | #### [awesome](https://github.com/sindresorhus/awesome) 331 | 332 | #### [getAwesomeness](https://github.com/panzhangwang/getAwesomeness) 333 | 334 | #### [awesome-github](https://github.com/Kikobeats/awesome-github) 335 | 336 | #### [awesome-github](https://github.com/fffaraz/awesome-github) 337 | 338 | #### [awesome-bigdata](https://github.com/onurakpolat/awesome-bigdata) 339 | 340 | #### [SecMobi Wiki](https://github.com/secmobi/wiki.secmobi.com) 341 | > SecMobi Wiki is a collection of mobile security resources. 342 | 343 | #### [sketch-awesome-plugins](https://github.com/afc163/sketch-awesome-plugins) 344 | 345 | 346 | #### [awesome-sysadmin](https://github.com/kahun/awesome-sysadmin) 347 | 348 | 349 | #### [awesome-product-thought](https://github.com/voff12/awesome-product-thought) 350 | 351 | #### [awesome-selfhosted](https://github.com/Kickball/awesome-selfhosted) 352 | 353 | #### [awesome-go](https://github.com/avelino/awesome-go) 354 | --------------------------------------------------------------------------------