Felix Roos
Felix Roos
# Bug report ## Description / Observed Behavior > What kind of issues did you encounter with SWR? When [calling mutate with a function as 2nd argument](https://swr.vercel.app/docs/mutation#returned-data-from-mutate) and an error...
Copied from https://github.com/tonaljs/tonal/pull/224#issuecomment-727252979 To allow adding other strategies to find voicings later (without needing to change Voicing.get / add a separate method). Before: ```ts function get( chord: string, range: string[]...
Let's use this issue to discuss the naming of the methods for https://github.com/tonaljs/tonal/pull/224 [Voicing](https://github.com/tonaljs/tonal/tree/master/packages/voicing#api) - search: find all possible voicings for a chord - get: get best voicing for a...
Copied from https://github.com/tonaljs/tonal/pull/224#issuecomment-727252979 This should be done before publish to avoid a breaking change (if we decide to do it) Before: ```ts export const lefthand: VoicingDictionary = { m7: ["3m...
This allows using existing "primitive value style" patterns with superdirt. Example: ```js " hh".fast(2).superdirt() ``` or ```js "c3 e3 g3".s('superpiano').superdirt() ``` `.superdirt` will parse any primitive values to object format...
- refactored all the tests to vitest syntax - tune test not yet refactored - blocked by https://github.com/vitest-dev/vitest/issues/1807
There are many functions from tidal that have not landed yet. ## Basics - [x] drawLine https://github.com/tidalcycles/strudel/pull/90 - [x] setcps https://github.com/tidalcycles/strudel/issues/51 - [x] silence - [x] hush ## Needs longer...
It could be more practical to move to babel. Reasons: - non hacky support for top level await and ES2020 - rich plugin system as briefly discussed in https://github.com/tidalcycles/strudel/pull/171 :...
Compared to mainline tidal, the following features are missing from the mini notation: - [x] Tie symbols "_" https://github.com/tidalcycles/strudel/pull/926 - [x] feet marking "." https://github.com/tidalcycles/strudel/pull/926 - [x] standalone "!" https://github.com/tidalcycles/strudel/pull/926...
It would be great if the mini notation somehow supported ties like this: ```js "[c3 e3] t" ``` "t" is just a placeholder here for a symbol that we haven't...