- Check for an existing
.gitignore
file in the project directory
ls -a
,_---~~~~~----._ | |
_,,_,*^____ _____``*g*\"*, | |
/ __/ /' ^. / \ ^@q f | |
[ @f | @)) | | @)) l 0 _/ | |
\`/ \~____ / __ \_____/ \ | |
| _l__l_ I | |
} [______] I | |
] | | | | | |
] ~ ~ | | |
| | |
const digitMod = (value, len) => { | |
const mod = len - Math.round(value - Math.floor(value / len) * len); | |
return mod >= 10 ? 0 : mod; | |
}; | |
const mapValuesWithDigitModByKey = (_key, _len) => (value, key) => | |
_key === key ? digitMod(value, _len) : value; | |
const reduceDigitsByKey = _key => (digits, value, key) => { | |
if (key > _key) { |
kind create cluster --name demo-cluster | |
kind get clusters | |
kubectl config get-contexts |
The rules can be stated as followed:
Passes all tests
Maximizes clarity
{ | |
"emmet.syntaxProfiles" : { | |
"javascript" : "jsx" | |
}, | |
"workbench.startupEditor" : "newUntitledFile", | |
"editor.fontSize" : 16, | |
"javascript.suggest.autoImports" : true, | |
"javascript.updateImportsOnFileMove.enabled" : "always", | |
"editor.rulers" : [ | |
80, |
<h1 >Herick Exterkoetter</h1> | |
<p >Self-taught Developer. Enthusiast of web and mobile development technologies.</p> | |
<p>Passionate about education and teaching about programming.</p> | |
<h1>Connect with me:</h1> | |
[](https://www.linkedin.com/in/herick-exterkoetter-197496195/) | |
[](mailto:[email protected]) | |
--- |
{ | |
"users": [ | |
{ | |
"id": "602", | |
"firstName": "Elisa", | |
"lastName": "Pereira", | |
"userName": "elisa.pereira", | |
"indexRef": 17, | |
"createdAt": "2017-02-15T11:29:40.799Z" | |
}, |
<label for="country">Country</label><span style="color: red !important; display: inline; float: none;">*</span> | |
<select id="country" name="country" class="form-control"> | |
<option value="Afghanistan">Afghanistan</option> | |
<option value="Åland Islands">Åland Islands</option> | |
<option value="Albania">Albania</option> | |
<option value="Algeria">Algeria</option> | |
<option value="American Samoa">American Samoa</option> | |
<option value="Andorra">Andorra</option> | |
<option value="Angola">Angola</option> |