Skip to content

Instantly share code, notes, and snippets.

@VenkataRaju
VenkataRaju / DynamicFormulaEvaluator.html
Last active September 1, 2015 12:51
Dynamic Formula Evaluator wtirren in HTML and JavaScript
<!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>
@VenkataRaju
VenkataRaju / JSHint.comHomepageCustomizationGreaseMonkeyScript.user.js
Last active August 29, 2015 14:13
JSHint.com Homepage Customization GreaseMonkey Script
// ==UserScript==
// @name JSHintHomePageCustomization
// @namespace http://sites.google.com/site/rajuutils/grease_scripts/JSHintHomePageCustomization
// @include http://jshint.com/
// @version 1
// @grant none
// ==/UserScript==
customize();
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;
@VenkataRaju
VenkataRaju / show_only_the_story_in_eenaduenadu_sunday_story_page.js
Last active August 29, 2015 14:07
Bookmarklet to show only 'story' in this 'Eenadu telugu news paper Sunday story page' http://www.eenadu.net/Magzines/Sundayspecialinner.aspx?qry=katha
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)
{
@VenkataRaju
VenkataRaju / ExcelParser.java
Last active June 30, 2020 04:07
Parses Excel(only .xlsx) file in SAX style
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;