A specialized compression protocol for the web?
As much Stack Overflow as possible in 4096 bytes
41–50 of 77 posts
Re: As much Stack Overflow as possible in 4096 bytes
#42Re: As much Stack Overflow as possible in 4096 bytes
#43Re: As much Stack Overflow as possible in 4096 bytes
#44Very impressive. I wish extreme performance goals and requirements would become a new trend. I think we have come to accept a certain level of sluggishness in web apps. I hate it. I wrote a tire search app a few years back and made it work extremely fast given the task at hand. But I did not go to the level that this guy did. http://tiredb.com
Re: As much Stack Overflow as possible in 4096 bytes
#45Very impressive. I wish extreme performance goals and requirements would become a new trend. I think we have come to accept a certain level of sluggishness in web apps. I hate it. I wrote a tire search app a few years back and made it work extremely fast given the task at hand. But I did not go to the level that this guy did. http://tiredb.com
Now that we have blisteringly fast computers, it's worth it to browse old websites and see what "snappy" looks like. http://info.cern.ch/hypertext/WWW/TheProject.html If we could cram more modern functionality into say...twice or three times the performance of the above, I think the web would be a better place. Instead the web is a couple orders of magnitude slower.
But, yeah. If webpages would just revert to what TBL had created (yes, I'll allow for images and minimal other frippery) things would be so much more manageable.
Re: As much Stack Overflow as possible in 4096 bytes
#46Re: As much Stack Overflow as possible in 4096 bytes
#47Re: As much Stack Overflow as possible in 4096 bytes
#48 $ curl -s http://danlec.com/st4k | wc
14 80 4096
$ curl -s http://danlec.com/st4k | gzip -cd | wc
17 311 11547
$ curl -s http://danlec.com/st4k | gzip -cd | gzip -c | wc
19 103 4098Re: As much Stack Overflow as possible in 4096 bytes
#49funny, his compressor must do a better job than mine: $ curl -s http://danlec.com/st4k | wc 14 80 4096 $ curl -s http://danlec.com/st4k | gzip -cd | wc 17 311 11547 $ curl -s http://danlec.com/st4k | gzip -cd | gzip -c | wc 19 103 4098
$ curl -s http://danlec.com/st4k | gzip -cd | gzip -9c | wc
14 80 4096Re: As much Stack Overflow as possible in 4096 bytes
#50funny, his compressor must do a better job than mine: $ curl -s http://danlec.com/st4k | wc 14 80 4096 $ curl -s http://danlec.com/st4k | gzip -cd | wc 17 311 11547 $ curl -s http://danlec.com/st4k | gzip -cd | gzip -c | wc 19 103 4098
Turn up the compression level: $ curl -s http://danlec.com/st4k | gzip -cd | gzip -9c | wc 14 80 4096