jwaldmann
jwaldmann
see discussion at https://club.tidalcycles.org/t/randomness-at-the-beginnings-of-time-function-randrun/5060/2 possible alternate implementation ``` rands :: Fractional a => Int -> Pattern [a] rands k = Pattern $ \(State a@(Arc s e) _) -> [Event (Context...
The problem (`stripe` cannot be used with control values from MIDI input) and a possible solution, is discussed at https://club.tidalcycles.org/t/issue-re-midi-cc-stripe-function/4595
I wanted to build from source. I did ``` git clone --recurse-submodules https://github.com/ucsd-progsys/liquidhaskell cd liquidhaskell/ cabal install ``` and I get ``` Wrote tarball sdist to ... Error: cabal: Driver_stack.hsDriver_cabal.hs...
possible duplicate of #13 #69 but since it's a different error message, I'm writing a separate issue. When I run ``` dacBy (setTrace setJackv "cse") $ do (g,f) &1|grep FLp...
**Describe the bug** `cabal test` used to redirect stdout to the log file, but no longer does this? **To Reproduce** ``` $ cabal unpack ersatz-0.5 $ cd ersatz-0.5 $ cabal...
**Describe the bug** cabal file containing ``` executable foo-bar if flag(wat) main-is: bar-foo.hs else main-is: foo-bar.hs ``` is rejected with ``` Ambiguous values for modulePath field: '"bar-foo.hs"' and '"foo-bar.hs"' CallStack...
I expect identical output for the three benchmarks, but the first one (consistently) needs double time. (Possibly related: #60) ``` import Criterion.Main main = defaultMain [ bench "1" $ nf...
I was running a benchmark with `+RTS -Sstderr` (trying to find a good `-A..` value) I was surprised to see heavy garbage collection going on - since I was expecting...
(I am not sure about this but it is a source of confusion in #273 ) We have ``` nf :: NFData b => (a -> b) -> a ->...
Currently we have ``` import Data.Set member 0 $ fromAscList [2,0] -- value is False ``` since https://hackage.haskell.org/package/containers-0.6.0.1/docs/Data-Set.html#v:fromAscList does not check monotonicity. Should it? Could it? (I mean, how much...