jwaldmann

Results 143 issues of jwaldmann

We currently have "mixed" (default) and "grouped" views. The thing would be much more usable (for me) if I could * add some more mailing lists (libraries, ghc-devs) * remove...

The mailman viewer (for haskell-cafe) shows each post. If there is an active discussion thread, it will show several posts with the same (the thread's) subject. Perhaps it should only...

In the generated feed, messages from Haskell Cafe are tagged "HaskellCafeNative". I used this annotation while working on the patch, and I was not aware that it shows up in...

It took me some time to find out that I can select benchmarks on the command line (`my-benchmark-exe -m pattern foobar`) I suggest to show some typical ways of calling...

Gauge.Benchmark.whnf doc says "Apply an argument to a function, and evaluate the result to weak head normal form (WHNF)." What it does *not* say is whether the time needed for...

this is confusing our parser (see https://github.com/yav/simple-smt/issues/20) ``` $ echo "(set-logic QF_LRA)(check-sat)(get-value (0.0))" | yices-smt2 --smt2-model-format sat ((0.0 0)) ``` other solvers output the decimal point: ``` $ echo "(set-logic...

(will make a PR, just writing down the observation and idea now) current implemenation is inefficient in several ways (basically, every usage of the list type for storing data for...

``` ghci> import Sound.Tidal.UI ghci> timeToRands 0 10 [0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0] ``` this function is used in `randrun`, which is used in `shuffle`, so we get (for query arc starting at 0)...

This is fine (selected part of sample gets cut in half): ``` ghci> chop 2 $ s "led" # begin 0.03 # end 0.86 (0>½)|begin: 3.0e-2f, end: 0.44499999999999995f, s: "led"...

Needs work
Good first issue

API doc for euclidOffBool claims "As euclidOff, but specialized to Bool - which is wrong: ``` euclidOff 3 8 0 (pure True) -- three events (values are True) euclidOffBool 3...