Alex
Alex
I can install goto without having any problems via brew but it won't start. `brew install goto` > /usr/local/Cellar/goto/1.2.3: 6 files, 18.9KB, built in 4 seconds If I try starting...
**What's possible in this case:** - Out.Of().Values(...).AndValues(...).AndValues(...)... - Out.Of().Values(...).WithWeigts(...).AndValues(...).WithWeigts(...)... **What's not possible in this case:** - Out.Of().Values(...).WithWeigts(...).AndValues(...).Pick(...); - Out.Of().Values(...).AndValues(...).WithWeigts(...).Pick(...); **What about percentages?** Do all of them sum of to 100...
There are [multiple enumerations](https://www.jetbrains.com/help/resharper/PossibleMultipleEnumeration.html) of IEnumerables in the code. Count() is probably also calculated more often than necessary. FluentRandomPicker should work with Collections/Lists **internally**. The IEnumerable that the user passes...
Question: **How to pick values with different priorities prioritized?** The current implementation works with stochastic acceptance and runs in linear time on average (see [StochasticAcceptanceBasedWeightedLeftShuffle.cs)](https://github.com/ndsvw/Fluent-Random-Picker/blob/main/FluentRandomPicker/Shuffle/StochasticAcceptanceBasedWeightedLeftShuffle.cs) Problem: The max probability value...
Descriptions for classes/methods/... are intended to give the user of the library additional/useful information.
- How much effort is it? - is it worth it? - does the project name "Fluent-Random-Picker" still make sense? - Can extension methods for all this be built without...
I was trying to let my TwitterStream application run a longer time (overnight, so my Desktop PC switched into some kind of mode where the network connections are cut) while...
Hi, Nice project!! It's a lot easier to use than manually running youtube-dl for every video and remembering what CLI arguments to pass. There is just 1 problem: I have...
The base image of the Dockerfile (pandoc/alpine-latex) is deprecated and should be replaced with "pandoc/latex" (as suggested [here](https://hub.docker.com/r/pandoc/alpine-latex)) I tried it out, but it seems that further changes are required:...