Skip to content

Instantly share code, notes, and snippets.

//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');
@kchenthilrajan
kchenthilrajan / resume
Last active November 16, 2023 05:16
Chenthil's Full Stack Developer Resume
SAN JOSE, CA
(669) 946 8269
CHENTHIL.RAJAN2018@GMAIL.COM
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
<?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">
@kchenthilrajan
kchenthilrajan / PrependAppendTrimZeros
Last active December 16, 2015 19:19
Utility function to prepend,append and trim zeros to a string
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;