From 65c3188fd7642e748e346f46e8a48c96302be7a0 Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Tue, 5 Mar 2019 14:27:17 -0600 Subject: [PATCH] Fix/remove stubs on filled articles (#35506) --- .../index.md | 8 +------- .../registration-of-new-users/index.md | 8 +------- .../specify-only-the-lower-number-of-matches/index.md | 10 ++-------- .../notation/big-omega-notation/index.md | 5 ----- .../standard-objects/object/object-assign/index.md | 5 ----- .../string/string-prototype-includes/index.md | 5 ----- guide/english/php/super-globals/index.md | 8 -------- .../php/working-with-databases/mysqli/index.md | 5 ----- .../product-design/testing-our-assumptions/index.md | 5 ----- .../english/typography/color-and-tonal-value/index.md | 9 --------- guide/english/typography/measuring-type/index.md | 10 ---------- guide/english/typography/page-layout/index.md | 5 ----- .../defining-the-problem/index.md | 11 ----------- 13 files changed, 4 insertions(+), 90 deletions(-) diff --git a/guide/english/certifications/apis-and-microservices/mongodb-and-mongoose/chain-search-query-helpers-to-narrow-search-results/index.md b/guide/english/certifications/apis-and-microservices/mongodb-and-mongoose/chain-search-query-helpers-to-narrow-search-results/index.md index a8bb8d98595..284e5b781eb 100644 --- a/guide/english/certifications/apis-and-microservices/mongodb-and-mongoose/chain-search-query-helpers-to-narrow-search-results/index.md +++ b/guide/english/certifications/apis-and-microservices/mongodb-and-mongoose/chain-search-query-helpers-to-narrow-search-results/index.md @@ -54,10 +54,4 @@ Person.find({age: 55}).sort({name: -1}).limit(5).select( {favoriteFoods: 0} ).ex }) ```
-
- -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - +
\ No newline at end of file diff --git a/guide/english/certifications/information-security-and-quality-assurance/advanced-node-and-express/registration-of-new-users/index.md b/guide/english/certifications/information-security-and-quality-assurance/advanced-node-and-express/registration-of-new-users/index.md index 0ab46899343..a8d89b939e0 100644 --- a/guide/english/certifications/information-security-and-quality-assurance/advanced-node-and-express/registration-of-new-users/index.md +++ b/guide/english/certifications/information-security-and-quality-assurance/advanced-node-and-express/registration-of-new-users/index.md @@ -17,10 +17,4 @@ h1.border.center Profile Home       or else the tests wouldn't pass
-
- -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - +
\ No newline at end of file diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/regular-expressions/specify-only-the-lower-number-of-matches/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/regular-expressions/specify-only-the-lower-number-of-matches/index.md index ae58667a7a1..a1254f78c2b 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/regular-expressions/specify-only-the-lower-number-of-matches/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/regular-expressions/specify-only-the-lower-number-of-matches/index.md @@ -1,6 +1,8 @@ --- title: Specify Only the Lower Number of Matches --- +## Specify Only the Lower Number of Matches + The Problem Change the regex haRegex to match the word "Hazzah" only when it has four or more letter z's. @@ -8,11 +10,3 @@ Solution let haStr = "Hazzzzah"; let haRegex = /Haz{4,30}ah/; // Change this line let result = haRegex.test(haStr); - -## Specify Only the Lower Number of Matches - -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - diff --git a/guide/english/computer-science/notation/big-omega-notation/index.md b/guide/english/computer-science/notation/big-omega-notation/index.md index ad7665dc5ef..ce10f722e16 100644 --- a/guide/english/computer-science/notation/big-omega-notation/index.md +++ b/guide/english/computer-science/notation/big-omega-notation/index.md @@ -3,11 +3,6 @@ title: Big Omega Notation --- ## Big Omega Notation -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - Similar to [big O](https://guide.freecodecamp.org/computer-science/notation/big-o-notation) notation, big Omega(Ω) function is used in computer science to describe the performance or complexity of an algorithm. If a running time is Ω(f(n)), then for large enough n, the running time is at least k⋅f(n) for some constant k. Here's how to think of a running time that is Ω(f(n)): diff --git a/guide/english/javascript/standard-objects/object/object-assign/index.md b/guide/english/javascript/standard-objects/object/object-assign/index.md index 71019686875..fe5d0c044ec 100644 --- a/guide/english/javascript/standard-objects/object/object-assign/index.md +++ b/guide/english/javascript/standard-objects/object/object-assign/index.md @@ -3,11 +3,6 @@ title: Object Assign --- ## Object Assign -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - The `Object.assign()` method is used to 1) add properties and values to an existing object, 2) make a new copy of an existing object, or 3) combine multiple existing objects into a single object. The `Object.assign()` method requires one targetObject as a parameter and can accept an unlimited number of sourceObjects as additional parameters. Important to note here is that the targetObject parameter will always be modified. If that parameter points to an existing object, then that object will be both modified and copied. If, however, you wish to create a copy of an object without modifying that original object, you can pass an empty object `{}` as the first (or targetObject) parameter and the object to be copied as the second (or sourceObject) parameter. diff --git a/guide/english/javascript/standard-objects/string/string-prototype-includes/index.md b/guide/english/javascript/standard-objects/string/string-prototype-includes/index.md index 4cc4092b080..08f27ac3891 100644 --- a/guide/english/javascript/standard-objects/string/string-prototype-includes/index.md +++ b/guide/english/javascript/standard-objects/string/string-prototype-includes/index.md @@ -3,11 +3,6 @@ title: String.prototype.includes --- ## String.prototype.includes -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - The `includes()` method is used to determine whether or not one string can be found in another string. This method returns a boolean value (either `true` or `false`). Important to note is that this method is case-sensitive. diff --git a/guide/english/php/super-globals/index.md b/guide/english/php/super-globals/index.md index a77ace42038..2b058a356f4 100644 --- a/guide/english/php/super-globals/index.md +++ b/guide/english/php/super-globals/index.md @@ -1,16 +1,8 @@ --- title: Super Globals --- - - ## Super Globals -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - - ## List of Super Globals and what are they Super globals are variables defined in the core of PHP, and they are available in all scopes throughout the script. This means that you do not need to define them as **global $variable** . diff --git a/guide/english/php/working-with-databases/mysqli/index.md b/guide/english/php/working-with-databases/mysqli/index.md index 442dead0516..3e813940eb8 100644 --- a/guide/english/php/working-with-databases/mysqli/index.md +++ b/guide/english/php/working-with-databases/mysqli/index.md @@ -3,11 +3,6 @@ title: MySQLi --- ## MySQLi -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - MYSQLi functions allow access to the database. MYSQLi is an improved version of MYSQL diff --git a/guide/english/product-design/testing-our-assumptions/index.md b/guide/english/product-design/testing-our-assumptions/index.md index c8b99ecc7a6..59211cd48e6 100644 --- a/guide/english/product-design/testing-our-assumptions/index.md +++ b/guide/english/product-design/testing-our-assumptions/index.md @@ -3,11 +3,6 @@ title: Testing Our Assumptions --- ## Testing Our Assumptions -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - #### Initial usability testing: How to test an idea with users before even starting the design phase. This is usually done with paper sketches. More resource here: https://www.usertesting.com/blog/2015/05/13/31-questions-every-designer-should-ask-when-testing-prototypes/ diff --git a/guide/english/typography/color-and-tonal-value/index.md b/guide/english/typography/color-and-tonal-value/index.md index a0bccef489b..85d9aeaec96 100644 --- a/guide/english/typography/color-and-tonal-value/index.md +++ b/guide/english/typography/color-and-tonal-value/index.md @@ -3,15 +3,6 @@ title: Color and Tonal Value --- ## Color and Tonal Value -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - - -#### More Information: - - In color theory, a tonal value is produced by adding white, grey, or black to a selected color. This does not change the hue but does alter the colorfullness, also known as saturation. When discussing tonal value, there are three main terms that must be discussed: Tint, Tone, and Shade. Tint is the addition of white to a color. Tint can be used to highlight an area as well as begin to create the illusion of depth on an object. diff --git a/guide/english/typography/measuring-type/index.md b/guide/english/typography/measuring-type/index.md index 7733809ff34..b30a5e7d542 100644 --- a/guide/english/typography/measuring-type/index.md +++ b/guide/english/typography/measuring-type/index.md @@ -3,16 +3,6 @@ title: Measuring Type --- ## Measuring Type -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - - -#### More Information: - - - There are two units of meausurement to meausure font points and picas A Point is 1/72 of an inch. Point is also abbreviated as "pt" diff --git a/guide/english/typography/page-layout/index.md b/guide/english/typography/page-layout/index.md index 724ac6b4282..1c74c9ec028 100644 --- a/guide/english/typography/page-layout/index.md +++ b/guide/english/typography/page-layout/index.md @@ -3,11 +3,6 @@ title: Page Layout --- ## Page Layout -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - #### Page Layout: Page layout is the term used to describe how each page of your document will appear when it is printed. In any Word processor (Microsoft Word, LibreOffice Writer etc), page layout includes elements such as the margins, the number of columns, how headers and footers appear, and a host of other considerations. As you design your pages, you can use the tools that any Word processor puts at your disposal in this regard. We have many features under page layout like: diff --git a/guide/english/user-experience-research/defining-the-problem/index.md b/guide/english/user-experience-research/defining-the-problem/index.md index 75a98cf8a3b..132770a8ea4 100644 --- a/guide/english/user-experience-research/defining-the-problem/index.md +++ b/guide/english/user-experience-research/defining-the-problem/index.md @@ -23,14 +23,3 @@ When writing a problem statement, you might first ask the following questions (r and finally, 6. HOW does the user perfom this task? Once you have identified your user's problem, you can structure your problem statement. This statement is important as it will be how you go about formulating possible solutions to the issue. - -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - - -#### More Information: - - -