This file contains 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
npm ll --global --depth 0 |
This file contains 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
function repeatString(originalString, times) { | |
if (typeof times !== 'number') { | |
return originalString; | |
} | |
return Array(times + 1).join(originalString); | |
} |
This file contains 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
if (String.prototype.repeat !== 'function') { | |
String.prototype.repeat = function(times) { | |
if (typeof times !== 'number') { | |
return this; | |
} | |
return Array(times + 1).join(this); | |
}; | |
} |
This file contains 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
*|node_modules\ .git\ .svn\ .idea\ |
This file contains 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
1. Open file C:\Program Files\NetBeans X.X\etc\netbeans.conf | |
2. Find parameter netbeans_jdkhome | |
3. Change path to proper JDK | |
X.X means your version of Netbeans. Mine is 8.1 |
This file contains 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
Show hidden characters
{ | |
"disallowEmptyBlocks": true, | |
"disallowKeywords": [ | |
"with", | |
"void" | |
], | |
"disallowNestedTernaries": true, | |
"disallowSpaceBeforeSemicolon": true, |
This file contains 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
# http://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 2 | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
This file contains 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
## IDE AND EDITORS | |
# IDEA | |
.idea/ | |
# NETBEANS | |
nbproject/ | |
# SUBLIME TEXT | |
*.sublime-project | |
*.sublime-workspace |