Commit Graph

26074 Commits

Author SHA1 Message Date
004b99bf8f chore: fix typos in spelling (#38100)
* spelling: accidentally

* spelling: announce

* spelling: assembly

* spelling: avoid

* spelling: backend

* spelling: because

* spelling: claimed

* spelling: candidate

* spelling: certification

* spelling: certified

* spelling: challenge

* spelling: circular

* spelling: it isn't

* spelling: coins

* spelling: combination

* spelling: compliant

* spelling: containers

* spelling: concise

* spelling: deprecated

* spelling: development

* spelling: donor

* spelling: error

* spelling: everything

* spelling: exceed

* spelling: exist

* spelling: falsy

* spelling: faulty

* spelling: forward

* spelling: handle

* spelling: indicates

* spelling: initial

* spelling: integers

* spelling: issealed

* spelling: javascript

* spelling: length

* spelling: maximum

* spelling: minimum

* spelling: mutable

* spelling: notifier

* spelling: coordinate

* spelling: passport

* spelling: perform

* spelling: permuter

* spelling: placeholder

* spelling: progressively

* spelling: semantic

* spelling: submission

* spelling: submit

* spelling: translations

* spelling: turquoise

* spelling: visualization

* spelling: without

* spelling: registration

* spelling: representation
2020-02-08 23:59:10 +05:30
9e1bac4807 docs: update hall of fame verbiage 2020-02-08 21:12:19 +05:30
a7075a579c Fix: Problem 39: Integer right triangles (#38145)
* fix: correct test and add solution

I also changed the seed to report the results of an easier example to
the user, since just evaluating the function mostly wastes time.

* fix: use a better solution

* fix: credit original author
2020-02-08 21:09:32 +05:30
158188924b docs: added responsible disclosure and hall of fame 2020-02-08 21:03:32 +05:30
f4fbe1d97c fix(client): Header and buttons text made smaller (#38110)
* Front page header and login buttons text made smaller

* Increased headers size a little to all be over 1rem
2020-02-08 18:28:25 +05:30
8cf64f2539 ProjectEuler | Update Problem statement of 002 to match projecteuler.net (#38101)
* Correct ProjectEuler:002 definition and tests

From projecteuler.net:
By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms.
Correct: take all f(n) where f(n) <= 4,000,000 and f(n) is even
Incorrect: take all f(n) where n <= 4,000,000 and f(n) is even

* Incorporate PR review suggestios to ProjectEuler 002

Reword the problem statement

Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com>

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
2020-02-07 10:09:35 -06:00
4ef445c543 feat: add styles for markdown tables and convert some HTML tables to markdown (#38126) 2020-02-07 09:47:35 +01:00
afd467f5dc Removes RSA links from English challenges (#37869)
* RSA links deleted from challenges

* fix: remove remaining RSA links in challenges
2020-02-07 14:46:07 +09:00
bef738f0d4 modfied tests and made correction in solution (#38023) 2020-02-06 20:31:03 -05:00
Tom
a9c173b35b fix: remove useless last sentence on intros (#38176) 2020-02-06 17:22:15 +01:00
c76978bdfe fix: prevent duplication of Monaco webpack plugin (#38131)
It seems that adding it during the 'build-html' stage meant it was
creating new, unminified, versions of the scripts and overwriting the
existing, minified, ones.
2020-02-06 14:24:00 +03:00
f3a386982a Misspelling fix, add colon. (#38169) 2020-02-06 09:46:44 +01:00
cccad94754 fix(learn): updated challenge text to clarify when to start using new boilerplates (#38124)
* fix: update to clarify new boilerplates used

Updating challenge text to make it more clear that learners need to switch to new boilerplate

* fix: improved wording to clarify new boilerplates used

Updating challenge text to be consistent and make it clear where learners are to switch to new boilerplate
Incorporating suggestions from PR #38124
2020-02-05 21:15:53 -06:00
fcddfc90b2 fix: Update html tags to fix misalignment (#38160) 2020-02-05 11:18:51 +05:30
d89eae392f fix: adding test to check if flat or flatMap method was used in the steamroller challenge (#38158)
* fix: adding test to check if flat or flatMap method was used in the steamroller challenge

* Addressed comments and acknowledged suggestions
2020-02-04 17:00:33 -05:00
9a863898f3 fix: remove html tags to fix misalignment (#38159)
* fix: remove html tags to fix misalignment

* Update client/src/pages/learn/apis-and-microservices/managing-packages-with-npm/index.md

Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com>

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
2020-02-04 11:31:48 -06:00
Tom
25a46f613b fix: add line break to align with the rest of the intros (#38161) 2020-02-04 11:27:58 -06:00
66e5cf0051 fix(curriclum): modified add images to your website (#38155)
Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
Co-authored-by: Manish Giri <manish.giri.me@gmail.com>
2020-02-04 20:12:53 +05:30
6a4b42c4ec Update to make instructions more clear (#38068)
The instructions on the exercise following this specify 'behind the scenes' which sounds more clear than 'in the background'.
2020-02-04 10:54:02 +03:00
24eb2c4310 fix: add donation ga and tests (#38003)
* fix: add donation ga

* feat: add ga-saga tests
2020-02-04 11:13:56 +05:30
992ee98cc1 fix: make no-hits result seem non-interactive 2020-02-04 10:56:34 +05:30
00e0f574df refactor: move no hits case into own component 2020-02-04 10:56:34 +05:30
Tom
964328dbae fix(client): accuracy issue with heatmap (#38137)
* fix/accuracy-issue-with-heatmap

* fix: typo

* feat: add test and simplify logic

* test: mock Date.now and update snapshot

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2020-02-04 10:37:04 +05:30
c6eb40ceef feat: remove protection from interview prep (#38136)
The interview prep section includes many challenges that require long
running calculations which can be mistaken for infinite loops. This
removes the loop protection from those challenges, while the tests are
being evaluated.

It keeps the protection for the preview, since it is easy to create
broken code while working on a challenge and that should not crash the
site.
2020-02-04 10:33:56 +05:30
8b692560e8 Fix: (Rosetta-Code) Correct the Test suite and make expression clearer (#38102)
* Fix: Correct the Test suite and make expression clearer

* Update 24-game.english.md
2020-02-04 07:08:32 +05:30
d626e898ee fix(curriculum): stop tests running after navigating away (#38146) 2020-02-03 18:52:49 +05:30
093f3f8a04 fix(settings): happier/less stern flash messages! (#38134) 2020-02-03 15:27:41 +05:30
cfbb3f64c4 Change variable declaration from var to let in description (#38150) 2020-02-02 15:29:03 -06:00
0e4a1408f8 docs: add closing quotes to local setup (#38149) 2020-02-01 13:20:22 +01:00
15d5824795 Change n pounds to n pence in Project Euler problem 31 (#38144) 2020-01-31 15:23:15 +01:00
2f39dd07d6 fix: removed part of user story 2020-01-29 14:05:39 +09:00
7453131461 Apply proper formatting on Note paragraph (#38120) 2020-01-26 17:31:51 -06:00
fda7fb174e fix: Correct paths in English exercises by prefixing "/" before "learn" (#38099)
* fix: Correct paths in English exercises by prefixing "/" before "learn"

* fix(lang): Correct paths to exercises by prefixing "/" before "learn" in remaining languages
2020-01-26 12:51:21 -06:00
66631812fa fix translation in CONTRIBUTING.md (#37383) 2020-01-24 10:41:44 +04:00
fe29ec4209 Added Russian translate (#37539) 2020-01-24 10:30:03 +04:00
60bf902ec8 Better russian translate (#37540) 2020-01-24 09:48:11 +04:00
decc6043c2 Better russian language (#37541) 2020-01-24 09:46:48 +04:00
dd9485f27c Better russian language (#37542) 2020-01-24 09:45:53 +04:00
103eac7540 docs: update copyrights (#38088)
* docs: update copyrights
2020-01-22 12:30:43 +01:00
1159a8dcaf fix: Add edge case for mixed grouping of characters exercise, where "Frank Roosevelt" returns false (#38097) 2020-01-22 15:58:47 +05:30
10bd00309a Added solution to this exercise (#38074)
* Added solution to this exercise

* fix: changed js to html

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
2020-01-22 00:00:06 +05:30
46e2a1b262 Improve Arabic translation (#36960) 2020-01-21 21:25:16 +03:00
bc470325d0 Update use-destructuring-assignment-with-the-rest-parameter-to-reassign-array-elements.english.md (#38092)
I added 'the' to correct the English grammar and hence improve the readability of the instructions.
2020-01-21 08:25:10 -06:00
64286b4f13 fix: add closing section tag (#38094) 2020-01-21 16:45:31 +03:00
10a2b06bae Improve Arabic translation/fix code blockk (#36961) 2020-01-21 16:41:05 +03:00
78a1bc3a1c Fix code block (#36962) 2020-01-21 16:35:16 +03:00
3cc810e387 Improve translations/code block fix (#36964) 2020-01-21 16:30:56 +03:00
bcaec00958 Translate discerption to Arabic (#37650)
* Translate discerption to Arabic

* Translate description and instructions to Arabic
2020-01-21 16:21:47 +03:00
db652a6e8a Revert "Translate description section to Arabic (#37652)" (#38093)
This reverts commit de1ab3dc65.
2020-01-21 16:20:04 +03:00
de1ab3dc65 Translate description section to Arabic (#37652) 2020-01-21 16:03:24 +03:00