Viewing profile — palaiologos
palaiologos
HN member- Joined
- Thu, Feb 28, 2019, 1:54 PM UTC
- HN karma
- 409
- Public activity
- 31 items
- HN profile
- View on Hacker News ↗
About palaiologos
No profile information was provided.
Recent public activity
-
comment
Comment #42902407
Hi, tool author here. Huffman coding is a static minimum-redundancy code. What this means is that it finds an optimal assignment of bit sequences to letters in the input alphabet (…
-
comment
Comment #42902241
Hi, tool author here! Thank you for your benchmark! As you may be aware, different compression tools fill in different data type niches. In particular, less specialised statistical…
-
comment
Comment #42902144
Hi, tool author here! Regarding your first remark: high ratio data compression has its time and place, and I personally understand that to many people it is not very desirable. In …
-
comment
Comment #42902059
Hi! Tool author here. Almost every single open source compression tool contains a clause like this. For example, the one in the README that you see has been directly lifted from th…
-
comment
Comment #40465319
they're looking for a compressor that can do more than 200MB/s on a 10mW machine (that's including radio, so it has to run on a CPU clocked like original 8086) and yield 200x size …
-
comment
Comment #38860004
Yeah, I can kind of relate, actually! Now I am 19, have a job and attend a somewhat demanding university, outside of (more useful?) real world research I am currently doing. I wrot…
-
comment
Comment #38853297
Thank you for the kind comments! Unfortunately, the BLC interpreter is much slower than MalbolgeLISP, even when using fast20 (with a lot of optimisations coined by dzaima). My memo…
-
comment
Comment #34464958
hi, most of the code in my repository has to work around various C problems (e.g. no generics), so match32 and match64 are the same functions that work on differently sized buffers…
-
comment
Comment #34460259
I'm sharing a tool that I have been working on in hopes that someone finds it useful. The tool serves the purpose of binary patching in game updates and personal incremental backup…
- story
-
comment
Comment #31370380
I haven't figured a libsais fix and my LZP fix changes the functionality a little (removes chunking for better compression at a rather small runtime cost), so I don't think the aut…
-
comment
Comment #31365927
You've literally tested it on a single file, enwik8. That's not enough to extrapolate valuable results. One of the benchmarks: time ./bsc e ../linux.tar linux.bsc -e2 -b16 -T 68.69…
-
comment
Comment #31341015
Consider using `-c`, which makes the compressor use standard streams, or pull the main branch because I had just pushed a tiny patch that automatically enables it when no positiona…
-
comment
Comment #31329824
lies. not specifying -e displays an error message: % bzip3 -e -j 6 -b 50 corpus/calgary.tar % bzip3 -j 6 -b 50 corpus/calgary.tar bzip3 - A better and stronger spiritual successor …
-
comment
Comment #31329327
it's `bzip3 -e -j 6`. you need a space.
-
comment
Comment #31326147
no compressor tests the output while compressing as it hurts the performance. you can do it after compressing, though, using `bzip3 -t`.
-
comment
Comment #31325739
zstd -19 linux.tar 462.58s user 0.76s system 100% cpu 217M memory 7:42.56 total % wc -c linux.tar.zst linux.bz3 134980904 linux.tar.zst 129255792 linux.bz3
-
comment
Comment #31325587
Frankly, same holds for gzip. I've been planning to relicense bzip3 with the more permissive LGPLv3.
-
comment
Comment #31325178
it's fairly common, at least in the circles i usually dwell in, to call compression ratio "compression _strength_". bzip3 is _better_ than bzip2 since it uses a better technologica…
-
comment
Comment #31325172
bzip3 usually operates on bigger block sizes, up to 16 times bigger than bzip2. additionally, bzip3 supports parallel compression/decompression out of the box. for fairness, the be…
- story
-
comment
Comment #28072114
... maybe :). A while ago I published a writeup on programming in the Seed language ( https://esolangs.org/wiki/Seed ) and made the best Mersenne Twister cracking program to date (…
-
comment
Comment #28071146
yes!
-
comment
Comment #28065573
I think that you never touched Malbolge yourself. > anything can be trivially transpiled to any turing-complete language regardless of the "difficulty" of the language once basic o…
-
comment
Comment #28062919
You're free to run this with alternative Malbolge Unshackled interpreters to verify it (although you'd probably be better off using an optimised one, that fixes to some rotation wi…