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
package excelparser; | |
import com.google.common.base.Joiner; | |
import static com.google.common.base.Preconditions.*; | |
import com.google.common.collect.Maps; | |
import com.google.common.collect.Sets; | |
import java.io.File; | |
import java.io.IOException; | |
import java.io.InputStream; |
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
javascript: | |
/* Shows only story in this Eenadu telugu news paper Sunday story page | |
http://www.eenadu.net/Magzines/Sundayspecialinner.aspx?qry=katha */ | |
var el = document.getElementById("sandayspecialdisplay"); | |
removeEverythingExceptMyPath(el); | |
function removeEverythingExceptMyPath(el) | |
{ |
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
import java.util.AbstractList; | |
import java.util.ArrayList; | |
import java.util.Iterator; | |
import java.util.List; | |
import java.util.NoSuchElementException; | |
import org.w3c.dom.Document; | |
import org.w3c.dom.Element; | |
import org.w3c.dom.Node; | |
import org.w3c.dom.NodeList; |
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
// ==UserScript== | |
// @name JSHintHomePageCustomization | |
// @namespace http://sites.google.com/site/rajuutils/grease_scripts/JSHintHomePageCustomization | |
// @include http://jshint.com/ | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
customize(); |
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
<!DOCTYPE html> | |
<!-- Author: Venkata Raju --> | |
<!-- | |
TODO: 1) Allow multi line in formula (mouse cursor up and down should work) | |
2) Resizeable table header resize: horizontal | |
--> | |
<html> | |
<meta charset="UTF-8"> | |
<head> | |
<title>Dynamic Formula Evaluator</title> |
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
package raju.fileutils; | |
import java.io.IOException; | |
import java.nio.file.FileSystems; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.PathMatcher; | |
import java.nio.file.Paths; | |
import java.util.ArrayList; | |
import java.util.Arrays; |
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
import java.util.ArrayList; | |
import java.util.List; | |
public final class CharEscaper | |
{ | |
private final char escapeChar, escapeForEscapeChar; | |
public CharEscaper(char escapeChar, char escapeForEscapeChar) | |
{ | |
if (escapeChar == escapeForEscapeChar) |
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
package raju.javautil; | |
import java.io.BufferedReader; | |
import java.io.ByteArrayOutputStream; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.io.UnsupportedEncodingException; | |
import java.nio.charset.Charset; |
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
package raju.javautils.xml; | |
import java.io.File; | |
import javax.xml.transform.stream.StreamSource; | |
import javax.xml.validation.Schema; | |
import javax.xml.validation.SchemaFactory; | |
import javax.xml.validation.Validator; | |
import org.xml.sax.SAXException; |
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
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Task Tracker</title> | |
<!-- Version: 0.5 --> | |
<style> | |
table { | |
border-collapse: collapse; | |
} |
OlderNewer