One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| // LZW-compress a string | |
| function lzw_encode(s) { | |
| var dict = {}; | |
| var data = (s + "").split(""); | |
| var out = []; | |
| var currChar; | |
| var phrase = data[0]; | |
| var code = 256; | |
| for (var i=1; i<data.length; i++) { | |
| currChar=data[i]; |
| // | |
| // SSH & SSL muxer - mux those restrictive proxies | |
| // | |
| // mux_interval | |
| // | | |
| // |\ | | |
| // | \| | |
| // ssl_port -----| \ | |
| // | | | |
| // | |---- mux_port |