chuck icon indicating copy to clipboard operation
chuck copied to clipboard

ChucK Music Programming Language

Results 149 chuck issues
Sort by recently updated
recently updated
newest added

``` chuck ConsoleInput stdin; stdin.prompt("prompt> "); ``` Anything typed in has an extra space after the space of the prompt string. This is highly unexpected as it's different from anything...

Hello, I'm trying to loop code like this: SndBuf buf => dac; "test.wav" => buf.read; ms => now; Machine.add(me.dir()+"myself.ck"); //launch the same code again (OS X) VM crashes after sporking...

So far, I've been able to package and distribute the current release (i.e. not master). The package for Ubuntu Trusty (14.04 LTS) is available on [my packagecloud repository](https://packagecloud.io/hughrawlinson/chuck). My plan...

During my creative process I like to listen to many diffrent sounds others made. It would be nice to have an open and easy way to share user creations so...

Hi Spencer, :sunglasses: I may not know what I'm doing, but I think (1) the Delay ugens implemented from STK have a `.clear()` method, and (2) that's not pulled through...

``` chuck "\"\"" => string x; >; >; // expected it to print "\"\"", got "\""" instead "\"f\"" => string y; >; >; // this on the other hand prints...

``` chuck >; ``` Expected output: `"...\nbar"` Actual output: `"..."` To rectify this, one needs to rewrite the pattern as `"[^\n]*"`.

bug

In ChucK, all the timing is relative to the time the process started. This makes it hard to track down latency problems when communicating with other programs, as is motivated...

Sorry for the title. I'm currently writing a type system in ChucK and have defined a supertype with types extending it. It appears as if I cannot just cast an...

`chuck examples/event/kb.ck` runs as expected and prints the events. `chuck --silent examples/event/kb.ck` does the same, but at full CPU usage. This is somewhat annoying as I'm using the `--silent` to...

bug