feat(learn): split InforSec and QA into individual certs (#38347)

Co-authored-by: Mrugesh Mohapatra <me@raisedadead.com>
Co-authored-by: Kris Koishigawa <scissorsneedfoodtoo@gmail.com>
This commit is contained in:
Beau Carnes
2020-04-23 09:08:50 -04:00
committed by Mrugesh Mohapatra
parent c75d212831
commit 256ed00fb9
25 changed files with 251 additions and 160 deletions

View File

@@ -3,13 +3,15 @@ id: 5e601c0d5ac9d0ecd8b94afe
title: American British Translator
challengeType: 4
isRequired: true
forumTopicId: 301571
---
## Description
<section id='description'>
COMING SOON
Build a full stack JavaScript app that is functionally similar to this: <a href='add-glitch-link' target='_blank'>add-glitch-link</a>.
Working on this project will involve you writing your code on Glitch on our starter project. After completing this project you can copy your public glitch url (to the homepage of your app) into this screen to test it! Optionally you may choose to write your project on another platform but it must be publicly visible for our testing.
Start this project on Glitch using <a href='https://glitch.com/edit/#!/remix/clone-from-repo?REPO_URL=add-repo-url'>this link</a> or clone <a href='add-repo-url'>this repository</a> on GitHub! If you use Glitch, remember to save the link to your project somewhere safe!
</section>
## Instructions
@@ -22,8 +24,23 @@ COMING SOON
```yml
tests:
- text: test
testString: 'test'
- text: I can enter a simple sentence into the text area and select whether to translate to British or American English from the dropdown menu.
testString: ''
- text: When the "Translate" button is pressed, append the translated sentence to the <code>translated-sentence</code> <code>div</code>. See the JavaScript files in <code>/public</code> for the different spelling and terms your application should translate.
testString: ''
- text: Wrap any translated spelling or terms with <code>&lt;span class=&quot;highlight&quot;&gt;...&lt;/span&gt;</code> tags so they appear in green.
testString: ''
- text: If the sentence in the text area has no spelling or terms that should be translated, append the message "Everything looks good to me!" to the <code>translated-sentence</code> <code>div</code>.
testString: ''
- text: |
If there is no text in the text area, append the message "Error: No text to translate." to the <code>error-msg</code> <code>div</code> so the text appears in red.
testString: ''
- text: I can press the "Clear Input" button to remove all text from the text area and the <code>translated-sentence</code> <code>div</code>.
testString: ''
- text: All 12 unit tests are complete and passing.
testString: ''
- text: All 4 functional tests are complete and passing.
testString: ''
```
</section>

View File

@@ -3,12 +3,15 @@ id: 5e601bf95ac9d0ecd8b94afd
title: Sudoku Solver
challengeType: 4
isRequired: true
forumTopicId: 301571
---
## Description
<section id='description'>
COMING SOON
Build a full stack JavaScript app that is functionally similar to this: <a href='add-glitch-link' target='_blank'>add-glitch-link</a>.
Working on this project will involve you writing your code on Glitch on our starter project. After completing this project you can copy your public glitch url (to the homepage of your app) into this screen to test it! Optionally you may choose to write your project on another platform but it must be publicly visible for our testing.
Start this project on Glitch using <a href='https://glitch.com/edit/#!/remix/clone-from-repo?REPO_URL=add-repo-url'>this link</a> or clone <a href='add-repo-url'>this repository</a> on GitHub! If you use Glitch, remember to save the link to your project somewhere safe!
</section>
## Instructions
@@ -21,8 +24,18 @@ COMING SOON
```yml
tests:
- text: test
testString: 'test'
- text: I can enter a sudoku puzzle by filling in the text area with either a number or period (".") to represent an empty cell. When a valid number is entered in the text area, the same number is applied to the correct cell of the sudoku grid.
testString: ''
- text: I can enter a sudoku puzzle by adding numbers directly to the sudoku grid. When a valid number is entered in the sudoku grid, the same number appears in the correct position in the text area.
testString: ''
- text: I can solve an incomplete puzzle by clicking the "Solve" button. When a solution is found, the sudoku grid is automatically populated with the correct numbers for each cell.
testString: ''
- text: I can clear the text area and sudoku grid by clicking the "Clear" button.
testString: ''
- text: All 6 unit tests are complete and passing.
testString: ''
- text: All 4 functional tests are complete and passing.
testString: ''
```