From 2eb5683c9b18b05235401a69d1beef8037f61454 Mon Sep 17 00:00:00 2001 From: Lipis Date: Tue, 12 Feb 2019 20:16:22 +0100 Subject: [PATCH] Replace Github -> GitHub (Chinese) (#35167) * Replace Github -> GitHub (Chinese) * fix: deleted extra GitHub --- ...implementation-of-social-authentication.chinese.md | 2 +- guide/chinese/electron/index.md | 2 +- .../async-messaging-with-rabbitmq-tortoise/index.md | 4 ++-- .../creating-a-new-github-issue/index.md | 6 +++--- .../emojis-for-gitter-and-github/index.md | 4 ++-- .../miscellaneous/learn-a-little-about-latex/index.md | 4 ++-- .../learn-about-the-latex-language/index.md | 4 ++-- .../linking-your-account-with-github/index.md | 4 ++-- .../running-webpack-and-webpack-dev-server/index.md | 4 ++-- .../searching-for-existing-issues-in-github/index.md | 4 ++-- .../index.md | 6 +++--- .../index.md | 4 ++-- guide/chinese/react/what-are-react-props/index.md | 11 ++++++----- guide/chinese/redux/redux-thunk/index.md | 4 ++-- guide/chinese/ruby/index.md | 2 +- guide/chinese/wordpress/index.md | 2 +- 16 files changed, 34 insertions(+), 33 deletions(-) diff --git a/curriculum/challenges/chinese/06-information-security-and-quality-assurance/advanced-node-and-express/implementation-of-social-authentication.chinese.md b/curriculum/challenges/chinese/06-information-security-and-quality-assurance/advanced-node-and-express/implementation-of-social-authentication.chinese.md index 481545008a..aab248866c 100644 --- a/curriculum/challenges/chinese/06-information-security-and-quality-assurance/advanced-node-and-express/implementation-of-social-authentication.chinese.md +++ b/curriculum/challenges/chinese/06-information-security-and-quality-assurance/advanced-node-and-express/implementation-of-social-authentication.chinese.md @@ -7,7 +7,7 @@ localeTitle: 社会认证的实施 --- ## Description -
提醒一下,这个项目是基于Glitch的以下入门项目构建的,或者是从GitHub克隆的。此类身份验证在您的应用中遵循的基本路径是:
  1. 用户单击按钮或链接将它们发送到我们使用特定策略进行身份验证的路由(EG.Github)
  2. 您的路由呼叫passport.authenticate('github') ,将其重定向到Github。
  3. 用户登陆的页面,在Github上,允许他们登录,如果他们还没有。然后它要求他们批准从我们的应用程序访问他们的个人资料。
  4. 然后,如果用户获得批准,则会使用他们的个人资料将该用户返回到我们的应用。
  5. 它们现在已经过身份验证,您的应用应检查它是否为返回的配置文件,如果不是,则将其保存在数据库中。
OAuth策略要求您至少拥有客户端ID客户端密钥 ,以便他们验证身份验证请求的来源以及是否有效。这些是从您尝试使用Github实现身份验证的站点获得的,并且对您的应用程序是唯一的 - 它们不会被共享 ,不应该上传到公共存储库或直接在您的代码中编写。通常的做法是将它们放在.env文件中并引用它们: process.env.GITHUB_CLIENT_ID 。对于这个挑战,我们将使用Github策略。 从Github获取您的客户ID和密码是在“开发者设置”下的帐户配置文件设置中完成的,然后是“ OAuth应用程序 ”。点击“注册一个新的应用程序”,为您的应用命名,将网址粘贴到您的故障主页( 不是项目代码的网址 ),最后为回调网址,粘贴到与主页相同的网址,但使用'/ auth / github / callback'已添加。这是用户将被重定向到我们在Github上进行身份验证后处理的地方。将返回的信息保存为.env文件中的“GITHUB_CLIENT_ID”和“GITHUB_CLIENT_SECRET”。在重新混合的项目中,创建2条接受GET请求的路由:/ auth / github和/ auth / github / callback。第一个应该只调用护照来验证'github',第二个应该调用护照来验证'github',失败重定向到'/'然后如果成功重定向到'/ profile'(类似于我们的上一个项目)。 '/ auth / github / callback'应该如何看待的示例与我们在上一个项目中处理正常登录的方式类似:
 app.route( '/登录')
+
提醒一下,这个项目是基于Glitch的以下入门项目构建的,或者是从GitHub克隆的。此类身份验证在您的应用中遵循的基本路径是:
  1. 用户单击按钮或链接将它们发送到我们使用特定策略进行身份验证的路由(EG.GitHub)
  2. 您的路由呼叫passport.authenticate('github') ,将其重定向到Github。
  3. 用户登陆的页面,在Github上,允许他们登录,如果他们还没有。然后它要求他们批准从我们的应用程序访问他们的个人资料。
  4. 然后,如果用户获得批准,则会使用他们的个人资料将该用户返回到我们的应用。
  5. 它们现在已经过身份验证,您的应用应检查它是否为返回的配置文件,如果不是,则将其保存在数据库中。
OAuth策略要求您至少拥有客户端ID客户端密钥 ,以便他们验证身份验证请求的来源以及是否有效。这些是从您尝试使用Github实现身份验证的站点获得的,并且对您的应用程序是唯一的 - 它们不会被共享 ,不应该上传到公共存储库或直接在您的代码中编写。通常的做法是将它们放在.env文件中并引用它们: process.env.GITHUB_CLIENT_ID 。对于这个挑战,我们将使用Github策略。 从Github获取您的客户ID和密码是在“开发者设置”下的帐户配置文件设置中完成的,然后是“ OAuth应用程序 ”。点击“注册一个新的应用程序”,为您的应用命名,将网址粘贴到您的故障主页( 不是项目代码的网址 ),最后为回调网址,粘贴到与主页相同的网址,但使用'/ auth / github / callback'已添加。这是用户将被重定向到我们在Github上进行身份验证后处理的地方。将返回的信息保存为.env文件中的“GITHUB_CLIENT_ID”和“GITHUB_CLIENT_SECRET”。在重新混合的项目中,创建2条接受GET请求的路由:/ auth / github和/ auth / github / callback。第一个应该只调用护照来验证'github',第二个应该调用护照来验证'github',失败重定向到'/'然后如果成功重定向到'/ profile'(类似于我们的上一个项目)。 '/ auth / github / callback'应该如何看待的示例与我们在上一个项目中处理正常登录的方式类似:
 app.route( '/登录')
   .post(passport.authenticate('local',{failureRedirect:'/'}),(req,res)=> {
     res.redirect( '/简档');
   }); 
当您认为自己已经做对时,请提交您的页面。如果您遇到错误,可以在此处查看项目。
diff --git a/guide/chinese/electron/index.md b/guide/chinese/electron/index.md index acdf938b5f..10a472654a 100644 --- a/guide/chinese/electron/index.md +++ b/guide/chinese/electron/index.md @@ -19,7 +19,7 @@ Electron基于Chromium(谷歌浏览器的开源版本)。Electron是在2013 * [Skype](https://www.skype.com/) (微软流行的视频聊天应用程序) * [Slack](https://slack.com/) (团队的消息传递应用程序) * [Discord](https://discordapp.com) (适合游戏玩家的流行消息应用) -* [Github Desktop](https://desktop.github.com/) (官方Github桌面客户端) +* [GitHub Desktop](https://desktop.github.com/) (官方Github桌面客户端) 您可以从[Electron的网页](https://electronjs.org/apps)查询更多使用Electron构建的应用。 diff --git a/guide/chinese/javascript/async-messaging-with-rabbitmq-tortoise/index.md b/guide/chinese/javascript/async-messaging-with-rabbitmq-tortoise/index.md index 66ddba9060..bb074510bb 100644 --- a/guide/chinese/javascript/async-messaging-with-rabbitmq-tortoise/index.md +++ b/guide/chinese/javascript/async-messaging-with-rabbitmq-tortoise/index.md @@ -12,7 +12,7 @@ RabbitMQ恰好是目前使用AMQ协议的最简单,性能最高的消息代理 ## 入门 -我们将编写一个非常简单的示例,其中发布者脚本向Rabbit发布消息,其中包含URL,消费者脚本侦听Rabbit,获取已发布的U​​RL,调用它并显示结果。您可以在[Github](https://github.com/rudimk/freecodecamp-guides-rabbitmq-tortoise)上找到完成的样本。 +我们将编写一个非常简单的示例,其中发布者脚本向Rabbit发布消息,其中包含URL,消费者脚本侦听Rabbit,获取已发布的U​​RL,调用它并显示结果。您可以在[GitHub](https://github.com/rudimk/freecodecamp-guides-rabbitmq-tortoise)上找到完成的样本。 首先,让我们初始化一个npm项目: @@ -122,4 +122,4 @@ tortoise ## 结论 -与使用RabbitMQ进行消息传递相关的简单性是无与伦比的,只需几行代码就可以很容易地得到非常复杂的微服务模式。最好的部分是消息传递背后的逻辑并没有真正改变语言--Crystal或Go或Python或Ruby以几乎相同的方式与Rabbit一起工作 - 这意味着您可以使用不同语言编写的服务可以毫不费力地相互通信,使您能够使用最好的语言来完成工作。 \ No newline at end of file +与使用RabbitMQ进行消息传递相关的简单性是无与伦比的,只需几行代码就可以很容易地得到非常复杂的微服务模式。最好的部分是消息传递背后的逻辑并没有真正改变语言--Crystal或Go或Python或Ruby以几乎相同的方式与Rabbit一起工作 - 这意味着您可以使用不同语言编写的服务可以毫不费力地相互通信,使您能够使用最好的语言来完成工作。 diff --git a/guide/chinese/miscellaneous/creating-a-new-github-issue/index.md b/guide/chinese/miscellaneous/creating-a-new-github-issue/index.md index 6265e3dafb..d15afe39a2 100644 --- a/guide/chinese/miscellaneous/creating-a-new-github-issue/index.md +++ b/guide/chinese/miscellaneous/creating-a-new-github-issue/index.md @@ -1,12 +1,12 @@ --- -title: Creating a New Github Issue +title: Creating a New GitHub Issue localeTitle: 创建一个新的Github问题 --- 在提交问题之前,请尝试[在Github上搜索您的问题](https://forum.freecodecamp.com/t/searching-for-existing-issues-in-github/18390) 制定一个好的问题将使开发团队更容易复制和解决您的问题。请按照以下步骤操作: -1. 转到FreeCodeCamp的[Github Issues](https://github.com/FreeCodeCamp/FreeCodeCamp/issues)页面,然后单击`New Issue` 。 +1. 转到FreeCodeCamp的[GitHub Issues](https://github.com/FreeCodeCamp/FreeCodeCamp/issues)页面,然后单击`New Issue` 。 2. **有一个有用的标题** @@ -23,4 +23,4 @@ localeTitle: 创建一个新的Github问题 6. **截取**该问题**的屏幕截图**并将其包含在帖子中。 -7. 点击`Submit New Issue` ,你就完成了!您将自动订阅任何更新或未来评论的通知。 \ No newline at end of file +7. 点击`Submit New Issue` ,你就完成了!您将自动订阅任何更新或未来评论的通知。 diff --git a/guide/chinese/miscellaneous/emojis-for-gitter-and-github/index.md b/guide/chinese/miscellaneous/emojis-for-gitter-and-github/index.md index f61b8dca9c..9c9acc52ca 100644 --- a/guide/chinese/miscellaneous/emojis-for-gitter-and-github/index.md +++ b/guide/chinese/miscellaneous/emojis-for-gitter-and-github/index.md @@ -1,5 +1,5 @@ --- -title: Emojis for Gitter and Github +title: Emojis for Gitter and GitHub localeTitle: Gitter和Github的Emojis --- -Gitter IM和GitHub都支持一系列酷表情符号(表情符号)。来自`:sunny:` ![:sunny:](//forum.freecodecamp.com/images/emoji/emoji_one/sunny.png?v=2 ":晴天:") to `:poop:` ![:poop:](//forum.freecodecamp.com/images/emoji/emoji_one/poop.png?v=2 ":船尾:")你可以表达一系列的情感! \ No newline at end of file +Gitter IM和GitHub都支持一系列酷表情符号(表情符号)。来自`:sunny:` ![:sunny:](//forum.freecodecamp.com/images/emoji/emoji_one/sunny.png?v=2 ":晴天:") to `:poop:` ![:poop:](//forum.freecodecamp.com/images/emoji/emoji_one/poop.png?v=2 ":船尾:")你可以表达一系列的情感! diff --git a/guide/chinese/miscellaneous/learn-a-little-about-latex/index.md b/guide/chinese/miscellaneous/learn-a-little-about-latex/index.md index a9bc41dbe0..353bd85ff3 100644 --- a/guide/chinese/miscellaneous/learn-a-little-about-latex/index.md +++ b/guide/chinese/miscellaneous/learn-a-little-about-latex/index.md @@ -30,7 +30,7 @@ $$\huge\textstyle\color{#F00}{BigRed}\small\textstyle\color{#0F0}{SmallGreen}$$ ## 细节 -[KaTeX Github Repo](https://github.com/Khan/KaTeX) LaTeX是一种高品质的排版系统;它包括为生产技术和科学文档而设计的功能。 LaTeX是科学文献交流和出版的事实标准。他的优点在书籍,论文或论文等长篇文件中都很明显。 +[KaTeX GitHub Repo](https://github.com/Khan/KaTeX) LaTeX是一种高品质的排版系统;它包括为生产技术和科学文档而设计的功能。 LaTeX是科学文献交流和出版的事实标准。他的优点在书籍,论文或论文等长篇文件中都很明显。 Gitter使用Katex(LaTeX的自定义实现),可以使用它来介绍以下代码: ``` @@ -44,4 +44,4 @@ $$\begin{array} {cc} 文本: * `$$\huge\textstyle{some text}$$` - > $$ \\ huge \\ textstyle {some text} $$ -* `$$\color{#F90}{some text}$$` - > $$ \\ color {#F90} {some text} $$ \ No newline at end of file +* `$$\color{#F90}{some text}$$` - > $$ \\ color {#F90} {some text} $$ diff --git a/guide/chinese/miscellaneous/learn-about-the-latex-language/index.md b/guide/chinese/miscellaneous/learn-about-the-latex-language/index.md index 620249400b..01878c2518 100644 --- a/guide/chinese/miscellaneous/learn-about-the-latex-language/index.md +++ b/guide/chinese/miscellaneous/learn-about-the-latex-language/index.md @@ -30,7 +30,7 @@ $$\huge\textstyle\color{#F00}{BigRed}\small\textstyle\color{#0F0}{SmallGreen}$$ ## 细节 -[KaTeX Github Repo](https://github.com/Khan/KaTeX) LaTeX是一种高品质的排版系统;它包括为生产技术和科学文档而设计的功能。 LaTeX是科学文献交流和出版的事实标准。他的优点在书籍,论文或论文等长文档中都很明显。 +[KaTeX GitHub Repo](https://github.com/Khan/KaTeX) LaTeX是一种高品质的排版系统;它包括为生产技术和科学文档而设计的功能。 LaTeX是科学文献交流和出版的事实标准。他的优点在书籍,论文或论文等长文档中都很明显。 Gitter使用Katex(LaTeX的自定义实现),可以使用它来介绍以下代码: ``` @@ -44,4 +44,4 @@ $$\begin{array} {cc} 文本: * `$$\huge\textstyle{some text}$$` - > $$ \\ huge \\ textstyle {some text} $$ -* `$$\color{#F90}{some text}$$` - > $$ \\ color {#F90} {some text} $$ \ No newline at end of file +* `$$\color{#F90}{some text}$$` - > $$ \\ color {#F90} {some text} $$ diff --git a/guide/chinese/miscellaneous/linking-your-account-with-github/index.md b/guide/chinese/miscellaneous/linking-your-account-with-github/index.md index 87304bdedc..95ff510ba3 100644 --- a/guide/chinese/miscellaneous/linking-your-account-with-github/index.md +++ b/guide/chinese/miscellaneous/linking-your-account-with-github/index.md @@ -1,5 +1,5 @@ --- -title: Linking Your Account with Github +title: Linking Your Account with GitHub localeTitle: 将您的帐户与Github链接 --- 2015年8月,我们推动了一些为我们的许多露营者带来麻烦的变化。 @@ -9,4 +9,4 @@ localeTitle: 将您的帐户与Github链接 1)使用您当前的帐户退出并尝试使用GitHub登录。 2)检查您的挑战地图。您的帐户应该没有进展。在此处删除该帐户: [http](http://freecodecamp.com/account) : [//freecodecamp.com/account](http://freecodecamp.com/account) 3)以通常的方式登录免费代码营(Facebook,电子邮件等)。你应该看到你原来的进步。 -3)现在将GitHub添加到该帐户,您应该全部设置。 \ No newline at end of file +3)现在将GitHub添加到该帐户,您应该全部设置。 diff --git a/guide/chinese/miscellaneous/running-webpack-and-webpack-dev-server/index.md b/guide/chinese/miscellaneous/running-webpack-and-webpack-dev-server/index.md index cab483172e..0b8e7446ad 100644 --- a/guide/chinese/miscellaneous/running-webpack-and-webpack-dev-server/index.md +++ b/guide/chinese/miscellaneous/running-webpack-and-webpack-dev-server/index.md @@ -119,6 +119,6 @@ This is one cool app! [Webpack网站](https://webpack.js.org/) -[Webpack Github](https://github.com/webpack/webpack) +[Webpack GitHub](https://github.com/webpack/webpack) -[webpack-dev-server Github](https://github.com/webpack/webpack-dev-server) \ No newline at end of file +[webpack-dev-server GitHub](https://github.com/webpack/webpack-dev-server) diff --git a/guide/chinese/miscellaneous/searching-for-existing-issues-in-github/index.md b/guide/chinese/miscellaneous/searching-for-existing-issues-in-github/index.md index dd677c5b24..9d8fd96f27 100644 --- a/guide/chinese/miscellaneous/searching-for-existing-issues-in-github/index.md +++ b/guide/chinese/miscellaneous/searching-for-existing-issues-in-github/index.md @@ -1,5 +1,5 @@ --- -title: Searching for Existing Issues in Github +title: Searching for Existing Issues in GitHub localeTitle: 在Github中搜索现有问题 --- 如果在获得Gitter帮助后仍然看到问题,您将需要尝试查看是否有其他人发布了类似问题。 @@ -12,4 +12,4 @@ localeTitle: 在Github中搜索现有问题 * 如果找到一个,请阅读!您可以通过单击侧栏中的“ `Subscribe`来订阅以获取有关该特定问题的更新。如果您要添加某些内容,也可以对此问题发表评论。 - * 如果您找不到任何相关问题,您应该创建一个新的Github问题 。 \ No newline at end of file + * 如果您找不到任何相关问题,您应该创建一个新的Github问题 。 diff --git a/guide/chinese/miscellaneous/use-github-static-pages-to-host-your-front-end-projects/index.md b/guide/chinese/miscellaneous/use-github-static-pages-to-host-your-front-end-projects/index.md index 50635edbea..be64581742 100644 --- a/guide/chinese/miscellaneous/use-github-static-pages-to-host-your-front-end-projects/index.md +++ b/guide/chinese/miscellaneous/use-github-static-pages-to-host-your-front-end-projects/index.md @@ -1,5 +1,5 @@ --- -title: Use Github Static Pages to Host Your Front End Projects +title: Use GitHub Static Pages to Host Your Front End Projects localeTitle: 使用Github静态页面来托管您的前端项目 --- **优点** @@ -15,7 +15,7 @@ localeTitle: 使用Github静态页面来托管您的前端项目 ## Git到Github -由于我已经在本地保存,并使用git进行版本控制,我想也可以上传到Github。此外,Github还为前端项目提供了一个非常棒的免费服务,称为[Github Pages](https://pages.github.com/) 。只需更新您的仓库,您的更改即会生效。 +由于我已经在本地保存,并使用git进行版本控制,我想也可以上传到Github。此外,Github还为前端项目提供了一个非常棒的免费服务,称为[GitHub Pages](https://pages.github.com/) 。只需更新您的仓库,您的更改即会生效。 它的工作原理很简单。 Github检查您的存储库是否有一个名为`gh-pages`的分支,并提供位于该分支中的任何代码。这里没有后端内容,但HTML,CSS和JS就像魅力一样。 @@ -90,4 +90,4 @@ localeTitle: 使用Github静态页面来托管您的前端项目 快乐的编码! -PS。感谢Roger Dudler的[这本指南](http://rogerdudler.github.io/git-guide/) ,让事情变得简单。 \ No newline at end of file +PS。感谢Roger Dudler的[这本指南](http://rogerdudler.github.io/git-guide/) ,让事情变得简单。 diff --git a/guide/chinese/miscellaneous/writing-a-markdown-file-for-github-using-atom/index.md b/guide/chinese/miscellaneous/writing-a-markdown-file-for-github-using-atom/index.md index 07afd12dbb..e63b2d1713 100644 --- a/guide/chinese/miscellaneous/writing-a-markdown-file-for-github-using-atom/index.md +++ b/guide/chinese/miscellaneous/writing-a-markdown-file-for-github-using-atom/index.md @@ -1,5 +1,5 @@ --- -title: Writing a Markdown File for Github Using Atom +title: Writing a Markdown File for GitHub Using Atom localeTitle: 使用Atom为Github写一个Markdown文件 --- Markdown是一种在Web上设置文本样式的方法,GitHub用户使用markdown为其存储库提供文档。 @@ -61,4 +61,4 @@ Markdown文件很容易编写,你可以[在这里](https://github.com/adam-p/m 要将项目或文件添加到GitHub,请转到[此页面](https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/) 。 -**奖金步骤:** Atom有一个名为[Markdown Preview Plus](https://atom.io/packages/markdown-preview-plus)的软件包。它与普通的降价预览器相同,但预览文件的样式更准确地符合GitHub样式。继续安装此软件包,看看你得到了什么。 \ No newline at end of file +**奖金步骤:** Atom有一个名为[Markdown Preview Plus](https://atom.io/packages/markdown-preview-plus)的软件包。它与普通的降价预览器相同,但预览文件的样式更准确地符合GitHub样式。继续安装此软件包,看看你得到了什么。 diff --git a/guide/chinese/react/what-are-react-props/index.md b/guide/chinese/react/what-are-react-props/index.md index dab70f6e06..7be524fda8 100644 --- a/guide/chinese/react/what-are-react-props/index.md +++ b/guide/chinese/react/what-are-react-props/index.md @@ -1,7 +1,8 @@ ---- -title: React TypeChecking with PropTypes -localeTitle: 使用PropTypes进行React TypeChecking ---- ## 反应PropTypes +--- +title: React TypeChecking with PropTypes +localeTitle: 使用PropTypes进行React TypeChecking +--- +## 反应PropTypes 当应用程序趋于增长时,这些可以作为一种类型检查的方法,通过使用此功能,可以纠正非常大的错误基础。 @@ -122,4 +123,4 @@ import React,{Component} from 'react'; 有关React上PropTypes和其他文档的更多信息。 -访问[官方网站](https://reactjs.org/)并阅读文档或[Github Repo](https://github.com/facebook/react/) \ No newline at end of file +访问[官方网站](https://reactjs.org/)并阅读文档或[GitHub Repo](https://github.com/facebook/react/) diff --git a/guide/chinese/redux/redux-thunk/index.md b/guide/chinese/redux/redux-thunk/index.md index 763c9b0348..4bb9043f12 100644 --- a/guide/chinese/redux/redux-thunk/index.md +++ b/guide/chinese/redux/redux-thunk/index.md @@ -66,9 +66,9 @@ import { createStore, applyMiddleware } from 'redux'; ### 参考 -* [Redux Thunk Github Repo](https://github.com/reduxjs/redux-thunk) +* [Redux Thunk GitHub Repo](https://github.com/reduxjs/redux-thunk) * [Redux中间件](https://redux.js.org/advanced/middleware) ### 来源 -1. [增量计数器示例引自Redux Thunk Documentation,10/02/201](#https://github.com/reduxjs/redux-thunk) \ No newline at end of file +1. [增量计数器示例引自Redux Thunk Documentation,10/02/201](#https://github.com/reduxjs/redux-thunk) diff --git a/guide/chinese/ruby/index.md b/guide/chinese/ruby/index.md index 04fdc8b19b..dbb6e447fb 100644 --- a/guide/chinese/ruby/index.md +++ b/guide/chinese/ruby/index.md @@ -128,4 +128,4 @@ Ruby有几个用于快速搭建应用程序的框架(gem)。到目前为止 ## 学习Ruby之后会怎么样? -每种编程语言都扮演着重要的角色。您可以为许多开源项目做出贡献,或者在掌握了Ruby之后可以申请一些大公司。许多大型互联网网站,如Basecamp,Airbnb,Bleacher Report,Fab.com,Scribd,Groupon,Gumroad,Hulu,Kickstarter,Pitchfork,Sendgrid,Soundcloud,Square,Yammer,Crunchbase,Slideshare,Funny or Die,Zendesk,Github, Shopify建立在Ruby之上,因此有很多选择。 此外,许多初创公司正在招聘RUby on Rails技能的人,因为没有多少程序员试图学习Ruby。所以,你可能有一个明确的工作在一家初创公司工作。 因此,Ruby是初学者友好的,并且非常难以发现你有很多空缺可以作为开发人员工作。 \ No newline at end of file +每种编程语言都扮演着重要的角色。您可以为许多开源项目做出贡献,或者在掌握了Ruby之后可以申请一些大公司。许多大型互联网网站,如Basecamp,Airbnb,Bleacher Report,Fab.com,Scribd,Groupon,Gumroad,Hulu,Kickstarter,Pitchfork,Sendgrid,Soundcloud,Square,Yammer,Crunchbase,Slideshare,Funny or Die,Zendesk,GitHub, Shopify建立在Ruby之上,因此有很多选择。 此外,许多初创公司正在招聘RUby on Rails技能的人,因为没有多少程序员试图学习Ruby。所以,你可能有一个明确的工作在一家初创公司工作。 因此,Ruby是初学者友好的,并且非常难以发现你有很多空缺可以作为开发人员工作。 diff --git a/guide/chinese/wordpress/index.md b/guide/chinese/wordpress/index.md index 39b02de36a..81464721e9 100644 --- a/guide/chinese/wordpress/index.md +++ b/guide/chinese/wordpress/index.md @@ -31,5 +31,5 @@ WordPress的优点包括: * [WordPress: 官方网站](https://wordpress.org/) * [WordPress Codex:在线手册](https://codex.wordpress.org/) * [WordPress代码参考](https://developer.wordpress.org/reference/) -* [WordPress Github Repository](https://github.com/WordPress/WordPress) +* [WordPress GitHub Repository](https://github.com/WordPress/WordPress)