dotsara / 100-projects

100 projects in different languages, frameworks, etc. :package:
http://toolbox.dotsara.com/100-projects
10 stars 2 forks source link

ideas while I'm eating lunch #1

Open dotsara opened 8 years ago

dotsara commented 8 years ago
dotsara commented 8 years ago

Dick's Drive-In calculator…

thinking aloud… 

{ "menu": {   
    "food": {   
      "deluxe" : {
        "id": 01,
        "type": "burger",
        "cost": 3.10,
        "toppings": ["melted cheese", "lettuce", "mayonnaise", "pickle relish"],
      }
    }
  }
}
dotsara commented 8 years ago

Simplifying to start with:

{ "menu": {   
    "food": {   
      "deluxe" : 3.10,
      "special" : 2.00,
      "cheeseburger" : 1.75,
      "hamburger" : 1.40,
      "fries" : 1.75,
    },
    "drinks": {
      "shakes" : 2.50,
      "milk" : 1.25,
      "smallsoda" : 1.40,
      "mediumsoda" : 1.70,
      "largesoda" : 1.90,
      "rootbeerfloat" : 2.50,
      "coffee" : 1.25,
      "hotchocolate" : 1.25
    },
    "ice cream": {
      "icecreamsundae": 2.30,
      "kidcone" : 1.30,
      "singlecone" : 1.90,
      "doublecone" : 2.80,
    },
    "condiments": {
      "onions" : 0.05,
      "ketchup" : 0.05,
      "tartarsauce" : 0.05,
    }
  }
}
dotsara commented 8 years ago

Updated the list in the main comment to be a checklist. ✅

Also! https://github.com/dotsara/ddi-calc 🎉