AND I FORGOT TO DOCUMENT IT SHIT.

OK. So it’d be a website that will turn your miserable and moody day into a special day.

== manipulate thus new meaning of life ===

tech note

  • web speech api
    • https://github.com/GoogleChrome/webplatform-samples/blob/master/webspeechdemo/webspeechdemo.html
  • regex
    • https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
  • splice
  • //At position 2, remove 2 items:
    var fruits = ["Banana", "Orange", "Apple", "Mango"];
    fruits.splice(2, 2);
    //The result of fruits will be:
    //Banana,Orange