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
//This is a handy DOM manipulation script which is helpful to do daily chores. | |
//The script can be imported into the chrome browsers js snippets and the functions can be accessed from the console. | |
//Load jQuery and fileSaver | |
var jq = document.createElement('script'); | |
var fs = document.createElement('script'); | |
var zip = document.createElement('script'); | |
var worker = document.createElement('script'); | |
var deflater = document.createElement('script'); | |
var inflater = document.createElement('script'); |
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
SAN JOSE, CA | |
(669) 946 8269 | |
[email protected] | |
https://www.linkedin.com/in/kchenthilrajan/ | |
CHENTHIL RAJAN | |
SUMMARY | |
12+ years of experience in Software Development including Analysis, Design, Development and Testing. | |
Experience in Functional and Object Oriented Programming style of Java and Javascript. | |
SKILLS |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<currency source-url="http://themoneyconverter.com"> | |
<entry code="ARS" feed-location="/rss-feed/ARS/rss.xml"> | |
<name>Argentine Peso</name> | |
<unicode> | |
<decimal>36</decimal> | |
<hex>24</hex> | |
</unicode> | |
</entry> | |
<entry code="AWG" feed-location="/rss-feed/AWG/rss.xml"> |
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
public static String prependZero(String givenStr,int expectedLength){ | |
if(StringUtils.isNotEmpty(givenStr)&&givenStr.length()>=expectedLength){ | |
return givenStr; | |
} | |
return prependZero("0"+givenStr,expectedLength); | |
} | |
public static String appendZero(String givenStr,int expectedLength){ | |
if(StringUtils.isNotEmpty(givenStr)&&givenStr.length()>=expectedLength){ | |
return givenStr; |