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
// ==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
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
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
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; |
NewerOlder