1. MIME Types - Base64
- Posted by Lmailles <Lmailles at AOL.COM> Dec 19, 1997
- 712 views
OK, thanks for describing BinHex, now can somebody tell me how Base64 works ? I know that it is used for non-text (8-bit files) and presumably encodes 8 bytes or 6 bits at a time, or something similiar. Stuffit Expander is freeware and opens most mime files, hqx, sit, zip, arc, arj, uue and lots more. It is available for most platforms as well so I personally recommend it for people having trouble with encoding and archives (and they did NOT pay me to say that). Have you guys writing the compression algorithms got anything to compete with zip that has built-in error correcting & CRC etc ? Daniel
2. Re: MIME Types - Base64
- Posted by Daniel Berstein <danielberstein at USA.NET> Dec 19, 1997
- 700 views
- Last edited Dec 20, 1997
>Have you guys writing the compression algorithms got anything to compete with >zip that has built-in error correcting & CRC etc ? There are two parts to answer your question: a) Yes, you can code in Euphoria a zip/unzip utility, but I'll take a LOT of work and perhaps break some patents... but... b) It would be so terribly slow that don't even think on it. As an example of Euphoria slowniness on critical-time algorithms is in my compress.e routines. The code implemets in Euphoria an ASM source code participant in a Dr. Dobbs Jornaul... it's supposed to be the FASTEST algorithm on the contest, but it's compressing rate isn't that good. In Euphoria it's quite slow... I guess you can improve it a bit, but still isn't comparable to ASM or C coded routines. A solution would be to effectivly write this stuff in C/C++ and build a DLL, which woul dbe callable by Euphoria programs.
3. Re: MIME Types - Base64
- Posted by "J-Man Th' Shaman [DiS]" <jshaman at PHREAK.ORG> Dec 19, 1997
- 716 views
Daniel Berstein wrote: >... > A solution would be to effectivly write this stuff in C/C++ and build a DLL, > which woul dbe callable by Euphoria programs. >From winsite: zs20a.zip 12/10/94 438K Zip Studio 2.01: The Windows 3.x Zip/Unzip API (1/2) zs20b.zip 12/10/94 496K Zip Studio 2.01: The Windows 3.x Zip/Unzip API (2/2) There are probably other dll's running around out there that take advantage of Win32 improved calls. J-Man Th Shaman [DiS] jshaman at phreak.org