https://pdfs.semanticscholar.org/9fbc/50493903cc323170be5094f14aee4735cb6d.pdf
Researcher: Dipankar Dasgupta
git init
git add .
ssh-keygen -t rsa -f ~/.ssh/id_rsa.home
ssh-add ~/.ssh/id_rsa
git remote add origin git@github.com:gituser/myrepo.git
After installing MongoDB with Homebrew:
self
– I see this a lot when setting a pointer to the this
object, such as: var self = this;
. Oftentimes, this is how developers are keeping a reference to an object for use inside of a closure. The problem is that self
is already in use as another pointer to thewindow
object. Don't redefine self
as something other than what it is as it could confuse others looking at your code.top
– This one is most often used in combination with a variable named left
to determine or set element coordinates. Once again, the problem is that top
is a host object, it points to the outermost window
object and is most useful when used from within a frame.location
– I'm surprised, but I have seen variables with this name. This is a host object containing information about the page that is currently loaded.