Error
The authenticity of host 'github.com (140.82.113.4)' can't be established.
Fix
ssh-keyscan github.com >> ~/.ssh/known_hostsError
The authenticity of host 'github.com (140.82.113.4)' can't be established.
Fix
ssh-keyscan github.com >> ~/.ssh/known_hosts| <script> | |
| var validNavigation = false; | |
| function wireUpEvents() { | |
| var dont_confirm_leave = 0; | |
| var leave_message = "You sure you want to leave ?"; | |
| function goodbye(e) { | |
| if (!validNavigation) { | |
| if (dont_confirm_leave !== 1) { |
| // Trie.js - super simple JS implementation | |
| // https://en.wikipedia.org/wiki/Trie | |
| // ----------------------------------------- | |
| // we start with the TrieNode | |
| function TrieNode(key) { | |
| // the "key" value will be the character in sequence | |
| this.key = key; | |