double tweet - up to 280 chars tweets!
Update At least one other person did the same and before this post, here there's the prove . The algo seems to be almost the same, except the length is probably padded to be module of 2 (\x00 at the end) so you can use double-tweet gadget to decode gareth message as well :) Via encode template and same bookmark link, I would like to introduce my last simple experiment: WebReflection::double-tweet (just a click to give it a try, another one to remove) The Concept Twitter lets us type messages with a maximum of 140 characters. Fortunately, twitter accepts Unicode characters and still fortunately, it is extremely easy to pack two ASCII characters into a single Unicode one. Accordingly, 140 ASCII characters could be packed into 280. A Fast ASCII pack / unpack function ASCIIPack(s){ // WebReflection Mit Style License for(var r = [], i = 0, length = s.length, c; i < length; ++i){ c = s.charCodeAt(i); r.push(++i < length ? (c << 8) + s.charCodeAt(i)...