Skip to content

Instantly share code, notes, and snippets.

View shortdiv's full-sized avatar
🚧
Always a WIP

Divya shortdiv

🚧
Always a WIP
  • us-central1
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Map Data for Beginners

Data Formats

  • Shapefiles
  • *.shp
  • *.shx
  • *.dbf
  • *.prj
  • *.cpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
var Node = function (name, children) {
this.name = name;
this.children = children;
}
var n1 = new Node("D", null);
var n2 = new Node("E", null);
var n3 = new Node("F", null);
var n4 = new Node("H", null);
@shortdiv
shortdiv / Kopi.js
Last active February 25, 2018 21:27
var Kopi = function() {}
Kopi.prototype = {
parse: function (name){
name = name.trim().toLowerCase();
// defaults
var coffee = 0,
condensed_milk = 0, // sweetened
evaporated_milk = 0, // unsweetened
sugar = 0,