Alex
Alex
@unixfox, you asked me to post the instance ages here.. Source code for calculation: https://github.com/ndsvw/SearXNG-Instances-Age The accuracy is better than what I posted before, because the step is 0.25 years...
It seems that it's not so easy to solve this. **The question:** **Should this "problem" be solved or should there just be a recommendation like:** > Try to use even...
> Out of interest, @ndsvw how did you find them? Was it some automated process? Sorry for the late response... Yes, it is an automated process, but nothing that I...
Span / ReadonlySpan are ref structs, but FRP requires storing stuff on the heap.. So, using the benefits of Span would not be possible this way.
Hey, I limited the weights to int in the beginning, because Fluent Random Picker uses algorithms that sum up all the weights internally. If the int weights are Int32.MaxValue and...
Notes for me: - `SortingBasedWeightedLeftShuffle` would break with longs because all results are 1 at some point. ```c# Math.Pow(0.9999, 1/(double)int.MaxValue) // = 0.99999999999995348165526820594095624983310699462891 Math.Pow(0.9999, 1/(double)long.MaxValue) // = 1.00000000000000000000000000000000000000000000000000 Math.Pow(0.9999, 1/((double)long.MaxValue/10))...
Yes, thanks. That worked. Can start it again. 👍 It's solved for me.
I'm not sure. I have never created such a "GitHub-Page". It looks like putting the file into master is redundant/unnecessary, but I don't know what the common behavior is..
I like the idea. In a minimal implementation, the widget could allow to evaluate basic math with variables that represent "global" values... E.g. there is a field that allows entering...
comment