- Zoom
CMD 0100%CMD 1Entire projectCMD 2Zoom to selected object
- Hide/Show Sidebars
CMD ALT 1Hide left sidebarCMD ALT 2Hide right ridebarCMD ALT 3Hide bothCMD .Presentation mode
CTRL RRuler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Description of this function. | |
| * | |
| * @param {string} name | |
| * @param {Date} birthday | |
| * @param {boolean=} isMarried Optional parameter. | |
| * @param {string|null} [bloodType] | |
| * @param {number=} [weight=0] Optional parameter with default value. | |
| * @param {string[]} favoriteFoods Array of String. | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| the best way (I've found) to completely uninstall node + npm is to do the following: | |
| go to /usr/local/lib and delete any node and node_modules | |
| go to /usr/local/include and delete any node and node_modules directory | |
| if you installed with brew install node, then run brew uninstall node in your terminal | |
| check your Home directory for any local or lib or include folders, and delete any node or node_modules from there | |
| go to /usr/local/bin and delete any node executable | |
| You may need to do the additional instructions as well: | |
| sudo rm /usr/local/bin/npm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "city": "New York", | |
| "growth_from_2000_to_2013": "4.8%", | |
| "latitude": 40.7127837, | |
| "longitude": -74.0059413, | |
| "population": "8405837", | |
| "rank": "1", | |
| "state": "New York" | |
| }, |
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).
NewerOlder