Viewing profile — olikas
olikas
HN member- Joined
- Thu, Nov 26, 2015, 3:37 PM UTC
- HN karma
- 300
- Public activity
- 28 items
- HN profile
- View on Hacker News ↗
About olikas
Recent public activity
-
comment
Comment #41596266
It checks if any of the deprecated features are used. 4.0 removes classic queue mirroring, changes the underlying metadata storage to khepri and introduces many improvements. Inste…
-
comment
Comment #41593876
Yes, JIT is enabled. Slowness is quite relative to the use case. Which part do you find slow?
- story
- story
-
comment
Comment #28345111
httpc is good for a one off request, but it is not very up-to-date with the latest features of the web. So building application logic on top of it is not ideal.
-
comment
Comment #27830181
This was (is) the case for classic queue mirroring. Quorum queues use a raft implementation and can synchronise the delta. As of now, the two major features missing from quorum que…
- story
-
comment
Comment #25872448
I use instagram and my own webpage. The single biggest problem I have is consistency. For me art is a hobby, so I don't always have the time. So my instagram engagement is all over…
-
comment
Comment #25803733
This happens a lot in mathematics. Definitions that depend on intuition usually have very weird edgecases. When you formalise a definition and explore the definition to a “wider” d…
-
comment
Comment #25670959
I had a similar experience early in my career. To me it was eye opening to see some masters keep investigating problems without getting emotional. I learned how not to care about t…
-
comment
Comment #25657749
If f is linear, then f(a)=f(a+0)=f(a)+f(0). So f(0)=0.
-
comment
Comment #25441147
> Most native speaks have little knowledge of the grammar and syntax beyond intuitive. The fact that they don't know the scientific names of the grammar rules doesn't mean that the…
-
comment
Comment #23917755
I know what you mean, and a number that is not infinitely precise is an interval (i.e. a set of numbers). e is a number that is quite hard to pin on the imaginary number line, beca…
-
comment
Comment #23265025
RabbitMQ runs perfectly fine on Windows too. As others mentioned in the comments, RabbitMQ supports a great variety of use cases. If you want to reach out for help, you can find my…
-
comment
Comment #23260454
I recommend going through presentations of the RabbitMQ Summit. https://www.youtube.com/channel/UCp20sSF_JZv5aqpxICo-ZpQ There are some big companies talking about their experience…
-
comment
Comment #23259818
It is a great book, indeed. I always recommend it.
-
comment
Comment #23259716
With clustering, you can have more nodes and you can shard (distribute) your queues over the cluster. You don't need to mirror every queue on every node. But you are right, mirrori…
-
comment
Comment #23259385
Author here. I've seen quite a lot messages going through RabbitMQ. I wouldn't worry too much about scaling, because the possibilities depend very much on the architecture. With so…
- story
-
comment
Comment #23234841
I was in similar situation. I didn't quit, and spent quite a lot of time figuring out what was the real issue that me miserable. It turned out it was something I could change witho…
-
comment
Comment #23170412
Co-author here. The problem with number crunching or maths is that it is very difficult to cut the whole computation into smaller units and pre-emptively schedule it. If it is poss…
- story
-
comment
Comment #20488703
I have played with this idea recently lately. I consider almost all code out there as legacy. I was talking about it at a conference also explaining how I like working with legacy …
-
comment
Comment #20359749
Regarding debugging, I left a comment higher in this thread: https://news.ycombinator.com/item?id=20359699
-
comment
Comment #20359699
BEAM based languages lack "good" debuggers, because they historically depend on tracing instead of debuggers. I recently wrote a blogpost about the tracing landscape in Elixir. htt…