jwaldmann

Results 195 comments of jwaldmann

I have a working version at 9c24ab247c025a988f250351e696f7c4529221c5 . This lets me view `http://localhost:10010/grouped/HaskellCafe+Reddit` etc. Note: let's call `[HaskellCafe,Reddit]` a *view*. Each view will create a cache entry. This could be...

I see. I want `--notify-all` (not as default, but as an option) for the case where I run just one repl, and all participants listen to its audio stream. Then...

"telling it to use it" ... Sounds good. Too bad about C-n, C-w though (I tried the demo in the link). PS: didn't know about `C-.`

I am trying this: https://gitlab.imn.htwk-leipzig.de/waldmann/computer-mu/-/blob/master/tidal/code/STREAM.md It works, but needs too much manual intervention: compile and install the nginx module (once), start ffmpeg, connect to Supercollider (each time)

travis-CI tells me that StrictData is not available in ghc before 8. If keeping compatibility with ghc-7 is important (for some folks it is, see this thread https://mail.haskell.org/pipermail/libraries/2020-May/030475.html ) then...

I did now. `timeCat` speeds up argument patterns individually, which I don't want. (I find it impossible to undo this later.) `ur` is hard to discover (the name tells nothing,...

Re: "like seqPLoop, but it doesn't play the patterns from cycle 0 each time?" - Yes. Re: your implementation: that's much better, using `compress` instead of manipulating queries explicitly. `compress(Arc)`...

Examples for "ur-" in art and music: https://en.wikipedia.org/wiki/Kurt_Schwitters#Ursonate and Ursatz (deep structure) in https://en.wikipedia.org/wiki/Schenkerian_analysis (also "Urlinie", fundamental line) So, future haddock for `ur` should start with `In Schenkerian analysis, ...`...

> keep Schenker out .. On the other hand, I am reading references given in https://en.wikipedia.org/wiki/Peter_Westergaard%27s_tonal_theory and it'd definitely be interesting to compare these operators (segmentation, anticipation, ...) with Tidal's....

VF has two arguments (recently?) ``` data Value = VS {svalue :: String, vbus :: Maybe Int} | VF {fvalue :: Double, vbus :: Maybe Int} ... ``` introduced: https://github.com/tidalcycles/Tidal/commit/bb79e9eba8d0d4efe732ace12b375fdb54886f8c#diff-e9ef85b1fa65610b76d8d846ba7e48b2...