-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
掌握 JavaScript 面试:什么是纯函数? #6828
掌握 JavaScript 面试:什么是纯函数? #6828
Conversation
掌握 JavaScript 面试:什么是纯函数?
校对认领 @Glowin |
@chaingangway 好的呢 🍺 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Glowin @niayyy-S 校对完成
TODO1/master-the-javascript-interview-what-is-a-pure-function.md
Outdated
Show resolved
Hide resolved
|
||
We’re going to answer this question with a free lesson from [“Learn JavaScript with Eric Elliott”](http://ericelliottjs.com/product/lifetime-access-pass/): | ||
我们将通过来自 [通过 Eric Elliott 学习 JavaScript](http://ericelliottjs.com/product/lifetime-access-pass/) 的免费课程来回答的这个问题: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「通过 Eric Elliott 学习 JavaScript」=> 「跟 Eric Elliott 学习 JavaScript」
Eric Elliott是一个人名。
|
||
Before we can tackle what a pure function is, it’s probably a good idea to take a closer look at functions. There may be a different way to look at them that will make functional programming easier to understand. | ||
在我们解决什么是纯函数之前,仔细研究一下函数可能更好。观察他们有什么不同,这将会使函数式编程更易于理解。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「观察他们有什么不同,这将会使函数式编程更易于理解」=> 「也许存在一种不一样的看待函数的方式,会让函数式编程更易于理解」
* **Procedures:** A function may be called to perform a sequence of steps. The sequence is known as a procedure, and programming in this style is known as **procedural programming**. | ||
* **I/O:** Some functions exist to communicate with other parts of the system, such as the screen, storage, system logs, or network. | ||
* **映射:**基于输入值产生一些的输出。函数把输入值**映射到**输出值。 | ||
* **过程化:**可以调用一个函数去执行一系列步骤。该一系列步骤称为过程,而这种方式的编程称为**过程编程**。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「过程编程」=> 「面向过程编程」
|
||
Pure functions are all about mapping. Functions map input arguments to return values, meaning that for each set of inputs, there exists an output. A function will take the inputs and return the corresponding output. | ||
纯函数都是关于映射的。函数将输入参数映射到返回值,这意味着对于每个输入,都存在对应的输出。函数将获取输入并返回相应的输出。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「这意味着对于每一个输入」=> 「这意味着对于每一个输入的集合」
TODO1/master-the-javascript-interview-what-is-a-pure-function.md
Outdated
Show resolved
Hide resolved
|
||
Consider this mutating, **impure** **`addToCart()`** function: | ||
考虑一下这种变异的,**不纯的** **`addToCart()`** 函数: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「考虑一下这种变异的」=> 「考虑一下这种改变的」
@@ -216,15 +215,15 @@ test('addToCart()', assert => { | |||
|
|||
``` | |||
|
|||
It works by passing in a cart, and item to add to that cart, and an item quantity. The function then returns the same cart, with the item added to it. | |||
这个函数通过传递 cart 对象,商品和数量被添加到 cart 对象上。然后,该函数返回相同的 cart 对象,并添加了商品。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「这个函数通过传递 cart 对象,商品和数量被添加到 cart 对象上」=> 「这个函数通过传入 cart 对象、添加到 cart 对象的商品、商品数量来调用的」
|
||
**He enjoys a remote lifestyle with the most beautiful woman in the world.** | ||
**他与世界上最美丽的女人一起过着远程的生活方式。** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「他与世界上最美丽的女人一起过着远程的生活方式」=> 「他与世界上最美丽的女人一起享受着远程的生活方式」
校对认领 @Glowin |
@IAMSHENSH 妥妥哒 🍻 |
@chaingangway @lsvih 校检完成~ 辛苦了 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Glowin @niayyy-S 校对完成
|
||
Math has functions, too, and they work a lot like functions in JavaScript. You’ve probably seen functions in algebra. They look something like this: | ||
数学也有函数,它们的工作方式与JavaScript中的函数非常相似。您可能见过代数函数。他们看起来像这样: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「它们的工作方式与JavaScript中的函数非常相似」
=>
「它们的工作方式与 JavaScript 中的函数非常相似」
|
||
``` | ||
console.log( double(5) ); // 10 | ||
``` | ||
|
||
Remember when I said that in math functions, you could replace **`f(2)`** with **`4`**? In this case, the JavaScript engine replaces **`double(5)`** with the answer, **`10`**. | ||
还记得我说过的在数学函数中,你可以替换 **`f(2)`** 为 **`4`** 吗?在这种情况下,JavaScript引擎用 **`10`** 替换**`double(5)`**。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「,JavaScript引擎用」
=>
「,JavaScript 引擎用」
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「JavaScript引擎用 10
替换**double(5)
**。」
=>
「JavaScript引擎用 10
替换 double(5)
。」
(markdown 语法问题)
|
||
So, **`console.log( double(5) );`** is the same as **`console.log(10);`** | ||
因此,**`console.log( double(5) );`** 与**`console.log(10);`** 相同 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「与**console.log(10);
** 相同」
=>
「与 console.log(10);
相同」
(markdown 语法问题)
|
||
--- | ||
|
||
****Eric Elliott** is a distributed systems expert and author of the books, [“Composing Software”](https://leanpub.com/composingsoftware) and [“Programming JavaScript Applications”](https://ericelliottjs.com/product/programming-javascript-applications-ebook/). As co-founder of [DevAnywhere.io](https://devanywhere.io/), he teaches developers the skills they need to work remotely and embrace work/life balance. He builds and advises development teams for crypto projects, and has contributed to software experiences for **Adobe Systems,Zumba Fitness,** **The Wall Street Journal,** **ESPN,** **BBC,** and top recording artists including **Usher, Frank Ocean, Metallica,** and many more.** | ||
**埃里克·埃利奥特(Eric Elliott)**是一名分布式系统专家,并且是[《Composing Software》](https://leanpub.com/composingsoftware)和[《Programming JavaScript Applications》](https://ericelliottjs.com/product/programming-javascript-applications-ebook/)这两本书的作者。作为 [DevAnywhere.io](https://devanywhere.io/) 的联合创始人,他教开发人员远程工作和实现工作 / 生活平衡所需的技能。他建立并为加密项目的开发团队提供咨询,并为 **Adobe 公司、Zumba Fitness、《华尔街日报》、ESPN、BBC** 和包括 **Usher、Frank Ocean、Metallica** 在内的顶级唱片艺术家的软件体验做出了贡献。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「**埃里克·埃利奥特(Eric Elliott)**是一名分布式系统专家」
=>
「埃里克·埃利奥特(Eric Elliott) 是一名分布式系统专家」
(markdown 语法问题)
![Image: Pure — carnagenyc (CC-BY-NC 2.0)](https://cdn-images-1.medium.com/max/2048/1*gF8oCkYNvktBbAAG-nxYrg.jpeg) | ||
|
||
Pure functions are essential for a variety of purposes, including functional programming, reliable concurrency, and React+Redux apps. But what does “pure function” mean? | ||
纯函数对于实现各种目的是必不可少的,包括函数式编程,高并发和 React + Redux 构造的应用程序。但是纯函数是什么意思? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
疑惑
: “reliable concurrency” 翻译为“可靠的并发”是否更准确
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
我觉得 高并发 用的更多,更容易了解吧
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
仔细是思考觉得你是对的,已改正,辛苦了~
|
||
Sometimes we have to ask the computer for the current time. We won’t go into the details of how the time functions work. For now, just copy this code: | ||
有时我们必须询问计算机当前时间。我们不会详细的知道时间函数的工作原理。只需复制以下代码: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
疑惑
:
“我们不会详细的知道时间函数的工作原理。”
=>
“我们不会去详细地了解时间函数的工作原理。”
是否更便于理解
|
||
JavaScript’s object arguments are references, which means that if a function were to mutate a property on an object or array parameter, that would mutate state that is accessible outside the function. Pure functions must not mutate external state. | ||
JavaScript的对象参数是引用的,这意味着如果函数要更改对象或数组参数上的属性,则将使该函数外部可访问的状态发生变化。纯函数不得改变外部状态。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「JavaScript的对象参数是引用的,」
=>
「JavaScript 的对象参数是引用的,」
|
||
JavaScript’s object arguments are references, which means that if a function were to mutate a property on an object or array parameter, that would mutate state that is accessible outside the function. Pure functions must not mutate external state. | ||
JavaScript的对象参数是引用的,这意味着如果函数要更改对象或数组参数上的属性,则将使该函数外部可访问的状态发生变化。纯函数不得改变外部状态。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「JavaScript的对象参数是引用的,」
=>
「JavaScript 的对象参数是引用的,」
|
||
JavaScript’s object arguments are references, which means that if a function were to mutate a property on an object or array parameter, that would mutate state that is accessible outside the function. Pure functions must not mutate external state. | ||
JavaScript的对象参数是引用的,这意味着如果函数要更改对象或数组参数上的属性,则将使该函数外部可访问的状态发生变化。纯函数不得改变外部状态。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
疑惑
:
“这意味着如果函数要更改对象或数组参数上的属性,”
=>
“这意味着如果函数更改对象或数组参数上的属性,”
原句的“要”是否多余,并妨碍理解
|
||
**He enjoys a remote lifestyle with the most beautiful woman in the world.** | ||
**他与世界上最美丽的女人一起享受着远程的生活方式。** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
疑惑
:
“远程的生活方式。”
=>
“远程工作的生活方式。” or
“远程办公的生活方式。”
是否更便于理解,上文提到“work remotely”
@Glowin @IAMSHENSH 校检完成~ 辛苦了 |
|
||
A **function** is a process which takes some input, called **arguments**, and produces some output called a **return value**. Functions may serve the following purposes: | ||
**函数**是一个过程:它需要一些叫做**参数**输入,然后产生一些叫做**返回值**输出。函数可以用于以下目的: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
**函数**是一个过程:它需要一些叫做**参数**输入,然后产生一些叫做**返回值**输出。函数可以用于以下目的: | |
**函数**是一个过程:它需要一些叫做**参数**的输入,然后产生一些叫做**返回值**的输出。函数可以用于以下目的: |
这样好像通顺一点
* **I/O:** Some functions exist to communicate with other parts of the system, such as the screen, storage, system logs, or network. | ||
* **映射:**基于输入值产生一些的输出。函数把输入值**映射到**输出值。 | ||
* **过程化:**可以调用一个函数去执行一系列步骤。该一系列步骤称为过程,而这种方式的编程称为**面向过程编程**。 | ||
* **I / O:**一些函数存在与系统其他部分进行通信,例如屏幕,存储,系统日志或网络。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* **I / O:**一些函数存在与系统其他部分进行通信,例如屏幕,存储,系统日志或网络。 | |
* **I/O:**一些函数存在与系统其他部分进行通信,例如屏幕,存储,系统日志或网络。 |
术语就不用空格啦
|
||
This is true because **`double()`** is a pure function, but if **`double()`** had side-effects, such as saving the value to disk or logging to the console, you couldn’t simply replace **`double(5)`** with 10 without changing the meaning. | ||
这是真实存在的,因为 **`double()`** 是一个纯函数,但是如果 **`double()`** 有副作用,例如将值保存到磁盘或打印到控制台,用10 替换 **`double(5)`** 会改变函数的含义。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这是真实存在的,因为 **`double()`** 是一个纯函数,但是如果 **`double()`** 有副作用,例如将值保存到磁盘或打印到控制台,用10 替换 **`double(5)`** 会改变函数的含义。 | |
这是真实存在的,因为 **`double()`** 是一个纯函数,但是如果 **`double()`** 有副作用,例如将值保存到磁盘或打印到控制台,用 10 替换 **`double(5)`** 会改变函数的含义。 |
漏了个空格
|
||
Program determinism is usually a desirable property in computing. Maybe you think you’re OK because JS runs in a single thread, and as such, is immune to parallel processing concerns, but as the AJAX example demonstrates, a single threaded JS engine does not imply that there is no concurrency. On the contrary, there are many sources of concurrency in JavaScript. API I/O, event listeners, web workers, iframes, and timeouts can all introduce indeterminism into your program. Combine that with shared state, and you’ve got a recipe for bugs. | ||
程序的确定性通常是计算中的理想属性。可能你认为还好,因为 JS 在单线程中运行,因此不受并行处理问题的影响,但是正如 AJAX 示例所示,单线程JS引擎并不意味着没有并发。相反,JavaScript 中有许多并发来源。API I / O,事件侦听,Web Worker,iframe 和超时都可以将不确定性引入程序中。将其与共享状态结合起来,就可以得出解决 bug 的方法。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I / O => I/O
术语别空格啦
@niayyy-S 稍微有几个小问题您再看看哈,其它应该没啥了 |
@lsvih 修改完成了,辛苦了~ |
@niayyy-S 我直接在 pr 里改了一点格式内容,您记得同步一下本地文件哈 |
@niayyy-S 已经 merge 啦~ 快快麻溜发布到掘金然后给我发下链接,方便及时添加积分哟。 掘金翻译计划有自己的知乎专栏,你也可以投稿哈,推荐使用一个好用的插件。 |
@lsvih 提示内容违规了。。。发布不上去 |
@niayyy-S 稍等,我反馈一下 |
「搜索音乐艺术家」 文章发布完毕~掘金文章链接:https://juejin.im/post/5e7f3c3df265da7951664547 |
这什么奇怪的规则。。 🤕 |
* Achieve translation * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * Address comments Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com>
* 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com>
* Achieve translation * 8 个值得了解的树形数据结构 (xitu#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (xitu#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 xitu#6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(xitu#6610) (xitu#6659) * 我并不讨厌箭头函数(xitu#6610) * 我并不讨厌箭头函数(xitu#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (xitu#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * Address comments Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com>
* 更新测试 * Revert "更新测试" This reverts commit afb007d. * 初译完成 * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * fix:文章翻译问题 (#6833) * 用依赖注入来解耦你的代码 (#6823) * translate(*): Part.1 * translate(*): Part.2 * translate(*): 完成翻译 * fix(*): 完成校对 * Create generator-functions-in-javascript.md (#6841) * Create generator-functions-in-javascript.md * Update generator-functions-in-javascript.md * Create how-to-keep-your-dependencies-secure-and-up-to-date.md (#6843) * Create how-to-keep-your-dependencies-secure-and-up-to-date.md * Update how-to-keep-your-dependencies-secure-and-up-to-date.md * Create deep-dive-into-react-fiber-internals.md (#6845) * Create deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md (#6847) * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Create should-you-learn-vim-as-a-developer-in-2020.md (#6849) * Go 发布新版 Protobuf API (#6827) * Achieve translation * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * Address comments Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> * JSON.stringify() 的 5 个秘密特性 (#6793) * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Create high-speed-inserts-with-mysql.md (#6853) * Create high-speed-inserts-with-mysql.md * Update high-speed-inserts-with-mysql.md * 组合软件:书 (#6832) * Update composing-software-the-book.md * Update composing-software-the-book.md * Create 6-best-javascript-frameworks-in-2020.md (#6861) * Create 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * 2020 年用各大前端框架构建的 RealWorld 应用对比 (#6851) * translation complete * Update a-realworld-comparison-of-front-end-frameworks-2020.md 按照建议修改完成 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 又修改了下破折号的格式 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 修改了二级标题的显示问题 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 添加相关个人信息 * Update a-realworld-comparison-of-front-end-frameworks-2020.md Co-authored-by: lsvih <lsvih@qq.com> * Create the-importance-of-why-docs.md (#6868) * Create the-importance-of-why-docs.md * Update the-importance-of-why-docs.md * 不变性之道 (#6857) * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md Co-authored-by: lsvih <lsvih@qq.com> * Create polymorphic-react-components.md (#6870) * Create polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Create active-learning-in-machine-learning.md (#6872) * Create kafka-vs-rabbitmq-why-use-kafka.md (#6874) * Create kafka-vs-rabbitmq-why-use-kafka.md * Update kafka-vs-rabbitmq-why-use-kafka.md * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md (#6876) * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * 云服务如何帮助你提高业务效率? (#6859) * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to proofreading suggestions * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to Yinjias proofreading suggestions * NestJS 实现基本用户认证和会话 (#6731) * NestJS 实现基本用户认证和会话 NestJS 实现基本用户认证和会话 * fix:修改 NestJS 实现基本用户认证和会话 根据校对者意见,修改 NestJS 实现基本用户认证和会话 * Update nestjs-basic-auth-and-sessions.md Co-authored-by: lsvih <lsvih@qq.com> * 作为 2020 年的开发者,你应该学习 VIM 吗? (#6856) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 作为2020年的开发者,你应该学习 VIM 吗? * 校对更新 * 第二次校对修改 * 第三次校对修改 * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 标题数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * 增加校对者名单 * 调整行数 * Update should-you-learn-vim-as-a-developer-in-2020.md Co-authored-by: lsvih <lsvih@qq.com> * MySQL 最佳实践—— 高效插入数据 (#6863) * Finish translation * Addressed comments * 添加校对者信息 * Remove content with english * Create combine-getting-started.md (#6883) * Create combine-getting-started.md * Update combine-getting-started.md * Update combine-getting-started.md * Create how-to-be-a-good-remote-developer.md (#6885) * Create why-is-object-immutability-important.md (#6887) * Create why-is-object-immutability-important.md * Update why-is-object-immutability-important.md * Create what-on-earth-is-the-shadow-dom-and-why-it-matters.md * 2020 年排名前 6 位的 JavaScript 框架 (#6867) * Update 6-best-javascript-frameworks-in-2020.md: Complete translation * Update 6-best-javascript-frameworks-in-2020.md: revise according to 钱俊颖s and niayyys proofreading suggestions * Update 6-best-javascript-frameworks-in-2020.md: add proofreaders' information * JavaScript 风格元素 (#6878) * JavaScript 风格元素 JavaScript 风格元素 * 翻译修改 * 修改标点符号 * 增加校对者信息 Co-authored-by: lsvih <lsvih@qq.com> * 怎样让依赖库保持安全和最新 (#6864) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 怎样让依赖库保持安全和最新 * 第一次校对提交(part) * Create 5-best-practices-to-prevent-git-leaks.md (#6894) * Create 5-best-practices-to-prevent-git-leaks.md * Update 5-best-practices-to-prevent-git-leaks.md * Create swiftui-3d-scroll-effect.md (#6896) * Create swiftui-3d-scroll-effect.md * Update swiftui-3d-scroll-effect.md * Web 应用程序中的数据和 UI 分离 (#6794) * Update separation-of-data-and-ui-in-your-web-app.md * Update separation-of-data-and-ui-in-your-web-app.md * fix:typo (#6903) * Update TODO1/swiftui-3d-scroll-effect.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/swiftui-3d-scroll-effect.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/swiftui-3d-scroll-effect.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/swiftui-3d-scroll-effect.md Co-Authored-By: lsvih <lsvih@qq.com> * 更新校对者 Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> Co-authored-by: zoomdong <1344492820@qq.com> Co-authored-by: 江不知 <448300947@qq.com> Co-authored-by: 司徒公子 <todaycoder001@gmail.com> Co-authored-by: jianhang <snowy.yu@foxmail.com> Co-authored-by: Roc <qinrocdev@gmail.com> Co-authored-by: Jessica <29631279+cyz980908@users.noreply.github.com> Co-authored-by: Amy <46389309+febrainqu@users.noreply.github.com>
* 更新测试 * Revert "更新测试" This reverts commit afb007d. * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * fix:文章翻译问题 (#6833) * 用依赖注入来解耦你的代码 (#6823) * translate(*): Part.1 * translate(*): Part.2 * translate(*): 完成翻译 * fix(*): 完成校对 * Create generator-functions-in-javascript.md (#6841) * Create generator-functions-in-javascript.md * Update generator-functions-in-javascript.md * Create how-to-keep-your-dependencies-secure-and-up-to-date.md (#6843) * Create how-to-keep-your-dependencies-secure-and-up-to-date.md * Update how-to-keep-your-dependencies-secure-and-up-to-date.md * Create deep-dive-into-react-fiber-internals.md (#6845) * Create deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md (#6847) * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Create should-you-learn-vim-as-a-developer-in-2020.md (#6849) * Go 发布新版 Protobuf API (#6827) * Achieve translation * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * Address comments Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> * JSON.stringify() 的 5 个秘密特性 (#6793) * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Create high-speed-inserts-with-mysql.md (#6853) * Create high-speed-inserts-with-mysql.md * Update high-speed-inserts-with-mysql.md * 组合软件:书 (#6832) * Update composing-software-the-book.md * Update composing-software-the-book.md * Create 6-best-javascript-frameworks-in-2020.md (#6861) * Create 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * 2020 年用各大前端框架构建的 RealWorld 应用对比 (#6851) * translation complete * Update a-realworld-comparison-of-front-end-frameworks-2020.md 按照建议修改完成 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 又修改了下破折号的格式 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 修改了二级标题的显示问题 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 添加相关个人信息 * Update a-realworld-comparison-of-front-end-frameworks-2020.md Co-authored-by: lsvih <lsvih@qq.com> * Create the-importance-of-why-docs.md (#6868) * Create the-importance-of-why-docs.md * Update the-importance-of-why-docs.md * 不变性之道 (#6857) * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md Co-authored-by: lsvih <lsvih@qq.com> * Create polymorphic-react-components.md (#6870) * Create polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Create active-learning-in-machine-learning.md (#6872) * Create kafka-vs-rabbitmq-why-use-kafka.md (#6874) * Create kafka-vs-rabbitmq-why-use-kafka.md * Update kafka-vs-rabbitmq-why-use-kafka.md * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md (#6876) * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * 云服务如何帮助你提高业务效率? (#6859) * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to proofreading suggestions * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to Yinjias proofreading suggestions * NestJS 实现基本用户认证和会话 (#6731) * NestJS 实现基本用户认证和会话 NestJS 实现基本用户认证和会话 * fix:修改 NestJS 实现基本用户认证和会话 根据校对者意见,修改 NestJS 实现基本用户认证和会话 * Update nestjs-basic-auth-and-sessions.md Co-authored-by: lsvih <lsvih@qq.com> * 作为 2020 年的开发者,你应该学习 VIM 吗? (#6856) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 作为2020年的开发者,你应该学习 VIM 吗? * 校对更新 * 第二次校对修改 * 第三次校对修改 * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 标题数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * 增加校对者名单 * 调整行数 * Update should-you-learn-vim-as-a-developer-in-2020.md Co-authored-by: lsvih <lsvih@qq.com> * MySQL 最佳实践—— 高效插入数据 (#6863) * Finish translation * Addressed comments * 添加校对者信息 * Remove content with english * Create combine-getting-started.md (#6883) * Create combine-getting-started.md * Update combine-getting-started.md * Update combine-getting-started.md * Create how-to-be-a-good-remote-developer.md (#6885) * Create why-is-object-immutability-important.md (#6887) * Create why-is-object-immutability-important.md * Update why-is-object-immutability-important.md * Create what-on-earth-is-the-shadow-dom-and-why-it-matters.md * 2020 年排名前 6 位的 JavaScript 框架 (#6867) * Update 6-best-javascript-frameworks-in-2020.md: Complete translation * Update 6-best-javascript-frameworks-in-2020.md: revise according to 钱俊颖s and niayyys proofreading suggestions * Update 6-best-javascript-frameworks-in-2020.md: add proofreaders' information * JavaScript 风格元素 (#6878) * JavaScript 风格元素 JavaScript 风格元素 * 翻译修改 * 修改标点符号 * 增加校对者信息 Co-authored-by: lsvih <lsvih@qq.com> * 怎样让依赖库保持安全和最新 (#6864) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 怎样让依赖库保持安全和最新 * 第一次校对提交(part) * Create 5-best-practices-to-prevent-git-leaks.md (#6894) * Create 5-best-practices-to-prevent-git-leaks.md * Update 5-best-practices-to-prevent-git-leaks.md * Create swiftui-3d-scroll-effect.md (#6896) * Create swiftui-3d-scroll-effect.md * Update swiftui-3d-scroll-effect.md * Web 应用程序中的数据和 UI 分离 (#6794) * Update separation-of-data-and-ui-in-your-web-app.md * Update separation-of-data-and-ui-in-your-web-app.md * fix:typo (#6903) * 初译完成 * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/custom-encoding-and-decoding-json-in-swift.md Co-Authored-By: lsvih <lsvih@qq.com> * 增加校对者信息 Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> Co-authored-by: zoomdong <1344492820@qq.com> Co-authored-by: 江不知 <448300947@qq.com> Co-authored-by: 司徒公子 <todaycoder001@gmail.com> Co-authored-by: jianhang <snowy.yu@foxmail.com> Co-authored-by: Roc <qinrocdev@gmail.com> Co-authored-by: Jessica <29631279+cyz980908@users.noreply.github.com> Co-authored-by: Amy <46389309+febrainqu@users.noreply.github.com>
* 更新测试 * Revert "更新测试" This reverts commit afb007d. * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * fix:文章翻译问题 (#6833) * 用依赖注入来解耦你的代码 (#6823) * translate(*): Part.1 * translate(*): Part.2 * translate(*): 完成翻译 * fix(*): 完成校对 * Create generator-functions-in-javascript.md (#6841) * Create generator-functions-in-javascript.md * Update generator-functions-in-javascript.md * Create how-to-keep-your-dependencies-secure-and-up-to-date.md (#6843) * Create how-to-keep-your-dependencies-secure-and-up-to-date.md * Update how-to-keep-your-dependencies-secure-and-up-to-date.md * Create deep-dive-into-react-fiber-internals.md (#6845) * Create deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md (#6847) * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Create should-you-learn-vim-as-a-developer-in-2020.md (#6849) * Go 发布新版 Protobuf API (#6827) * Achieve translation * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * Address comments Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> * JSON.stringify() 的 5 个秘密特性 (#6793) * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Create high-speed-inserts-with-mysql.md (#6853) * Create high-speed-inserts-with-mysql.md * Update high-speed-inserts-with-mysql.md * 组合软件:书 (#6832) * Update composing-software-the-book.md * Update composing-software-the-book.md * Create 6-best-javascript-frameworks-in-2020.md (#6861) * Create 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * 2020 年用各大前端框架构建的 RealWorld 应用对比 (#6851) * translation complete * Update a-realworld-comparison-of-front-end-frameworks-2020.md 按照建议修改完成 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 又修改了下破折号的格式 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 修改了二级标题的显示问题 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 添加相关个人信息 * Update a-realworld-comparison-of-front-end-frameworks-2020.md Co-authored-by: lsvih <lsvih@qq.com> * Create the-importance-of-why-docs.md (#6868) * Create the-importance-of-why-docs.md * Update the-importance-of-why-docs.md * 不变性之道 (#6857) * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md Co-authored-by: lsvih <lsvih@qq.com> * Create polymorphic-react-components.md (#6870) * Create polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Create active-learning-in-machine-learning.md (#6872) * Create kafka-vs-rabbitmq-why-use-kafka.md (#6874) * Create kafka-vs-rabbitmq-why-use-kafka.md * Update kafka-vs-rabbitmq-why-use-kafka.md * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md (#6876) * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * 云服务如何帮助你提高业务效率? (#6859) * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to proofreading suggestions * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to Yinjias proofreading suggestions * NestJS 实现基本用户认证和会话 (#6731) * NestJS 实现基本用户认证和会话 NestJS 实现基本用户认证和会话 * fix:修改 NestJS 实现基本用户认证和会话 根据校对者意见,修改 NestJS 实现基本用户认证和会话 * Update nestjs-basic-auth-and-sessions.md Co-authored-by: lsvih <lsvih@qq.com> * 作为 2020 年的开发者,你应该学习 VIM 吗? (#6856) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 作为2020年的开发者,你应该学习 VIM 吗? * 校对更新 * 第二次校对修改 * 第三次校对修改 * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 标题数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * 增加校对者名单 * 调整行数 * Update should-you-learn-vim-as-a-developer-in-2020.md Co-authored-by: lsvih <lsvih@qq.com> * MySQL 最佳实践—— 高效插入数据 (#6863) * Finish translation * Addressed comments * 添加校对者信息 * Remove content with english * Create combine-getting-started.md (#6883) * Create combine-getting-started.md * Update combine-getting-started.md * Update combine-getting-started.md * Create how-to-be-a-good-remote-developer.md (#6885) * Create why-is-object-immutability-important.md (#6887) * Create why-is-object-immutability-important.md * Update why-is-object-immutability-important.md * Create what-on-earth-is-the-shadow-dom-and-why-it-matters.md * 2020 年排名前 6 位的 JavaScript 框架 (#6867) * Update 6-best-javascript-frameworks-in-2020.md: Complete translation * Update 6-best-javascript-frameworks-in-2020.md: revise according to 钱俊颖s and niayyys proofreading suggestions * Update 6-best-javascript-frameworks-in-2020.md: add proofreaders' information * JavaScript 风格元素 (#6878) * JavaScript 风格元素 JavaScript 风格元素 * 翻译修改 * 修改标点符号 * 增加校对者信息 Co-authored-by: lsvih <lsvih@qq.com> * 怎样让依赖库保持安全和最新 (#6864) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 怎样让依赖库保持安全和最新 * 第一次校对提交(part) * Create 5-best-practices-to-prevent-git-leaks.md (#6894) * Create 5-best-practices-to-prevent-git-leaks.md * Update 5-best-practices-to-prevent-git-leaks.md * Create swiftui-3d-scroll-effect.md (#6896) * Create swiftui-3d-scroll-effect.md * Update swiftui-3d-scroll-effect.md * Web 应用程序中的数据和 UI 分离 (#6794) * Update separation-of-data-and-ui-in-your-web-app.md * Update separation-of-data-and-ui-in-your-web-app.md * fix:typo (#6903) * 初译完成 * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/swiftui-animating-color-changes.md Co-authored-by: lsvih <lsvih@qq.com> * 增加校对者 Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> Co-authored-by: zoomdong <1344492820@qq.com> Co-authored-by: 江不知 <448300947@qq.com> Co-authored-by: 司徒公子 <todaycoder001@gmail.com> Co-authored-by: jianhang <snowy.yu@foxmail.com> Co-authored-by: Roc <qinrocdev@gmail.com> Co-authored-by: Jessica <29631279+cyz980908@users.noreply.github.com> Co-authored-by: Amy <46389309+febrainqu@users.noreply.github.com>
* 更新测试 * Revert "更新测试" This reverts commit afb007d. * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * fix:文章翻译问题 (#6833) * 用依赖注入来解耦你的代码 (#6823) * translate(*): Part.1 * translate(*): Part.2 * translate(*): 完成翻译 * fix(*): 完成校对 * Create generator-functions-in-javascript.md (#6841) * Create generator-functions-in-javascript.md * Update generator-functions-in-javascript.md * Create how-to-keep-your-dependencies-secure-and-up-to-date.md (#6843) * Create how-to-keep-your-dependencies-secure-and-up-to-date.md * Update how-to-keep-your-dependencies-secure-and-up-to-date.md * Create deep-dive-into-react-fiber-internals.md (#6845) * Create deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md (#6847) * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Create should-you-learn-vim-as-a-developer-in-2020.md (#6849) * Go 发布新版 Protobuf API (#6827) * Achieve translation * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * Address comments Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> * JSON.stringify() 的 5 个秘密特性 (#6793) * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Create high-speed-inserts-with-mysql.md (#6853) * Create high-speed-inserts-with-mysql.md * Update high-speed-inserts-with-mysql.md * 组合软件:书 (#6832) * Update composing-software-the-book.md * Update composing-software-the-book.md * Create 6-best-javascript-frameworks-in-2020.md (#6861) * Create 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * 2020 年用各大前端框架构建的 RealWorld 应用对比 (#6851) * translation complete * Update a-realworld-comparison-of-front-end-frameworks-2020.md 按照建议修改完成 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 又修改了下破折号的格式 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 修改了二级标题的显示问题 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 添加相关个人信息 * Update a-realworld-comparison-of-front-end-frameworks-2020.md Co-authored-by: lsvih <lsvih@qq.com> * Create the-importance-of-why-docs.md (#6868) * Create the-importance-of-why-docs.md * Update the-importance-of-why-docs.md * 不变性之道 (#6857) * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md Co-authored-by: lsvih <lsvih@qq.com> * Create polymorphic-react-components.md (#6870) * Create polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Create active-learning-in-machine-learning.md (#6872) * Create kafka-vs-rabbitmq-why-use-kafka.md (#6874) * Create kafka-vs-rabbitmq-why-use-kafka.md * Update kafka-vs-rabbitmq-why-use-kafka.md * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md (#6876) * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * 云服务如何帮助你提高业务效率? (#6859) * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to proofreading suggestions * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to Yinjias proofreading suggestions * NestJS 实现基本用户认证和会话 (#6731) * NestJS 实现基本用户认证和会话 NestJS 实现基本用户认证和会话 * fix:修改 NestJS 实现基本用户认证和会话 根据校对者意见,修改 NestJS 实现基本用户认证和会话 * Update nestjs-basic-auth-and-sessions.md Co-authored-by: lsvih <lsvih@qq.com> * 作为 2020 年的开发者,你应该学习 VIM 吗? (#6856) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 作为2020年的开发者,你应该学习 VIM 吗? * 校对更新 * 第二次校对修改 * 第三次校对修改 * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 标题数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * 增加校对者名单 * 调整行数 * Update should-you-learn-vim-as-a-developer-in-2020.md Co-authored-by: lsvih <lsvih@qq.com> * MySQL 最佳实践—— 高效插入数据 (#6863) * Finish translation * Addressed comments * 添加校对者信息 * Remove content with english * Create combine-getting-started.md (#6883) * Create combine-getting-started.md * Update combine-getting-started.md * Update combine-getting-started.md * Create how-to-be-a-good-remote-developer.md (#6885) * Create why-is-object-immutability-important.md (#6887) * Create why-is-object-immutability-important.md * Update why-is-object-immutability-important.md * Create what-on-earth-is-the-shadow-dom-and-why-it-matters.md * 2020 年排名前 6 位的 JavaScript 框架 (#6867) * Update 6-best-javascript-frameworks-in-2020.md: Complete translation * Update 6-best-javascript-frameworks-in-2020.md: revise according to 钱俊颖s and niayyys proofreading suggestions * Update 6-best-javascript-frameworks-in-2020.md: add proofreaders' information * JavaScript 风格元素 (#6878) * JavaScript 风格元素 JavaScript 风格元素 * 翻译修改 * 修改标点符号 * 增加校对者信息 Co-authored-by: lsvih <lsvih@qq.com> * 怎样让依赖库保持安全和最新 (#6864) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 怎样让依赖库保持安全和最新 * 第一次校对提交(part) * Create 5-best-practices-to-prevent-git-leaks.md (#6894) * Create 5-best-practices-to-prevent-git-leaks.md * Update 5-best-practices-to-prevent-git-leaks.md * Create swiftui-3d-scroll-effect.md (#6896) * Create swiftui-3d-scroll-effect.md * Update swiftui-3d-scroll-effect.md * Web 应用程序中的数据和 UI 分离 (#6794) * Update separation-of-data-and-ui-in-your-web-app.md * Update separation-of-data-and-ui-in-your-web-app.md * fix:typo (#6903) * 初译完成 * 校对完毕 Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> Co-authored-by: zoomdong <1344492820@qq.com> Co-authored-by: 江不知 <448300947@qq.com> Co-authored-by: 司徒公子 <todaycoder001@gmail.com> Co-authored-by: jianhang <snowy.yu@foxmail.com> Co-authored-by: Roc <qinrocdev@gmail.com> Co-authored-by: Jessica <29631279+cyz980908@users.noreply.github.com> Co-authored-by: Amy <46389309+febrainqu@users.noreply.github.com>
* 更新测试 * Revert "更新测试" This reverts commit afb007d. * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * fix:文章翻译问题 (#6833) * 用依赖注入来解耦你的代码 (#6823) * translate(*): Part.1 * translate(*): Part.2 * translate(*): 完成翻译 * fix(*): 完成校对 * Create generator-functions-in-javascript.md (#6841) * Create generator-functions-in-javascript.md * Update generator-functions-in-javascript.md * Create how-to-keep-your-dependencies-secure-and-up-to-date.md (#6843) * Create how-to-keep-your-dependencies-secure-and-up-to-date.md * Update how-to-keep-your-dependencies-secure-and-up-to-date.md * Create deep-dive-into-react-fiber-internals.md (#6845) * Create deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md (#6847) * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Create should-you-learn-vim-as-a-developer-in-2020.md (#6849) * Go 发布新版 Protobuf API (#6827) * Achieve translation * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * Address comments Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> * JSON.stringify() 的 5 个秘密特性 (#6793) * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Create high-speed-inserts-with-mysql.md (#6853) * Create high-speed-inserts-with-mysql.md * Update high-speed-inserts-with-mysql.md * 组合软件:书 (#6832) * Update composing-software-the-book.md * Update composing-software-the-book.md * Create 6-best-javascript-frameworks-in-2020.md (#6861) * Create 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * 2020 年用各大前端框架构建的 RealWorld 应用对比 (#6851) * translation complete * Update a-realworld-comparison-of-front-end-frameworks-2020.md 按照建议修改完成 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 又修改了下破折号的格式 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 修改了二级标题的显示问题 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 添加相关个人信息 * Update a-realworld-comparison-of-front-end-frameworks-2020.md Co-authored-by: lsvih <lsvih@qq.com> * Create the-importance-of-why-docs.md (#6868) * Create the-importance-of-why-docs.md * Update the-importance-of-why-docs.md * 不变性之道 (#6857) * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md Co-authored-by: lsvih <lsvih@qq.com> * Create polymorphic-react-components.md (#6870) * Create polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Create active-learning-in-machine-learning.md (#6872) * Create kafka-vs-rabbitmq-why-use-kafka.md (#6874) * Create kafka-vs-rabbitmq-why-use-kafka.md * Update kafka-vs-rabbitmq-why-use-kafka.md * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md (#6876) * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * 云服务如何帮助你提高业务效率? (#6859) * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to proofreading suggestions * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to Yinjias proofreading suggestions * NestJS 实现基本用户认证和会话 (#6731) * NestJS 实现基本用户认证和会话 NestJS 实现基本用户认证和会话 * fix:修改 NestJS 实现基本用户认证和会话 根据校对者意见,修改 NestJS 实现基本用户认证和会话 * Update nestjs-basic-auth-and-sessions.md Co-authored-by: lsvih <lsvih@qq.com> * 作为 2020 年的开发者,你应该学习 VIM 吗? (#6856) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 作为2020年的开发者,你应该学习 VIM 吗? * 校对更新 * 第二次校对修改 * 第三次校对修改 * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 标题数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * 增加校对者名单 * 调整行数 * Update should-you-learn-vim-as-a-developer-in-2020.md Co-authored-by: lsvih <lsvih@qq.com> * MySQL 最佳实践—— 高效插入数据 (#6863) * Finish translation * Addressed comments * 添加校对者信息 * Remove content with english * Create combine-getting-started.md (#6883) * Create combine-getting-started.md * Update combine-getting-started.md * Update combine-getting-started.md * Create how-to-be-a-good-remote-developer.md (#6885) * Create why-is-object-immutability-important.md (#6887) * Create why-is-object-immutability-important.md * Update why-is-object-immutability-important.md * Create what-on-earth-is-the-shadow-dom-and-why-it-matters.md * 2020 年排名前 6 位的 JavaScript 框架 (#6867) * Update 6-best-javascript-frameworks-in-2020.md: Complete translation * Update 6-best-javascript-frameworks-in-2020.md: revise according to 钱俊颖s and niayyys proofreading suggestions * Update 6-best-javascript-frameworks-in-2020.md: add proofreaders' information * JavaScript 风格元素 (#6878) * JavaScript 风格元素 JavaScript 风格元素 * 翻译修改 * 修改标点符号 * 增加校对者信息 Co-authored-by: lsvih <lsvih@qq.com> * 怎样让依赖库保持安全和最新 (#6864) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 怎样让依赖库保持安全和最新 * 第一次校对提交(part) * Create 5-best-practices-to-prevent-git-leaks.md (#6894) * Create 5-best-practices-to-prevent-git-leaks.md * Update 5-best-practices-to-prevent-git-leaks.md * Create swiftui-3d-scroll-effect.md (#6896) * Create swiftui-3d-scroll-effect.md * Update swiftui-3d-scroll-effect.md * Web 应用程序中的数据和 UI 分离 (#6794) * Update separation-of-data-and-ui-in-your-web-app.md * Update separation-of-data-and-ui-in-your-web-app.md * fix:typo (#6903) * 初译完成 * Update how-to-simulate-a-udp-flood-dos-attack-on-your-computer.md 修改校对 * Update article/2020/how-to-simulate-a-udp-flood-dos-attack-on-your-computer.md Co-authored-by: 司徒公子 <todaycoder001@gmail.com> * Update article/2020/how-to-simulate-a-udp-flood-dos-attack-on-your-computer.md Co-authored-by: 司徒公子 <todaycoder001@gmail.com> * Update article/2020/how-to-simulate-a-udp-flood-dos-attack-on-your-computer.md Co-authored-by: 司徒公子 <todaycoder001@gmail.com> * Update article/2020/how-to-simulate-a-udp-flood-dos-attack-on-your-computer.md Co-authored-by: 司徒公子 <todaycoder001@gmail.com> * 第二次校对 Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> Co-authored-by: zoomdong <1344492820@qq.com> Co-authored-by: 江不知 <448300947@qq.com> Co-authored-by: 司徒公子 <todaycoder001@gmail.com> Co-authored-by: jianhang <snowy.yu@foxmail.com> Co-authored-by: Roc <qinrocdev@gmail.com> Co-authored-by: Jessica <29631279+cyz980908@users.noreply.github.com> Co-authored-by: Amy <46389309+febrainqu@users.noreply.github.com>
* 更新测试 * Revert "更新测试" This reverts commit afb007d. * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * fix:文章翻译问题 (#6833) * 用依赖注入来解耦你的代码 (#6823) * translate(*): Part.1 * translate(*): Part.2 * translate(*): 完成翻译 * fix(*): 完成校对 * Create generator-functions-in-javascript.md (#6841) * Create generator-functions-in-javascript.md * Update generator-functions-in-javascript.md * Create how-to-keep-your-dependencies-secure-and-up-to-date.md (#6843) * Create how-to-keep-your-dependencies-secure-and-up-to-date.md * Update how-to-keep-your-dependencies-secure-and-up-to-date.md * Create deep-dive-into-react-fiber-internals.md (#6845) * Create deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md (#6847) * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Create should-you-learn-vim-as-a-developer-in-2020.md (#6849) * Go 发布新版 Protobuf API (#6827) * Achieve translation * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * Address comments Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> * JSON.stringify() 的 5 个秘密特性 (#6793) * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Create high-speed-inserts-with-mysql.md (#6853) * Create high-speed-inserts-with-mysql.md * Update high-speed-inserts-with-mysql.md * 组合软件:书 (#6832) * Update composing-software-the-book.md * Update composing-software-the-book.md * Create 6-best-javascript-frameworks-in-2020.md (#6861) * Create 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * 2020 年用各大前端框架构建的 RealWorld 应用对比 (#6851) * translation complete * Update a-realworld-comparison-of-front-end-frameworks-2020.md 按照建议修改完成 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 又修改了下破折号的格式 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 修改了二级标题的显示问题 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 添加相关个人信息 * Update a-realworld-comparison-of-front-end-frameworks-2020.md Co-authored-by: lsvih <lsvih@qq.com> * Create the-importance-of-why-docs.md (#6868) * Create the-importance-of-why-docs.md * Update the-importance-of-why-docs.md * 不变性之道 (#6857) * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md Co-authored-by: lsvih <lsvih@qq.com> * Create polymorphic-react-components.md (#6870) * Create polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Create active-learning-in-machine-learning.md (#6872) * Create kafka-vs-rabbitmq-why-use-kafka.md (#6874) * Create kafka-vs-rabbitmq-why-use-kafka.md * Update kafka-vs-rabbitmq-why-use-kafka.md * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md (#6876) * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * 云服务如何帮助你提高业务效率? (#6859) * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to proofreading suggestions * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to Yinjias proofreading suggestions * NestJS 实现基本用户认证和会话 (#6731) * NestJS 实现基本用户认证和会话 NestJS 实现基本用户认证和会话 * fix:修改 NestJS 实现基本用户认证和会话 根据校对者意见,修改 NestJS 实现基本用户认证和会话 * Update nestjs-basic-auth-and-sessions.md Co-authored-by: lsvih <lsvih@qq.com> * 作为 2020 年的开发者,你应该学习 VIM 吗? (#6856) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 作为2020年的开发者,你应该学习 VIM 吗? * 校对更新 * 第二次校对修改 * 第三次校对修改 * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 标题数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * 增加校对者名单 * 调整行数 * Update should-you-learn-vim-as-a-developer-in-2020.md Co-authored-by: lsvih <lsvih@qq.com> * MySQL 最佳实践—— 高效插入数据 (#6863) * Finish translation * Addressed comments * 添加校对者信息 * Remove content with english * Create combine-getting-started.md (#6883) * Create combine-getting-started.md * Update combine-getting-started.md * Update combine-getting-started.md * Create how-to-be-a-good-remote-developer.md (#6885) * Create why-is-object-immutability-important.md (#6887) * Create why-is-object-immutability-important.md * Update why-is-object-immutability-important.md * Create what-on-earth-is-the-shadow-dom-and-why-it-matters.md * 2020 年排名前 6 位的 JavaScript 框架 (#6867) * Update 6-best-javascript-frameworks-in-2020.md: Complete translation * Update 6-best-javascript-frameworks-in-2020.md: revise according to 钱俊颖s and niayyys proofreading suggestions * Update 6-best-javascript-frameworks-in-2020.md: add proofreaders' information * JavaScript 风格元素 (#6878) * JavaScript 风格元素 JavaScript 风格元素 * 翻译修改 * 修改标点符号 * 增加校对者信息 Co-authored-by: lsvih <lsvih@qq.com> * 怎样让依赖库保持安全和最新 (#6864) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 怎样让依赖库保持安全和最新 * 第一次校对提交(part) * Create 5-best-practices-to-prevent-git-leaks.md (#6894) * Create 5-best-practices-to-prevent-git-leaks.md * Update 5-best-practices-to-prevent-git-leaks.md * Create swiftui-3d-scroll-effect.md (#6896) * Create swiftui-3d-scroll-effect.md * Update swiftui-3d-scroll-effect.md * Web 应用程序中的数据和 UI 分离 (#6794) * Update separation-of-data-and-ui-in-your-web-app.md * Update separation-of-data-and-ui-in-your-web-app.md * fix:typo (#6903) * 初译完成 * 第一次校对 Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> Co-authored-by: zoomdong <1344492820@qq.com> Co-authored-by: 江不知 <448300947@qq.com> Co-authored-by: 司徒公子 <todaycoder001@gmail.com> Co-authored-by: jianhang <snowy.yu@foxmail.com> Co-authored-by: Roc <qinrocdev@gmail.com> Co-authored-by: Jessica <29631279+cyz980908@users.noreply.github.com> Co-authored-by: Amy <46389309+febrainqu@users.noreply.github.com>
* 更新测试 * Revert "更新测试" This reverts commit afb007d. * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * fix:文章翻译问题 (#6833) * 用依赖注入来解耦你的代码 (#6823) * translate(*): Part.1 * translate(*): Part.2 * translate(*): 完成翻译 * fix(*): 完成校对 * Create generator-functions-in-javascript.md (#6841) * Create generator-functions-in-javascript.md * Update generator-functions-in-javascript.md * Create how-to-keep-your-dependencies-secure-and-up-to-date.md (#6843) * Create how-to-keep-your-dependencies-secure-and-up-to-date.md * Update how-to-keep-your-dependencies-secure-and-up-to-date.md * Create deep-dive-into-react-fiber-internals.md (#6845) * Create deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md (#6847) * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Create should-you-learn-vim-as-a-developer-in-2020.md (#6849) * Go 发布新版 Protobuf API (#6827) * Achieve translation * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * Address comments Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> * JSON.stringify() 的 5 个秘密特性 (#6793) * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Create high-speed-inserts-with-mysql.md (#6853) * Create high-speed-inserts-with-mysql.md * Update high-speed-inserts-with-mysql.md * 组合软件:书 (#6832) * Update composing-software-the-book.md * Update composing-software-the-book.md * Create 6-best-javascript-frameworks-in-2020.md (#6861) * Create 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * 2020 年用各大前端框架构建的 RealWorld 应用对比 (#6851) * translation complete * Update a-realworld-comparison-of-front-end-frameworks-2020.md 按照建议修改完成 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 又修改了下破折号的格式 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 修改了二级标题的显示问题 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 添加相关个人信息 * Update a-realworld-comparison-of-front-end-frameworks-2020.md Co-authored-by: lsvih <lsvih@qq.com> * Create the-importance-of-why-docs.md (#6868) * Create the-importance-of-why-docs.md * Update the-importance-of-why-docs.md * 不变性之道 (#6857) * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md Co-authored-by: lsvih <lsvih@qq.com> * Create polymorphic-react-components.md (#6870) * Create polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Create active-learning-in-machine-learning.md (#6872) * Create kafka-vs-rabbitmq-why-use-kafka.md (#6874) * Create kafka-vs-rabbitmq-why-use-kafka.md * Update kafka-vs-rabbitmq-why-use-kafka.md * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md (#6876) * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * 云服务如何帮助你提高业务效率? (#6859) * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to proofreading suggestions * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to Yinjias proofreading suggestions * NestJS 实现基本用户认证和会话 (#6731) * NestJS 实现基本用户认证和会话 NestJS 实现基本用户认证和会话 * fix:修改 NestJS 实现基本用户认证和会话 根据校对者意见,修改 NestJS 实现基本用户认证和会话 * Update nestjs-basic-auth-and-sessions.md Co-authored-by: lsvih <lsvih@qq.com> * 作为 2020 年的开发者,你应该学习 VIM 吗? (#6856) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 作为2020年的开发者,你应该学习 VIM 吗? * 校对更新 * 第二次校对修改 * 第三次校对修改 * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 标题数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * 增加校对者名单 * 调整行数 * Update should-you-learn-vim-as-a-developer-in-2020.md Co-authored-by: lsvih <lsvih@qq.com> * MySQL 最佳实践—— 高效插入数据 (#6863) * Finish translation * Addressed comments * 添加校对者信息 * Remove content with english * Create combine-getting-started.md (#6883) * Create combine-getting-started.md * Update combine-getting-started.md * Update combine-getting-started.md * Create how-to-be-a-good-remote-developer.md (#6885) * Create why-is-object-immutability-important.md (#6887) * Create why-is-object-immutability-important.md * Update why-is-object-immutability-important.md * Create what-on-earth-is-the-shadow-dom-and-why-it-matters.md * 2020 年排名前 6 位的 JavaScript 框架 (#6867) * Update 6-best-javascript-frameworks-in-2020.md: Complete translation * Update 6-best-javascript-frameworks-in-2020.md: revise according to 钱俊颖s and niayyys proofreading suggestions * Update 6-best-javascript-frameworks-in-2020.md: add proofreaders' information * JavaScript 风格元素 (#6878) * JavaScript 风格元素 JavaScript 风格元素 * 翻译修改 * 修改标点符号 * 增加校对者信息 Co-authored-by: lsvih <lsvih@qq.com> * 怎样让依赖库保持安全和最新 (#6864) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 怎样让依赖库保持安全和最新 * 第一次校对提交(part) * Create 5-best-practices-to-prevent-git-leaks.md (#6894) * Create 5-best-practices-to-prevent-git-leaks.md * Update 5-best-practices-to-prevent-git-leaks.md * Create swiftui-3d-scroll-effect.md (#6896) * Create swiftui-3d-scroll-effect.md * Update swiftui-3d-scroll-effect.md * Web 应用程序中的数据和 UI 分离 (#6794) * Update separation-of-data-and-ui-in-your-web-app.md * Update separation-of-data-and-ui-in-your-web-app.md * fix:typo (#6903) * 初译完成 * 第一次校对 * 校对完毕 Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> Co-authored-by: zoomdong <1344492820@qq.com> Co-authored-by: 江不知 <448300947@qq.com> Co-authored-by: 司徒公子 <todaycoder001@gmail.com> Co-authored-by: jianhang <snowy.yu@foxmail.com> Co-authored-by: Roc <qinrocdev@gmail.com> Co-authored-by: Jessica <29631279+cyz980908@users.noreply.github.com> Co-authored-by: Amy <46389309+febrainqu@users.noreply.github.com>
* 更新测试 * Revert "更新测试" This reverts commit afb007d. * 初译完成 * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * fix:文章翻译问题 (#6833) * 用依赖注入来解耦你的代码 (#6823) * translate(*): Part.1 * translate(*): Part.2 * translate(*): 完成翻译 * fix(*): 完成校对 * Create generator-functions-in-javascript.md (#6841) * Create generator-functions-in-javascript.md * Update generator-functions-in-javascript.md * Create how-to-keep-your-dependencies-secure-and-up-to-date.md (#6843) * Create how-to-keep-your-dependencies-secure-and-up-to-date.md * Update how-to-keep-your-dependencies-secure-and-up-to-date.md * Create deep-dive-into-react-fiber-internals.md (#6845) * Create deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Update deep-dive-into-react-fiber-internals.md * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md (#6847) * Create how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Create should-you-learn-vim-as-a-developer-in-2020.md (#6849) * Go 发布新版 Protobuf API (#6827) * Achieve translation * 8 个值得了解的树形数据结构 (#6804) * 8个值得了解的树形数据结构 8个值得了解的树形数据结构 * Update 8-Useful-Tree-Data-Structures-Worth-Knowing.md * Update 8-useful-tree-data-structures-worth-knowing.md Co-authored-by: sun <776766759@qq.com> * 眼动跟踪和移动世界的最佳用户体验实践 (#6806) * 眼动跟踪和移动世界的最佳用户体验实践 翻译完成 * 眼动跟踪和移动世界的最佳用户体验实践 #6806 谢谢指点~@xionglong58 @fanyijihua 根据第一轮校对意见修改完成 * 眼动追踪和移动世界的最佳用户体验实践 * 眼动追踪和移动世界的最佳用户体验实践 * 我并不讨厌箭头函数(#6610) (#6659) * 我并不讨厌箭头函数(#6610) * 我并不讨厌箭头函数(#6610) - 根据校对结果修改 * Update i-dont-hate-arrow-functions.md Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: sun <776766759@qq.com> * 掌握 JavaScript 面试:什么是纯函数? (#6828) * 掌握 JavaScript 面试:什么是纯函数? 掌握 JavaScript 面试:什么是纯函数? * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md * Update master-the-javascript-interview-what-is-a-pure-function.md Co-authored-by: lsvih <lsvih@qq.com> * Address comments Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> * JSON.stringify() 的 5 个秘密特性 (#6793) * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Update 5-secret-features-of-json-stringify.md * Create high-speed-inserts-with-mysql.md (#6853) * Create high-speed-inserts-with-mysql.md * Update high-speed-inserts-with-mysql.md * 组合软件:书 (#6832) * Update composing-software-the-book.md * Update composing-software-the-book.md * Create 6-best-javascript-frameworks-in-2020.md (#6861) * Create 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * Update 6-best-javascript-frameworks-in-2020.md * 2020 年用各大前端框架构建的 RealWorld 应用对比 (#6851) * translation complete * Update a-realworld-comparison-of-front-end-frameworks-2020.md 按照建议修改完成 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 又修改了下破折号的格式 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 修改了二级标题的显示问题 * Update a-realworld-comparison-of-front-end-frameworks-2020.md 添加相关个人信息 * Update a-realworld-comparison-of-front-end-frameworks-2020.md Co-authored-by: lsvih <lsvih@qq.com> * Create the-importance-of-why-docs.md (#6868) * Create the-importance-of-why-docs.md * Update the-importance-of-why-docs.md * 不变性之道 (#6857) * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md * Update the-dao-of-immutability.md Co-authored-by: lsvih <lsvih@qq.com> * Create polymorphic-react-components.md (#6870) * Create polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Update polymorphic-react-components.md * Create active-learning-in-machine-learning.md (#6872) * Create kafka-vs-rabbitmq-why-use-kafka.md (#6874) * Create kafka-vs-rabbitmq-why-use-kafka.md * Update kafka-vs-rabbitmq-why-use-kafka.md * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md (#6876) * Create i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * Update i-built-an-app-that-uses-all-7-new-features-in-javascript-es2020.md * 云服务如何帮助你提高业务效率? (#6859) * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to proofreading suggestions * Update how-can-cloud-services-help-improve-your-businessess-efficiency.md: revise according to Yinjias proofreading suggestions * NestJS 实现基本用户认证和会话 (#6731) * NestJS 实现基本用户认证和会话 NestJS 实现基本用户认证和会话 * fix:修改 NestJS 实现基本用户认证和会话 根据校对者意见,修改 NestJS 实现基本用户认证和会话 * Update nestjs-basic-auth-and-sessions.md Co-authored-by: lsvih <lsvih@qq.com> * 作为 2020 年的开发者,你应该学习 VIM 吗? (#6856) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 作为2020年的开发者,你应该学习 VIM 吗? * 校对更新 * 第二次校对修改 * 第三次校对修改 * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * Update TODO1/should-you-learn-vim-as-a-developer-in-2020.md 标题数字格式调整 Co-Authored-By: lsvih <lsvih@qq.com> * 增加校对者名单 * 调整行数 * Update should-you-learn-vim-as-a-developer-in-2020.md Co-authored-by: lsvih <lsvih@qq.com> * MySQL 最佳实践—— 高效插入数据 (#6863) * Finish translation * Addressed comments * 添加校对者信息 * Remove content with english * Create combine-getting-started.md (#6883) * Create combine-getting-started.md * Update combine-getting-started.md * Update combine-getting-started.md * Create how-to-be-a-good-remote-developer.md (#6885) * Create why-is-object-immutability-important.md (#6887) * Create why-is-object-immutability-important.md * Update why-is-object-immutability-important.md * Create what-on-earth-is-the-shadow-dom-and-why-it-matters.md * 2020 年排名前 6 位的 JavaScript 框架 (#6867) * Update 6-best-javascript-frameworks-in-2020.md: Complete translation * Update 6-best-javascript-frameworks-in-2020.md: revise according to 钱俊颖s and niayyys proofreading suggestions * Update 6-best-javascript-frameworks-in-2020.md: add proofreaders' information * JavaScript 风格元素 (#6878) * JavaScript 风格元素 JavaScript 风格元素 * 翻译修改 * 修改标点符号 * 增加校对者信息 Co-authored-by: lsvih <lsvih@qq.com> * 怎样让依赖库保持安全和最新 (#6864) * 更新测试 * Revert "更新测试" This reverts commit afb007d. * 怎样让依赖库保持安全和最新 * 第一次校对提交(part) * Create 5-best-practices-to-prevent-git-leaks.md (#6894) * Create 5-best-practices-to-prevent-git-leaks.md * Update 5-best-practices-to-prevent-git-leaks.md * Create swiftui-3d-scroll-effect.md (#6896) * Create swiftui-3d-scroll-effect.md * Update swiftui-3d-scroll-effect.md * Web 应用程序中的数据和 UI 分离 (#6794) * Update separation-of-data-and-ui-in-your-web-app.md * Update separation-of-data-and-ui-in-your-web-app.md * fix:typo (#6903) * 第一次校对 * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * Update TODO1/combine-getting-started.md Co-authored-by: lsvih <lsvih@qq.com> * 添加校对者 Co-authored-by: Amberlin1970 <37952468+Amberlin1970@users.noreply.github.com> Co-authored-by: sun <776766759@qq.com> Co-authored-by: Charlo <49369951+Charlo-O@users.noreply.github.com> Co-authored-by: TiaossuP <tiaossup@yeah.net> Co-authored-by: 小添 <xiaotian@qunhemail.com> Co-authored-by: niayyy <yy761706@gmail.com> Co-authored-by: lsvih <lsvih@qq.com> Co-authored-by: zoomdong <1344492820@qq.com> Co-authored-by: 江不知 <448300947@qq.com> Co-authored-by: 司徒公子 <todaycoder001@gmail.com> Co-authored-by: jianhang <snowy.yu@foxmail.com> Co-authored-by: Roc <qinrocdev@gmail.com> Co-authored-by: Jessica <29631279+cyz980908@users.noreply.github.com> Co-authored-by: Amy <46389309+febrainqu@users.noreply.github.com>
译文翻译完成,resolve #6814