https://fonts.google.com/?selection.family=Open+Sans
cd /usr/share/fonts
sudo mkdir googlefonts
cd googlefonts
sudo unzip -d . ~/Downloads/Open_Sans.zip
| /** | |
| * Linkurious 2012, all rights reserved. | |
| * Sébastien Heymann <[email protected]>, | |
| * Romain Yon <[email protected]> | |
| * | |
| * Please use http://jsbeautifier.org/ and indent with 2 spaces. | |
| * | |
| * Lib docs: | |
| * http://twitter.github.com/bootstrap/ | |
| * http://docs.jquery.com/ |
| // Weird thing: | |
| // ************ | |
| // | |
| // The following code does not throw any error, despite i is declared twice | |
| // and I am using "use strict". | |
| // | |
| // So I was expecting the i in the inner for loop to be a different variable | |
| // than the other i (and that it would override it in its own scope). | |
| // | |
| // But it does not: The log is: |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: