Live data from Hacker News

Viewing profile — raluk

raluk

HN member
Joined
Mon, Oct 24, 2022, 9:42 PM UTC
HN karma
31
Public activity
38 items

About raluk

No profile information was provided.

Recent public activity

  1. comment
    Comment #49084420

    I am running email server for my private domain using https://github.com/docker-mailserver/docker-mailserver . One day in 2023 i decided that beside of dkim i maybe should also ena…

  2. comment
    Comment #48943989

    At first glance looks like stipped C++ with minor differences. For example go have row polimorphism compared to OOP in C++. What else is there that C++ does not have?

  3. comment
    Comment #48748782

    In similar fashon in year 2009 Amazon deleted books from Kindle. One of them was 1984 from George Orwell.

  4. comment
    Comment #48686112

    This algebra is also called bicyclic semigroup https://en.wikipedia.org/wiki/Bicyclic_semigroup

  5. comment
    Comment #48203996

    In C / C++ there are two kinds of undefined behaviour. One is where there is written in standard what UB is. Another one is everthing else that is not in standard.

  6. comment
    Comment #47700015

    Spending few weeks trying to understand Kalman filterm, I figured out that I need to understand all if the following: 1. Model of system 2. Internal state 3. How is optimal estimat…

  7. comment
    Comment #46595931

    It improves immune system and geneal wellbeing. It is pain that you can get used to and I kind of enyoj it now in some weird way. It is hard, requires some dedication and brings so…

  8. comment
    Comment #46590064

    Over the hollidays I was working on Steve Balmers interview puzzle. https://rahne.si/optimisation/2026/01/07/steve-ballmer-inter... What I am most proud of is that I got the soluti…

  9. comment
    Comment #46589451

    Using only cold water for showers.

  10. comment
    Comment #46453306

    What are protental issues with compiler, by just disabling borrow checker? If I recall correctly some compiler optimisations for rust can not be done in C/C++ because of restrictio…

  11. comment
    Comment #46329145

    "Math nerd explains how to spend 3 days proving 1+1=2" -> Original "From Zero to QED: An informal introduction to formality with Lean 4" https://news.ycombinator.com/item?id=462593…

  12. comment
    Comment #46152292

    Years ago I wrote c++ library for stream compostion. Something like C++20 ranges. It turns out that as long as you compose everything with lambdas, compiled code is same as it woul…

  13. story
  14. comment
    Comment #45472297

    How much is fft used for AI? Seems that attention and convolution could benefit from this.

  15. comment
    Comment #44994436

    Having lexicial scope it is same as -> defer fn{if(some condition) x() }() within scope.

  16. comment
    Comment #44989575

    Given that you die, when one vital organ dies it will eventaully hapen in this way or another. I read somwhere and that stuck in my brain, that maxmimal logevity for humans is esti…

  17. comment
    Comment #44612839

    This is what i hand in mind whit "manually handing of futures". In this case you have to write Promise1 = f1(); Promise2 = f2(); v1,v2 = await Join(Promise1, Promise2); return v1 +…

  18. comment
    Comment #44612756

    In there is also ApplicativeDo that works nicely with this. do x this is evaluated as applicative in same way.

  19. comment
    Comment #44609651

    One thing that most languages are lacking is expressing lazy return values. -> await f1() + await f2() and to express this concurently requres manually handing of futures.

  20. comment
    Comment #44470399

    Great exercise driven course is: https://github.com/system-f/lets-lens

  21. comment
    Comment #44466874

    https://blog.jle.im/entry/lenses-products-prisms-sums.html

  22. comment
    Comment #44394008

    Our team is working with soniox.com They are the most acurate model that works real time.

  23. comment
    Comment #44014087

    One problem with fast writing is that it requres more energy to transmit from reader to a card in order for a card that has no internal source of power, to toggle bits. It is harde…

  24. comment
    Comment #43964485

    How one writes circular circuit, for example stream of fibonnachi numbers or IIR filter? For IIR filter it would be nice if it has protoype like iir(sig : T, a : vec , b : vec ) ->…

  25. comment
    Comment #43834044

    For low level benchmarking papi https://icl.utk.edu/papi/ is great tool. It provides access for counters like cache misses, branch misses and number of cycles.