Commit Graph

23314 Commits

Author SHA1 Message Date
860cc14894 fix to spelling error "instantiated" (#36032)
* fix to spelling error

* Update curriculum/challenges/english/06-information-security-and-quality-assurance/advanced-node-and-express/set-up-the-environment.english.md

Co-Authored-By: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
2019-05-13 10:00:07 -05:00
c49012377b fix to spelling error and add period (#36034) 2019-05-13 17:00:57 +07:00
0b83b5a5eb [Ru] Improved the translation of Project Euler 02 (#34153)
changed the file "problem-2-even-fibonacci-numbers.russian.md"
2019-05-12 22:00:35 -07:00
Tom
fc547999fd fix/record-collection (#36002)
* fix/record-collection

* fix/remove-old-assert-messages

* fix/attempt-to-fix-build-error

* fix/attempt-to-fix-build-error

* fix/change-verbiage-and-tidy-up

* fix/remove-brackets-in-regex
2019-05-12 23:45:18 -04:00
17d5b64553 update index.md (#32087)
Added a way to practice terminal skills with the use of overthewire war-games.
2019-05-12 17:29:29 -07:00
f9482c3df9 Added examples for complex numbers to numeric-types article (#28443)
* Added examples for complex numbers to numeric-types article

Introduce 3 examples of what a complex number would look like in Python.

* fix: moved links to bottom
2019-05-12 16:26:53 -07:00
0a69401e59 Added python package installer details (#31594)
* Added python package installer details

* Update index.md
2019-05-12 16:26:40 -07:00
bf36259770 Added a way to get multiple inputs (#31684) 2019-05-12 16:01:33 -07:00
21c45aabde added more common and efficient data structures (#29225) 2019-05-12 15:57:13 -07:00
dc0f0a96bb Added text to boolean-operations in python guides (#31023)
Added descriptions and examples of other boolean-operations which are not part of the Python language, but still useful to know.
2019-05-12 15:43:16 -07:00
6361c48b99 Add formatted string literals example (#33192) 2019-05-12 15:36:26 -07:00
d23f5ea952 Insertion (#30223) 2019-05-12 15:35:04 -07:00
01163b2c6b corrected typos and clarified sentence structures (#32947) 2019-05-12 15:27:03 -07:00
c4f17674cf Adding Time Analysis for B-Trees (#31013)
* Adding Time Analysis for B-Trees

Time Analysis for B-Tree:

Suppose a B-tree has n elements and M is the maximum number of children a node can have. What is the maximum depth the tree could have? What is the minimum depth the tree could have?

    The worst-case depth (maximum depth) of a B-tree is: logM/2 n.
    The best-case depth (minimum depth) of a B-tree is: logM n.

Worst-Case Times for B-Trees:

    Adding or removing an element in a B-tree with n elements is O(log n).

* fix: removed duplicate info
2019-05-12 15:19:23 -07:00
3e404cd075 Created required brackets in logn (#33401) 2019-05-12 14:58:05 -07:00
1a4d7a04ac Added b-tree insertion (#30195)
* Added b-tree insertion

* Added Insertion
2019-05-12 14:51:01 -07:00
db22bd3547 Python 3 Change (#28596)
Included difference in python 3 vs python 2
2019-05-12 14:33:15 -07:00
43f2e6223f Added another example to defining-functions article (#28449)
Added an example to help show how to define and call functions in a simple and easy to understand manner.
2019-05-12 14:31:47 -07:00
0a72391002 Cambio en el título (#32967)
De inglés a "Documentación de referencia rápida".
2019-05-12 16:00:37 -05:00
0ec1249ba4 Added (GUI) to make text more clear (#31739)
Added (GUI) to first line in the first paragraph.
2019-05-12 10:30:14 -07:00
Adi
f8de183d32 Adding new commands to the list (#28206)
Adding new commands to the list of commands
2019-05-12 10:28:53 -07:00
ce5af168e4 Fixed link, document format, and grammar (#28023) 2019-05-12 10:25:28 -07:00
b8aa04fc3c fix(guide): typos in bash-redirection (#29279) 2019-05-12 10:01:01 -07:00
efb5310daf Fix incorrect proper name translation and phrases with wrong meaning (#22950)
Some occurrences of proper names, like "React" and "React Native" were wrongly translated to Portuguese.
2019-05-12 10:00:00 -07:00
ceb2234d92 Scrum Components (#27581)
Edited Scrum component description and added components.
2019-05-12 09:56:50 -07:00
c6b968d5bc fix(guide): remove redundant Jupyter NB material and passive voice, simplify exp… (#32940)
* fix(guide): remove redundant material and passive voice, simplify explanations

* Text edit to restart build
2019-05-12 09:54:37 -07:00
e97fc24c49 Translated lines 22 - 55 (#33745)
Updated the language to portuguese in lines 22 to 55
2019-05-12 09:50:47 -07:00
2b27a01ddc Added extra information to "Article Tag" section (#34101)
* Added extra information to "Article Tag" section

* Fixed "Article Tag" section

Fixed grammatical errors and combined multiple lines
2019-05-12 09:50:00 -07:00
9d2307acf6 Update index.md (#27230)
Edited for grammatical errors and some awkward sentences/phrases. Hope this is helpful.
2019-05-12 09:48:14 -07:00
42f565dd04 This method also cleanup the resources such as threads so that application runs smooth. (#32340) 2019-05-12 09:43:47 -07:00
0308cd3f9c Added extra commands that comes very handy (#27195)
* update index.md

Added extra commands that comes very handy

* Update index.md

* Update index.md

* fixed a typo
2019-05-12 09:40:34 -07:00
97e4c38f08 Fixed Formatting. (#27144)
Fixed the formatting and grammar. 
Also made it clear that `malloc()` is generally discouraged for use in C++. See [here](https://stackoverflow.com/questions/45105100/when-and-why-we-must-use-the-malloc) for more info.
2019-05-12 09:40:01 -07:00
f4a196ab0e Added stderr & stdout redirection examples (#28153) 2019-05-12 09:39:12 -07:00
18acffecad Add "Find out more" links and section on BLAST (#24949)
Useful links for finding out more on Computational Genomics, and added a section detailing BLAST, a very useful search algorithm and database for bioinformatics.
2019-05-12 09:32:56 -07:00
S
d1afa9c2a4 Correcting translate errors in contributing guide (Spanish) (#35005) 2019-05-12 03:08:43 -05:00
2cb329c4e6 enhancing the translation to spanish (#34064)
fixed: translations
fixed: spell check
fixed: grammar check
removed: removed additional paragraphs non-existent in the original document
2019-05-12 02:21:52 -05:00
3f8d31656b Code comments translated (#21909)
* Code comments translated

Traducidos los comentarios del código de los ejemplos.

* Update index.md
2019-05-12 12:42:55 +05:30
e9bd19c0dd Update how-to-work-on-guide-articles.md (#25518) 2019-05-12 01:47:15 -05:00
426dbc12ba Typo fixed (#22562)
* Typo fixed

Changed the title from "Liza" to "Listas"

* Update index.md
2019-05-12 11:52:11 +05:30
be74e5be01 Fix translation in Spanish README.md (#21848)
Translate title
2019-05-12 01:03:38 -05:00
aaf94a173b Fixing title and one sentence (#22601)
Title read: Código de Documentación
Should read: Documentación del código
2019-05-12 00:01:29 -05:00
0e63d45be3 Corrected CONTRIBUTING.md Spanish version (#31010)
- Standarised the whole text in the use of 2nd person singular (tú) for referring to the reader. 
- Fixed some discrepancies with capital letters. Usually in Spanish it's not so common to capitalise common nouns. 
- Changed a couple of sentences that didn't sound clear. I used the English version of the article to find the meaning and propose a change of words. 

I honestly don't know how we should translate the word issues. I understand "problema" is definitely it, but in sentences it might not seem clear when it's about a doubt the user has, or when, something reported. I think the usage of the verb "reportar" might be key to clarify the meaning in sentences where both kinds of issues are mixed. (I apologise beforehand if this explanation seems a bit poor. I've been trying to find the right language forum for this kinds of issues ;) ).
2019-05-11 23:52:15 -05:00
d3eda02054 Minor fixes in the Translations (#32979)
Sobretodo la falta de tildes.
2019-05-11 23:52:01 -05:00
74449611bb Fix some typos and refine some expressions in Spanish (#27485)
* Fix some typos and refine some expressions in Spanish

* Making changes as requested from non-Spaniard

* Some more corrections for Spanish
2019-05-11 21:42:51 -05:00
48884f3a4a fix: changed to h4 > s in selector (#36023) 2019-05-11 19:09:08 -05:00
b1ef7ecfbf Add plots to R guide (#25444)
* Add plots to R guide

* Deleted plotting file

* added a plotting index.md for R
2019-05-11 17:27:01 -04:00
fb32d44c54 Expand Propositional Logic Stub (#25398)
This is a simple addition to this stub that briefly explains Modus Ponens.
2019-05-11 17:22:10 -04:00
101087ab13 Add: GnuPG Guide (#25060)
* Add: GnuPG Guide

* Update index.md

* Update index.md

* Update index.md

* fixed title
2019-05-11 17:11:24 -04:00
d073722880 Create tar file (#25056) 2019-05-11 17:09:05 -04:00
6475fe2298 added some basic information and examples for Elm lists (#25042) 2019-05-11 17:07:03 -04:00