Rendered at 10:38:42 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
filup 22 hours ago [-]
I've tried to make my own text compressor and here was the main idea.
One side is a table of all the most probable phrases up to 12, the other side is a unique identifier.
Then, then you simply string together the unique identifiers, take the bigint of the overall message, then utilize base62 encoding which shrinks the message even further since we are dealing with numbers.
It worked pretty well, some messages would compress very well, but on average, it compressed the original text by 50%.
filup 21 hours ago [-]
For example, here is me trying to compress that message.
One side is a table of all the most probable phrases up to 12, the other side is a unique identifier.
Then, then you simply string together the unique identifiers, take the bigint of the overall message, then utilize base62 encoding which shrinks the message even further since we are dealing with numbers.
It worked pretty well, some messages would compress very well, but on average, it compressed the original text by 50%.
From 400>237 characters!
https://postimg.cc/gn4Ymt2K