Live data from Hacker News

Viewing profile — janAkali

janAkali

HN member
Joined
Wed, Feb 02, 2022, 2:23 PM UTC
HN karma
47
Public activity
15 items

About janAkali

No profile information was provided.

Recent public activity

  1. comment
    Comment #37658413

    > Why do you think it's impossible to regulate? There are three reasons: - once it's widespread - it's a standard (targeted ads, cookie tracking, SEO) - we'd need a lot of infrastr…

  2. comment
    Comment #37657452

    > Actually I don't think that's true, consider manufacturing robots. We're long way from making fully AI-driven robots. But much closer to other uses. Our current world is very dat…

  3. comment
    Comment #37657169

    > Is any of this currently being done, however? Companies aren't obligated to disclose the training process. So, we can't tell. Until, in the matter of months, it is available, acc…

  4. comment
    Comment #37400848

    Not sure what you mean by modal keyboard, but there is fully customizable row of keys in termux. I disabled it, because I use special android keyboard app[0] with a custom layout m…

  5. comment
    Comment #37116951

    Another challenge, is that toki pona requires a lot of context, not only of previous sentences, but visual and communal. For example, I can say 'soweli lili' and point to a cat, th…

  6. comment
  7. comment
    Comment #36957530

    Nim's default json library is terrible in performance, but there're much faster drop-in replacements like jsony[1]. I'm not sure that's the main issue for low rank, but it's defini…

  8. comment
    Comment #36957253

    Your programs could benefit from small dependency-free executables and compile time code generation and execution. Nim code can also be called directly from python or vice versa, c…

  9. comment
    Comment #36957041

    1. Nim uses 'var' modifier to pass by reference, e.g. "proc (n: var int)...", default behaviour is pass by value. And there're also raw pointers and references (safe pointers). >is…

  10. comment
    Comment #36846665

    for i in $(objdump -p /path/to/bin | grep NEEDED | awk '{print $2}'); do ldconfig -p | awk -v var="$i" '$1==var{print $0}'; done edit: even simpler, for i in $(objdump -p /path/to/…

  11. comment
    Comment #36810441

    Now I'm wondering: if there were two monkeys hitting random keys on a keyboard for an infinite amount of time, one in the gpt-4 prompt and another straight typing 0s and 1s who wou…

  12. comment
    Comment #36723190

    > To view this this content, you'll need to update your privacy settings. What a joke is this site? Ever heard of screenshots? Why does text-based content have to be embedded anywa…

  13. comment
    Comment #36530647

    Or, more likely, wait until adblock developers figure out how to circumvent adblock detection. In the mean time you could probably switch your VPN country to Russia, as there's lit…

  14. comment
    Comment #36521802

    I believe, Nim also has this functionality, although, it uses the [0]Z3Prover tool with a nim frontend [1]DrNim for proving. [0] https://github.com/Z3Prover/z3 [1] https://nim-lang…

  15. comment
    Comment #36355265

    [0]European Commission defines personal data as: >Personal data is any information that relates to an identified or identifiable living individual. Different pieces of information,…