如何写就完美 Pull Request
译注:Github Blog 发表了一篇文章 How to write the perfect pull request,对书写 Pull Request 文案及相关话题给了些相当不错…
JavaScript 算法 KMP(Knuth-Morris-Pratt ) 算法
KMP 是著名的字符串匹配算法,效率高但比较难理解(一看就懂的请勿代入)。 字符串匹配问题是指从一段已有的文本串(记为 txt…
JavaScript 算法之 KNN k-nearest neighbors K 最近邻算法
从一个很简单的例子来理解 KNN。 假设我们有一堆橙子和一堆柚子,通常情况下,柚子比橙子更大,更红;现在有一个水果,我们怎…
Python Structuring Your Project(项目结构化)
By "structure" we mean the decisions you make concerning how your project best meets its objective. We need to consider …
GitHub 上的书写方式
Issues, comments, and pull request descriptions are written using GitHub Flavored Markdown along with some additional fe…
Installing Python on Linux(在 Linux 上安装 Python)
The latest versions of Ubuntu and Fedora come with Python 2.7 out of the box. 最新版的Ubuntu和Fedora自带Python 2.7,直…
GitHub 风格的 Markdown 语法
GitHub uses "GitHub Flavored Markdown," or GFM, across the site--in issues, comments, and pull requests. It differs from…