This file contains hidden or 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
| //all are /application/json | |
| //Offering an item | |
| // POST request to endpoint /api/postItem | |
| { | |
| itemName: String, | |
| itemPrice: Number, | |
| Description: String, | |
| lockerCode: String, | |
| image: String, //BASE64 |
This file contains hidden or 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 endOfLine = '\r\n'; | |
| Braile = {}; | |
| Braile.en = {}; | |
| Braile.en.alphabet = { | |
| "a" : "o- -- --", | |
| "b" : "o- o- --", | |
| "c" : "oo -- --", | |
| "d" : "oo -o --", | |
| "e" : "o- -o --", | |
| "f" : "oo o- --", |
This file contains hidden or 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
| template <typename Type> class List { | |
| public: | |
| Type value; | |
| List* previousItem; | |
| List* nextItem; | |
| List ( Type value, List *previous = NULL ) { | |
| this->set (value); | |
| this->previousItem = NULL; | |
| this->nextItem = NULL; |
NewerOlder