- Check for an existing
.gitignore
file in the project directory
ls -a
$ git clone [email protected]:xxxxx/xxxx.git my-awesome-proj | |
Cloning into 'my-awesome-proj'... | |
ssh: connect to host github.com port 22: Connection timed out | |
fatal: Could not read from remote repository. | |
$ # This should also timeout | |
$ ssh -T [email protected] | |
ssh: connect to host github.com port 22: Connection timed out | |
$ # but this might work |
,_---~~~~~----._ | |
_,,_,*^____ _____``*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" | |
}, |