mkdir ex-project cd ex-project npm init -y mkdir src touch webpack.config.js .babelrc
cd src touch index.html index.js cd .. npm i react react-dom --save
| // ==UserScript== | |
| // @name ShowDS Component | |
| // @match https://qa.dialsource.com/* | |
| // @match http://localhost:3000/* | |
| // ==/UserScript== | |
| // Using TamperMonkey, this custom DOM Highlighter script inserts CSS into whatever page is loaded. | |
| // Then all attributes with an sqa-ID are rendered with an outline style. | |
| // It shows what elements have the ID and what ones still need it. | |
| // And on mouse over I can just read the ID. I don't have to search for it on Dev tools |
mkdir ex-project cd ex-project npm init -y mkdir src touch webpack.config.js .babelrc
cd src touch index.html index.js cd .. npm i react react-dom --save
https://www.ostechnix.com/collection-useful-bash-scripts-heavy-commandline-users/
brew install bash-snippets
Even or odd
function isEven(value){
if (value % 2 == 0){
return true;
}
else
return false;
}
Use recursion to solve the following problems. These problems can also be solved non-recursively; you'll be tempted to use tools that you already understand more deeply, but you must solve each one using recursion. For the first part of these exercises, without using any code, you are expected to identify the followings:
| https://glitch.com/edit/#!/future-draw |
| Interest calculator I: Connecting | |
| https://glitch.com/edit/#!/flawless-spider | |
| Interest calculator II: Dispatching | |
| https://glitch.com/edit/#!/silent-cabbage |
| i18n state : | |
| github.com/hexishacks/7.1.1 | |
| CRUD reducer: | |
| github.com/hexishacks/7.1.2 |
| Surprise! | |
| https://glitch.com/edit/#!/six-color | |
| Hourly Rate Calculator | |
| https://glitch.com/edit/#!/bouncy-pickle | |
| Live Search |
| Navigation Bar: | |
| glitch.com/edit/#!/join/bb377c64-07a7-478a-9367-c9511ee9e98a | |
| Address Book: | |
| glitch.com/edit/#!/join/e0406271-de06-42d6-a5f1-7d26984509c7 | |