Tagged Questions
The chuck tag has no wiki summary.
20
votes
0answers
666 views
Why does HTML think “chucknorris” is a color? [closed]
Possible Duplicate:
Weird CSS Background Colors
How come certain random strings produce various colors when entered as background colors in HTML? For example:
<body ...
5
votes
2answers
337 views
Running an audio synthesis/analysis language on an embedded device
What is the experience running programs written in an audio synthesis/analysis language such as ChucK, Pure Data, Csound, Supercollider, etc. in an embedded device such as an Arduino Mega, Beagle ...
5
votes
4answers
416 views
Synthesis of general programming language (Python) with tailored language (PureData/MaxMSP/ChucK)
I am learning Python because it appeals to me as a mathematician but also has many useful libraries for scientific computing, image processing, web apps, etc etc.
It is frustrating to me that for ...
1
vote
1answer
332 views
Realtime sound synthesis libraries---like ChucK or Supercollider, but implemented in, say, Python, for example?
I'm learning ChucK, which has an absolutely beautiful language specification but a really shitty implementation. Supercollider is out of the option due to lack of support/updates for Windows, and ...
1
vote
1answer
43 views
Reading ints from a file
I've this ChucK code:
"examples/vento.txt" => string filename;
FileIO fio;
// open a file
fio.open(filename, FileIO.READ);
// ensure it's ok
if(!fio.good()) {
cherr <= "can't open file: " ...
0
votes
1answer
53 views
Json chuck facts parsing
Well, i have this link and i want to parse through it and get only the joke. Its in json format. I would like to use c or c++, not python because i already did it with python.
0
votes
0answers
22 views
Are there any STK Unit Generators for Java? (e.g. like ChucK)
I have developed a prototype/proof-of-concept application for a client which process audio from an input source and then uses this to produce dynamically generated sound. Currently we make use of an ...
0
votes
1answer
52 views
Detecting when ChucK child shred has finished
Is it possible to determine when a ChucK child shred has finished executing if you have a reference to the child shred? For example, in this code:
// define function go()
fun void go()
{
// ...
0
votes
2answers
182 views
Max value of int in ChucK
What is the maximum value of an int in ChucK? Is there a symbolic constant for it?