View gist:b4d3911072b55fba2a914c7c45d4bf3e
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 command: | |
npm install jquery --save | |
---------------------------------------------------------------------------------------- | |
add to angular.json file: | |
"scripts": [ | |
"node_modules/jquery/dist/jquery.min.js" | |
] | |
---------------------------------------------------------------------------------------- |
View StringUtilities.java
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
package util; | |
/** | |
* | |
* @author Dean | |
*/ | |
import java.nio.ByteBuffer; | |
import java.nio.CharBuffer; |