Viewing profile — raluk
raluk
HN member- Joined
- Mon, Oct 24, 2022, 9:42 PM UTC
- HN karma
- 31
- Public activity
- 38 items
- HN profile
- View on Hacker News ↗
About raluk
No profile information was provided.
Recent public activity
-
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…
-
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?
-
comment
Comment #48748782
In similar fashon in year 2009 Amazon deleted books from Kindle. One of them was 1984 from George Orwell.
-
comment
Comment #48686112
This algebra is also called bicyclic semigroup https://en.wikipedia.org/wiki/Bicyclic_semigroup
-
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.
-
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…
-
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…
-
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…
-
comment
Comment #46589451
Using only cold water for showers.
-
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…
-
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…
-
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…
- story
-
comment
Comment #45472297
How much is fft used for AI? Seems that attention and convolution could benefit from this.
-
comment
Comment #44994436
Having lexicial scope it is same as -> defer fn{if(some condition) x() }() within scope.
-
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…
-
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 +…
-
comment
Comment #44612756
In there is also ApplicativeDo that works nicely with this. do x this is evaluated as applicative in same way.
-
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.
-
comment
Comment #44470399
Great exercise driven course is: https://github.com/system-f/lets-lens
-
comment
Comment #44466874
https://blog.jle.im/entry/lenses-products-prisms-sums.html
-
comment
Comment #44394008
Our team is working with soniox.com They are the most acurate model that works real time.
-
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…
-
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 ) ->…
-
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.