Ernest Micklei
Ernest Micklei
Progression with individual durations ``` p = progression('C3',' 2I++ 4VI+ 8.II 16.V-- ') ``` ``` p.S() sequence('(2C3++ 2E3++ 2G3++) (A3+ C+ E+) (8.D3 8.F3 8.A3) (16.G3-- 16.B3-- 16.D--)') bars:1.03125 duration:2.0625s...
raw MIDI message can be send using a `midi_send`: `midi_send(${1:device-id},${1:status},${2:channel},${3:2nd-byte},${4:3rd-byte}` ``` midi_send(1,0xC0,2,1,0) // device 1, program change, select program 1 for channel 2 midi_send(2,0xB0,4,0,16) // device 2, control change, bank...
A workaround for the installation is ``` go install -v github.com/emicklei/melrose/cmd/melrose...@latest ```
In the context of Flutter Web, I found a solution to pass Browser cookies along GraphQL requests without retrieving them first. It uses the Browser client ``` import 'package:http/browser_client.dart'; ```...
hi @eastebry , thank you for notifying me about this ongoing discussion. I need to spent some time on reading the status and reasons for not upgrading (btw the breaking...
i am closing this as the issue addresses a very uncommon case. Handling this would complicate the package even more.
> @emicklei > > I ran into this as well, and I am sad to see this resolution. This parser should handle proto files as intended, not disregarding edge cases...
see https://github.com/emicklei/proto/pull/142 that parses this: ``` message Example { /* i'm */ optional /* a comment */ bool /* too */ field /* hard */ = /* to */ 1...
closing it now, 3 out of 4 has been resolved. feel free to create a new if a feature is wanted
working on a test to reproduce this https://github.com/emicklei/go-restful-openapi/tree/issue77