No. | Questions |
---|---|
Core React | |
1 | What is React? |
2 | [What are the major features of React?](#what-are-the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isPrime(num) { | |
sRoot = Math.sqrt(num); | |
for (let i = 2; i <= sRoot; i++) if (num % i === 0) return false; | |
return num > 1; | |
} | |
function findPrimeTriplets() { | |
const twoDigitPrimes = []; | |
for (let i = 11; i <= 99; i++) { | |
if (isPrime(i)) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
//----------------beginning of editor settings--------------------\\ | |
"editor.comments.ignoreEmptyLines": false, | |
"editor.trimAutoWhitespace": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"editor.definitionLinkOpensInPeek": true, | |
"editor.fastScrollSensitivity": 9, | |
"editor.suggest.shareSuggestSelections": true, | |
"editor.fontSize": 12, | |
"editor.fontFamily": "Consolas, 'Courier New', monospace", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt remove --purge nodejs npm | |
sudo apt clean | |
sudo apt autoclean | |
sudo apt install -f | |
sudo apt autoremove | |
sudo apt install curl | |
cd ~ | |
curl -fsSL https://deb.nodesource.com/setup_17.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - |
A Pen by Bryan C Guner on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>Render markdown:</h2> | |
<div class="load-post-form"> | |
Link to post (busy or steemit): <input type="text" id="post-link-input"> | |
<button id="load-post-button">Load steem post</button> | |
</div> | |
<textarea rows="12" style="width: 100%;" id="input"> | |
# Sample post | |
and some content. | |
Let's mention @ned |
NewerOlder