https://www.youtube.com/watch?v=l_OPR2yh2co
All people seems to need data processing
Network aware applications eg browser
| Biz AI Dashboard | |
| My ChatBots | |
| click bot -> Bot Home | |
| Bot Home | |
| click ChatBot -> ChatBot Demo Screen | |
| click Setting -> Bot Settings Screen | |
| click Manage Sources -> Manage Sources Screen | |
| click Delete ChatBot -> Delete Chatbot Screen | |
| ChatBot Demo Screen | |
| click Back -> Bot Home |
| Biz AI Dashboard | |
| My ChatBots | |
| click bot -> Bot Home | |
| Bot Home | |
| click ChatBot -> ChatBot Demo Screen | |
| click Setting -> Bot Settings Screen | |
| click Manage Sources -> Manage Sources Screen | |
| click Delete ChatBot -> Delete Chatbot Screen | |
| ChatBot Demo Screen | |
| Bot Settings Screen |
| Biz AI Dashboard | |
| My ChatBots | |
| click bot -> Bot Home | |
| Bot Home | |
| click ChatBot -> ChatBot Demo Screen | |
| click Setting -> Bot Settings Screen | |
| click Manage Sources -> Manage Sources Screen | |
| click Delete ChatBot -> Delete Chatbot Screen | |
| ChatBot Demo Screen | |
| Bot Settings Screen |
| { | |
| "adaptive_dividers": true, | |
| "always_prompt_for_file_reload": false, | |
| "always_show_minimap_viewport": false, | |
| "animation_enabled": true, | |
| "atomic_save": false, | |
| "auto_close_tags": true, | |
| "auto_complete": true, | |
| "auto_complete_commit_on_tab": true, | |
| "auto_complete_cycle": false, |
https://www.youtube.com/watch?v=l_OPR2yh2co
All people seems to need data processing
Network aware applications eg browser
| {"level":"info","message":"triggered zazu hotkey","timestamp":"2017-02-13T16:14:48.546Z"} | |
| {"level":"verbose","message":"sending showWindow event from toggle event","timestamp":"2017-02-13T16:14:48.557Z"} | |
| {"level":"info","message":"showing window from manual trigger","timestamp":"2017-02-13T16:14:48.558Z"} | |
| {"level":"info","message":"scoping block","timestamp":"2017-02-13T16:14:48.732Z"} | |
| {"plugin":"tinytacoteam/zazu-calculator","level":"info","message":"activate plugin","timestamp":"2017-02-13T16:14:48.738Z"} | |
| {"plugin":"tinytacoteam/zazu-file-finder","level":"info","message":"activate plugin","timestamp":"2017-02-13T16:14:49.010Z"} | |
| {"plugin":"tinytacoteam/zazu-fallback","level":"info","message":"activate plugin","timestamp":"2017-02-13T16:14:49.066Z"} | |
| {"plugin":"tinytacoteam/zazu-template","level":"info","message":"activate plugin","timestamp":"2017-02-13T16:14:49.116Z"} | |
| {"plugin":"tinytacoteam/zazu-system","level":"info","message":"activate plugin","timestamp":"2017-02-13T16:14:49.159Z"} | |
| {"plugin":"tinytacotea |
| # Graph implementation in python | |
| # adjacency list representation | |
| class Graph: | |
| def __init__(self, no_of_nodes): | |
| self.n = no_of_nodes | |
| self.al = [] | |
| for i in range(no_of_nodes): | |
| self.al.append(list()) |
| class Node: | |
| def __init__(self, v=None): | |
| self.val = v | |
| self.left = None | |
| self.right = None | |
| class BST: | |
| def __init__(self): | |
| self.top = Node(); |
| // PREREQ: | |
| // STEP 1: | |
| // Node | |
| // install 'open' node package | |
| // npm install -g open | |
| // change this daily to some random name | |
| var txt = 'asfasdfsdf'; | |
| // STEP 2: | |
| // get the cvid for your account This is a one time thing |
| #include <iostream> | |
| #include <stack> | |
| #include <algorithm> | |
| using namespace std; | |
| int main() { | |
| int n, x, c; | |
| std::stack<int> main_stack; | |
| std::stack<int> side; | |
| cin >> n; |