- CoffeeScript, Node.js/Express
- Node.js/Express
- MongoDB
- Socket.io
- APIs (Food2Fork): http://food2fork.com/about/api
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
function PermutationStep(num) { | |
var numString = num.toString(); | |
var numArray = numString.split("") | |
var numArrayStart = []; | |
var numArrayEnd = []; | |
for (var i = numArray.length-1; i>0; i--) { | |
if(Number(numArray[i])<Number(numArray[i+1])){ | |
numArrayStart.push(numString.substring(0,i)) |
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
var spliceClean = function(arr, start, numToReplace, replace) { | |
var end = (start+numToReplace-1) | |
var newArray = []; | |
for (i=0; i<arr.length; i++){ | |
(i < start) ? newArray.push(arr[i]) : console.log("rejected") | |
} | |
for (i=3; i<arguments.length; i++){ | |
newArray.push(arguments[i]) |
- Search for vegan substitutes to non-vegan ingredients
- Search by vegan ingredients or recipe type
- House and display vegan recipes added to database
- NOT NECESSARY create miniature version of Reciprocity to generate recipes based on provided ingredients * Reciprocity prompts users to submit an ingredient and returns a list of ingredients that it is commonly paired with.
- Example: Enter Kale -> Return Cashews, Raisins, etc.
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
For Minneapolis Open JS |
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
Cabin Manager--Modern Bulletin Board | |
Sharing a cabin with many families can lead to confusion. | |
Who maintenances this? Who maintenances that? Who filled the boat up last? Who? WHo? Who? | |
Features of this App | |
*Works well on mobile devices (currently only reliable internet access is on phone) | |
*Secure user login | |
*Guest login with access to some, but not all, info |
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
Warning: Can't parse CSS: @media missing '}' near line 6536:1 Use --force to continue. |
OlderNewer