Go here to install Solana.
POST: http://52.163.230.167:5000/v1/api/predict
Header = {
"content-type": "application/json"
}
Body = {
"image": "/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAIBAQEBAQIBAQECAgICAgQDAgICAgUEBAMEBgUGBgYFBgYGBwkIBgcJBwYGCAsICQoKCgoKBggLDAsKDAkKCgr/2wBDAQICAgICAgUDAwUKBwYHCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgr/wAARCAdiB2IDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD5fqvTtS/0G8iqavPOcqefc/bOtUqsVXoOcS86/hVb/t5/WrVJZ9fwoApT9
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
| sudo rm -rf /usr/lib/go-1.6/ /usr/lib/go-1.6/src/ /usr/lib/go-1.6/src/runtime/ /usr/lib/go-1.6/src/runtime/race | |
| curl -O https://storage.googleapis.com/golang/go1.11.5.linux-amd64.tar.gz | |
| sudo tar -C /usr/local -xzf go1.11.5.linux-amd64.tar.gz | |
| mkdir -p ~/go; echo "export GOPATH=$HOME/go" >> ~/.bashrc | |
| echo "export PATH=$PATH:$HOME/go/bin:/usr/local/go/bin" >> ~/.bashrc |
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
| Nhà trường: AK2nJJpJr6o664CWJKi1QRXjqeic2zRp8y | |
| SV_1: AdnJnXwFvAiebxaAtTTLtqxUwR7DtbJDAH | |
| SV_2: AYikBQYmG2Wa6tYDwxmoY6H2mHBd8XoEm1 | |
| SV_3: AK75jfBqcSfVFR9DB3jXp7qW74xkEKNDm6 | |
| SV_4: AGoA8RUdVcjDExM8kECj1zncGYqVJ1S7Bj |
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
| App: | |
| 0xD29dA581ef1618DF2EB5aeFa361B5B9e74a55D45 | |
| 77705774c3303d0441c09094a035a39c5829df2f35294d58bb8fb8272f1bfed3 | |
| Contract: 0x776314ac28c541954169504a3b40d2233518a1ce | |
| Shop1: | |
| 0x3fCce2753c62c5C9CfaF376dd029fDcf3f97C2b5 | |
| 449da3b33335a03bb42ab366dec30e7a1a0e41c4ea3898fcaf5a3cca89afad86 | |
| Shop2: |
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
| Node* addFirst(Node *head, int value) { | |
| Node *addElement = new Node; | |
| addElement->value = value; | |
| if(head == NULL) head = addElement; | |
| else { | |
| addElement->nextNode = head; | |
| head = addElement; | |
| } | |
| return head; | |
| } |
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
| Node* addNode(Node* head, int index, int value){ | |
| Node *addElement = new Node; | |
| Node *pre = new Node; | |
| Node *cur = new Node; | |
| addElement->value = value; | |
| addElement->nextNode = NULL; | |
| if(head == NULL) head = addElement; | |
| else { | |
| cur = head; | |
| for(int i = 0; i <= index; ++i) { |
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
| /* Hàm kiểm tra 1 ngày dạng ngày/tháng/năm là ngày thứ mấy trong tuần */ | |
| void DaysOfWeek(int day, int month, int year) | |
| { | |
| int month0 ; | |
| int year0 ; | |
| int dayOfWeek ; | |
| int x ; | |
| year0 = year - (14 - month)/12 ; |
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
| #include <iostream> | |
| #include <cstdlib> | |
| #include <ctime> | |
| using namespace std; | |
| static const char chuoikytu [] = | |
| "0123456789" | |
| "abcdefghijklmnopqrstuvwxyz" | |
| "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |