Live data from Hacker News

Viewing profile — atiedebee

atiedebee

HN member
Joined
Mon, May 20, 2024, 9:51 AM UTC
HN karma
180
Public activity
134 items

About atiedebee

No profile information was provided.

Recent public activity

  1. comment
    Comment #49249944

    > Doubling the input roughly doubles the time, the signature of an n log n algorithm. Excuse me? This entire paragraph reads like the author has made the assumptions about the time…

  2. comment
    Comment #49235629

    I personally didn't notice any strong LLM tells in the writing. In fact, I enjoyed the writing style quite a bit. Especially the following sentence near the beginning of the articl…

  3. comment
    Comment #49152505

    Ive actually toyed with the idea of having @ as a pointer dereference. It seems to make sense: you want to know what is at the address stored in p.

  4. comment
    Comment #49107112

    I thought C++ was designed to fit all sorts of applications. There is many GUI libraries for C++ for example, and the language has all the capabilities to add abstractions for maki…

  5. comment
    Comment #48931100

    > The concise help text should only include: > - A description of what your program does. > - One or two example invocations. > - Descriptions of flags, unless there are lots of th…

  6. comment
    Comment #48916594

    What is the `tlul` part? Just a typo? I don't see it in your expansions.

  7. comment
    Comment #48784323

    But the goal isn't to catalogue all human knowledge. Having an article for every living person would be "cataloguing all human knowledge" but it would also be a meaningless endeavo…

  8. comment
    Comment #48784265

    Right before the statement in Wikipedia being an ideological playground: > Our best hypothesis is quite simple: some of the mods just don't like Odin as a language and don't want i…

  9. comment
    Comment #48773211

    > But the tech giant says it kept operational carbon emissions down by continuing to purchase massive amounts of clean energy. I never got this line of reasoning. If you are using …

  10. comment
    Comment #48773089

    They have hardware decoders for JPEG? I have never heard of this and it seems overkill considering how simple it is to decode.

  11. comment
    Comment #48722032

    By cheating you gain a certificate that says you can do things which you cannot. The difference between cheating in university and forging a degree is the time it takes. When going…

  12. comment
    Comment #48699062

    Except that brotli uses Huffman coding. It's main claim to fame is using higher order statistics to select a Huffman table and its built-in dictionary. This class of compression pr…

  13. comment
    Comment #48685610

    Which slice? The large text compression benchmark uses enwik8 for a "smaller" input that is easily reproducible. The predictability of enwik9 can vary significantly depending on wh…

  14. comment
    Comment #48641957

    It depends on the format. Brotli switches the Huffman codes used based on the previously decoded bytes, but gzip and bzip2 for example use the same Huffman codes for a bigger block…

  15. comment
    Comment #48306182

    I imagine you would want to test "idiomatic" code for these comparisons. It doesn't make much sense to compile with C++ and write everything in C.

  16. comment
    Comment #48276426

    Another interesting one is the ZPAQ compression program[1]. It is one of the top performers on the large text compression benchmark[2] and uses the bytecode to specify how to model…

  17. comment
    Comment #48127533

    I hope the brakes in my car don't need developers

  18. comment
    Comment #47965853

    Does HN randomly charge you money for using these phrases?

  19. comment
    Comment #47719184

    I made a program with some inline assembly and tried O3 with clang once. Because the assembly was in a loop, the compiler probably didn't have enough information on the actual code…

  20. comment
    Comment #47440098

    > I don't know about survival bias. LLMs are well suited to this task of taking in this cloud of soft data like a description of symptoms and spitting out a potential diagnosis. An…

  21. comment
    Comment #47425310

    A lot of them are better in many areas. JPEG is just good enough (tm)

  22. comment
    Comment #47401022

    I read a while back that bzip2 is named that way because the original bzip used arithmetic coding. The person who made bzip then made bzip2 to use Huffman coding due to patent prob…

  23. comment
    Comment #47400902

    bzip3 is very different from bzip2. It is not even made by the same person and is not nearly as ubiquitous.

  24. comment
    Comment #47385572

    > I know this position is wrong, but it feels hard to spend my time on something that someone else might not have spent the time to create I don't think that position is wrong. I f…

  25. comment
    Comment #47045918

    ISO C99 actually defines multiple types of deviating behaviour. What you're describing is closer to implementation-defined behaviour than anything else. The three behaviours releva…