Javascript function Write a function, deepEqual, that takes two values and returns true only if they are the same value … More
Author: camilamacedo86
[JS] – How to implement functions ?
Passing values : var myFunc = function(x) { return x * x; }; console.log(myfunc(3)); // → 9 Without passing values … More
[JS] How to implement a switch ?
switch (conditional) { case “A”: console.log(“conditional == A”); break; case “B”: console.log(“conditional == B”); case “C”: console.log(“conditional == C”); … More
[JS] – How to implement while loops ?
while (condition) { {do something} } do (condition) { {do something} } while (conditional);
[JS] – What is the difference between == and === ?
Understanding by examples 0 == false Result : True. 0 is automatically converted to boolean. 0 === false Result : False. Don’t … More
[English] – Most common irregular verbs
I would like to suggest to you check the list below with the most common irregular verbs in English. http://www.englishpage.com/irregularverbs/irregularverbs.html
How to solve the error with the message ‘Permission denied (publickey,gssapi-keyex,gssapi-with-mic)’ which appears when I am trying do a ssh in AWS instance ?
Example Error: cmacedo-OSX:.ssh camilamacedo$ ssh -i my_pair_key.pem IP/DNS Permission denied (publickey,gssapi-keyex,gssapi-with-mic). Possible Situations You’re not specifying the correct SSH keypair file … More
How to solve “Permissions 0777 for ‘~/.ssh/id_rsa’ are too open.” ?
When you are try use a key and you are getting this massage: Permissions 0777 for ‘~/.ssh/id_rsa’ are too open. … More
[Tips] Google’s startups accelerator
https://developers.google.com/startups/accelerator/ I have not attending this program but I feel very interessante and I would like to share here as … More
Women Techmakers: Make your passion
This don’t means that women want benefits or advantages, it is the opposite of this they only want equal positions … More