Live data from Hacker News

Viewing profile — lor_louis

lor_louis

HN member
Joined
Mon, Jul 19, 2021, 5:09 PM UTC
HN karma
77
Public activity
34 items

About lor_louis

No profile information was provided.

Recent public activity

  1. comment
    Comment #48722161

    Do no give me hope like that.

  2. comment
    Comment #48278211

    A couple of months back my boss asked me why I didn't use AI all that much. I told him that I didn't think it made me more productive in the tasks at was doing at the time (having …

  3. comment
    Comment #46851525

    I've implemented a similar system based on the original 2020 paper, but we applied it to the text log to try to "extract" similar features from free-form text. It looked promising …

  4. comment
    Comment #45703750

    Handling text is a minefield. UTF-8 is great but when you get into graphemes, there's basically no way to handle them properly unless you write some code to generate graphene recog…

  5. comment
    Comment #44695196

    I do something similar, but I don't implement the logic in a macro, instead I have a Vec struct which looks like struct Vec { void *data; size_t len; size_t cap; size_t sizeof_ty; …

  6. comment
    Comment #44400956

    I write a lot of C and Rust, and my personal experience is that for smaller C programs, Rust tends to have a slightly higher line count, but it's mostly due to forcing the user to …

  7. comment
    Comment #44400889

    Even in Linux, I'd say the tooling is a bit rough, dune and the new lsp are going in the right direction though.

  8. comment
    Comment #44042501

    Oh by "more complex" operations I referred to multiple cursors and multi line regex searches. I've noticed some performance problems in my own editor but it's mostly because "lines…

  9. comment
    Comment #44037270

    Kilo is a fun weekend project, but I learned the hard way that it's not a good base uppon which you should build your own text editor. The core data structure (array of lines) just…

  10. comment
    Comment #43507487

    As someone who stopped using windows about 7 years ago, and only recently used it last weekend, my eyes probably glossed over the fact that some buttons were laid out horizontally.…

  11. comment
    Comment #43499870

    To be fair, win11 is a nightmare in terms of usability. I can only assume a committee of eldritch beings and accountants designed it. It blows my mind that when right-clicking on a…

  12. comment
    Comment #43383351

    That's the exact same circumstances that lead to the development of guerilla warfare. I don't know how you'd go around creating a "highly visible gimmick" that has any lasting impa…

  13. comment
    Comment #42525011

    As the author of the repo I was surprised how close to my mental model the graph was. (I haven't worked on this repo in a while so my mental model is a bit fuzzy) And yeah it seems…

  14. comment
    Comment #42523786

    I tried it on a personal repo and it never ended up generating a diagram. Might be a bug, so here's the repo. https://github.com/lorlouis/cedit

  15. comment
    Comment #42228410

    To be fair, I'd rather type BEGIN instead of <<? Or whatever the trigraph is supposed to be. We tend to forget that a lot of computers didn't have the keys to type "mathematical" s…

  16. comment
    Comment #41749904

    Luck and money.

  17. comment
    Comment #41536898

    I've worked on a database that considered FSST as a way to query over compressed log lines. We found that the compression ratio was highly dependent on how repetitive the data was.…

  18. comment
    Comment #41385042

    Cargo check won't report linker errors, that the only difference I ever ran into.

  19. comment
    Comment #41349752

    A bump allocator can be implemented using atomics, but it does not support freeing individuals elements. I have seen some CAS heaps (linked list like) but I never had to implement …

  20. comment
    Comment #41177331

    I did not know about Eytzing-sorting, I'll look into it after my vacation, thanks! And yeah our current system is column oriented, and I already tried most of your recommendations …

  21. comment
    Comment #41176511

    Yeah I tend to work with strings data around the 15 to 30 ish char count so I'm also sceptical of german strings when it comes to raw memory usage. What really interests me, is tha…

  22. comment
    Comment #41174777

    It looks a lot like cedarDB's "german strings". https://cedardb.com/blog/german_strings/ > You could probably write a C++ implementation based on the article. Note that it's not al…

  23. comment
    Comment #39507726

    Used to work with telecom equipment in situations where high availability was required and equipment failure was expected.

  24. comment
    Comment #39475572

    Redundancy was needed because individual nodes/machines were more prone to failure. As machines got more and more reliable, having highly redundant infrastructure was seen as an ex…

  25. comment
    Comment #38777730

    I personally believe that Swift's strings where graphemes are the smallest indexable unit are the gold standard for writing logic that might truncate multilingual text. It's still …