This file contains 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
/*from https://github.com/stephen-james/DataStructures.Tree */ | |
/* | |
15.12.2014 : Edited version of DataStructures.Tree.js to be able to take more data into the JSON. | |
FOR CUSTOMIZING AND PUTTING IN ALL THE CUSTOM VALUES THAT YOU WANT TO GO INTO YOUR HIERARCHICAL JSON, JUMP TO THE LINES BELOW: | |
simpleChildRepresentation.push(decorateNode | |
AND YOU WILL SEE THE TEMPLATE BELOW. THERE IS ANOTHER TEMPLATE JUST BELOW THAT, FOR THE ROOT NODE, SO BE SURE TO EDIT THAT TOO. | |
*/ | |
var DataStructures = DataStructures || {}; |
This file contains 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> | |
<html> | |
<head> | |
<style> | |
table, th, td { | |
border: 1px solid black; | |
border-collapse:collapse; | |
} | |
th, td { | |
padding: 5px; |
This file contains 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> | |
<html> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<head><title>PuneBudget <==> यूनिकोड परिवर्तित्र (12-11-2014) </title> | |
<script type="text/javascript"> | |
// for Marathi script used by Pune Municipal Corporation in their budget book, http://www.punecorporation.org/informpdf/budget/1415%20SC%20BUDGET%20BOOK.pdf | |
function convert_to_unicode() |
This file contains 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> | |
<html> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<script type="text/javascript"> | |
function convert_to_unicode() | |
{ | |
var array_one = new Array( | |
//PMPML ADDITIONS |
This file contains 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> | |
<html> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<head><title>Zap extra spaces, commas etc</title> | |
<style> | |
input { | |
width: 15em; height: 3em; | |
} | |
</style> | |
<body> |
This file contains 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> | |
<html> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<head><title>Words Replacer : CTRL+H on Steroids</title> | |
<script type="text/javascript"> | |
function ImproveEnglish() | |
{ | |
var array1 = document.getElementById('badenglish').value.split('\n'); |
This file contains 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 xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title></title> | |
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script> | |
<script type="text/javascript"> | |
<!-- | |
function GetLocation() { | |
var geocoder = new google.maps.Geocoder(); | |
var array1 = document.getElementById('txtAddress').value.split('\n'); |
This file contains 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> | |
<html> | |
<head> | |
<title>Pune Info</title> | |
<meta charset="utf-8" /> | |
<link rel="stylesheet" href="lib/leaflet.css" /> <!-- original: http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css --> | |
<link rel="stylesheet" href="lib/leaflet-search.css" /> | |
<link rel="stylesheet" href="lib/leaflet-measure.css"> | |
<link rel="stylesheet" href="lib/leaflet.label.css"> | |
<link rel="stylesheet" href="lib/Control.FullScreen.css" /> |
This file contains 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>Tiles Lister</title> | |
</head> | |
<body> | |
Long-min <input id="longMin" value=73.73577> | |
...........Long-max <input id="longMax" value=73.98056> | |
<br><br><br> | |
Lat-max <input id="latMax" value=18.62933> |
This file contains 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" /> | |
</head> | |
<body> | |
<input type="button" value="previous" onClick="nextTiles(-1)"> | |
<select id="overlaySelector" onChange="changeTiles()"> | |
<option value="1" selected="selected">Option 1</option> | |
<option value="2">Option 2</option> |
OlderNewer