<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta content="text/html; charset=utf-8">
</head>
<body dir="auto">
<div id="compose-container" itemscope="" itemtype="https://schema.org/EmailMessage" style="direction:ltr">
<span itemprop="creator" itemscope="" itemtype="https://schema.org/Organization"><span itemprop="name"></span></span>
<div>
<div>
<div style="direction:ltr">Great stuff! Am using a mac myself though no braille display even though i can read it i just have the built in voice over</div>
</div>
<div><br>
</div>
<div class="acompli_signature"></div>
</div>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>From:</b> chuck-users-bounces@lists.cs.princeton.edu &lt;chuck-users-bounces@lists.cs.princeton.edu&gt; on behalf of Sheri W-J &lt;Sheri@wells-jensen.net&gt;<br>
<b>Sent:</b> Tuesday, January 16, 2018 10:55:47 AM<br>
<b>To:</b> rich<br>
<b>Cc:</b> ChucK Users Mailing List<br>
<b>Subject:</b> Re: [chuck-users] [chuck-users new user: silly questions</font>
<div>&nbsp;</div>
</div>
<div>
<div></div>
<div>
<div>Thanks, Everyone for the tips:&nbsp;</div>
<div>Rich, yes, I use a screen reader with a braille display on my Mac. I've opened Miniaudicle and poked at the menus some, but I am still dithering between opening the Mac terminal and doing &nbsp;things from the command line vs. using the Miniaudicle. &nbsp;It's always
 this first getting started bit that throws me: it took me a week to get Perl installed on my mac, but once it was there and I knew where things were, learning the language went pretty fast. &nbsp;What I do with Perl &nbsp;is write my code using a text editor, save the
 text file with the right extension and then open the Mac's terminal window and &nbsp; &nbsp;either use the command line to call the program or (because most of what I code is little practice CGI'S for my students) upload them to my server and use the Perl compiler there.
 &nbsp; I hope that makes sense. Is that analogous to what &nbsp;you do? ... And I think what you said means that &nbsp; having installed miniaudicle, I should also now have a chuck directory somewhere that I can get to via the terminal window on my Mac? Is that right? &nbsp;</div>
<div>&nbsp;</div>
<div>Thanks,&nbsp;</div>
<div>Sheri&nbsp;</div>
</div>
<div><br>
</div>
<div><br>
On Jan 16, 2018, at 12:22 PM, rich &lt;<a href="mailto:rjc@mit.edu">rjc@mit.edu</a>&gt; wrote:<br>
<br>
</div>
<blockquote type="cite">
<div>
<p>Hi Sheri.</p>
<p><br>
</p>
<p>On windows, chuck gets installed into &quot;c:\Program Files (x86)\ChucK&quot;.</p>
<p>On linux, I do not know where to find it, but most likely /user/bin or /usr/local/bin, but not being much of a linux user, really not sure.</p>
<p><br>
</p>
<p>I noticed in your previous message you said you were visually impaired. Are you using a screen reader? If so, Mini Audicle may not be accessible; it is not on windows at all.&nbsp; If your using magnification, you've probably got a good chance of making use of
 it.</p>
<p><br>
</p>
<p>I also happen to be blind and use a screen reader on windows. I've done chuck hacking with just the command line and a text editor; it works pretty well. However, if you want to pass parameters to your program you need to do everything either on the command
 line, or hard code parameters into your source. For experimentation it's fine, but for something which needs to be used by others, it may become quite hard to manage as things get complicated.&nbsp; The mini audical apparently allows you to create UI widgets that
 can send parameters to a running chuck program, which means you can vary things on the fly, which you cannot do just running from the command line.</p>
<p><br>
</p>
<p>All that said, it's a great language and you can learn a lot about signal processing playing with chuck.
<br>
</p>
<p><br>
</p>
<p>Complements to the chuck team for their continuous work on the language over the years. It's probably the most accessible audio processing language out there, mostly because it is just the language; it does not require a complex GUI environment in which
 to run.</p>
<p><br>
</p>
<p>Hope this is helpful.</p>
<p><br>
</p>
<p>-- Rich</p>
<p><br>
</p>
<br>
<div class="moz-cite-prefix">On 1/15/2018 2:39 PM, Sheri W-J wrote:<br>
</div>
<blockquote type="cite">
<div>
<div>I promise to have real thinking questions later but for now:&nbsp;</div>
<div>The program I installed (which seemed like my only choice) was miniaudicle. The online documentation is prompting me to run chuck &nbsp;from the command line... I know about the terminal and I run perl from the command line so that would be OK ... except these
 two things do not match up, and I see nothing actually called chuck on my hard drive. What did I miss?&nbsp;</div>
<div>Thanks so much,&nbsp;</div>
<div>Sheri&nbsp;</div>
</div>
<div><br>
</div>
<div><br>
On Jan 15, 2018, at 6:47 AM, Casper Schipper &lt;<a href="mailto:casper.schipper@gmail.com">casper.schipper@gmail.com</a>&gt; wrote:<br>
<br>
</div>
<blockquote type="cite">
<div>
<div dir="ltr">
<div>Dear Sheri,</div>
<div><br>
</div>
I think the basic documentation &quot;ChucK_manual.pdf&quot; that one gets when you download chuck is actually rather good, for me, the clarity of that manual is what actually got me hooked many years ago.
<div><br>
</div>
<div>My 2 cents regarding the future of ChucK: I still run it every day. For playing around with experimental DSP that includes compositional ideas, I think it is still really cool (I've tried Faust, but find it a bit to focused on DSP). I also know ChucK was
 used at Sonology institute in The Hague for teaching (some of the) DSP classes.&nbsp;</div>
<div><br>
</div>
<div>I have to say that I am running into its limitations (especially that code can get very verbose, because of its similarity to Java). I noticed some of my live-coded programs got unreadable/uneditable because of it. I especially miss functional programming
 syntax, which is why I now use a translation script written in Python:&nbsp;<a href="https://github.com/casperschipper/cisp">https://github.com/casperschipper/cisp</a>, which takes a scheme like syntax and translates it into chuck. Since the syntax of that is very
 different from chuck, I could imagine it someday 'compiles' to another (more efficient) language, but for now, ChucK is ok.</div>
<div><br>
</div>
<div>Regarding performance, I sometimes schedule supercollider events through OSC with chuck, this gives me the nice strong-timing syntax of chuck and the efficiency of supercollider server, but I guess for beginners this is a bit messy construction.</div>
<div><br>
</div>
<div>Best,</div>
<div>Casper</div>
<div><br>
</div>
<div><br>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">On Mon, Jan 15, 2018 at 10:42 AM, Sheri W-J <span dir="ltr">
&lt;<a href="mailto:Sheri@wells-jensen.net" target="_blank">Sheri@wells-jensen.net</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0
                  .8ex; border-left:1px #ccc solid; padding-left:1ex">
<div dir="auto">
<div>
<div>Hello, Folks,&nbsp;</div>
<div>Can someone tell me where to find the YouAreReasonablySmartButHaving<wbr>TroubleGettingStarted documentation? I'm having trouble getting past the initial steps: I've done some Perl programming but I could use maybe ... I guess if I knew exactly what I
 needed, then I wouldn't need it!&nbsp;</div>
<div>Is the book I see advertised on the Check homepage my answer? If it is, is that book available electronically anywhere? I'm blind, so purchasing a hard copy would mean running it through OCR which would introduce pesky errors.&nbsp;</div>
<div>Thanks for any tips.&nbsp;</div>
<div>Best,&nbsp;</div>
<div>Sheri&nbsp;</div>
</div>
<div><br>
</div>
<div><br>
</div>
<div><br>
On Jan 14, 2018, at 1:12 PM, Stuart Roland &lt;<a href="mailto:stuartroland@gmail.com" target="_blank">stuartroland@gmail.com</a>&gt; wrote:<br>
<br>
</div>
<blockquote type="cite">
<div>
<div dir="auto">
<div dir="auto" style="">I can't speak to the future of ChucK itself, but recently I have been giving a lot of thought&nbsp;to MY future with Chuck. First off, I love ChucK and all the cool stuff it let's me create. I find it much more intuitive than any other audio
 programming language/environment I have used and I can usually create something along the lines of what I set out to create with it. My problem with it is that I really want to be able to create stand alone apps and plugins with it, which I have not found
 any way of doing. I would like for my software to be usable by the average musician, not just by programmer-musicians who can read ChucK code (though we are a cool bunch). I know ChucK Racks were just released (for Macs,which I don't use) but as I understand,
 this just let's you run ChucK scripts as a plugin, and does not provide a way to wrap up the code in any UI to distribute to musicians who are used to sliders, knobs, presets etc.</div>
<div dir="auto" style=""><br>
</div>
<div dir="auto" style="">So I guess I have a few questions for everyone/anyone here: is there a way to use ChucK in a mobile or desktop app? Is there a way to connect ChucK to a GUI that is simple enough that non-programmers could use it? If not, is there another
 language / libraries for another language like python, for example, that has some of the great, intuitive design as ChucK? Is ChucK more of an educational tool at this point and&nbsp;less of a tool for developers?</div>
<div dir="auto" style=""><br>
</div>
<div dir="auto" style="">Thanks for taking the time to read. Happy audio/music making!</div>
<div dir="auto" style=""><br>
</div>
<div dir="auto" style="">Stuart</div>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">On Jan 14, 2018 11:00 AM, &lt;<a href="mailto:chuck-users-request@lists.cs.princeton.edu" target="_blank">chuck-users-request@lists.cs.<wbr>princeton.edu</a>&gt; wrote:<br type="attribution">
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex; border-left:1px
                              #ccc solid; padding-left:1ex">
Send chuck-users mailing list submissions to<br>
&nbsp; &nbsp; &nbsp; &nbsp; <a href="mailto:chuck-users@lists.cs.princeton.edu" target="_blank">chuck-users@lists.cs.princeton<wbr>.edu</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
&nbsp; &nbsp; &nbsp; &nbsp; <a href="https://lists.cs.princeton.edu/mailman/listinfo/chuck-users" rel="noreferrer" target="_blank">
https://lists.cs.princeton.edu<wbr>/mailman/listinfo/chuck-users</a><br>
or, via email, send a message with subject or body 'help' to<br>
&nbsp; &nbsp; &nbsp; &nbsp; <a href="mailto:chuck-users-request@lists.cs.princeton.edu" target="_blank">
chuck-users-request@lists.cs.p<wbr>rinceton.edu</a><br>
<br>
You can reach the person managing the list at<br>
&nbsp; &nbsp; &nbsp; &nbsp; <a href="mailto:chuck-users-owner@lists.cs.princeton.edu" target="_blank">
chuck-users-owner@lists.cs.pri<wbr>nceton.edu</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of chuck-users digest...&quot;<br>
<br>
Today's Topics:<br>
<br>
&nbsp; &nbsp;1. Re: static strings and the future (JP Yepez)<br>
<br>
<br>
---------- Forwarded message ----------<br>
From:&nbsp;JP Yepez &lt;<a href="mailto:jpyepezimc@gmail.com" target="_blank">jpyepezimc@gmail.com</a>&gt;<br>
To:&nbsp;ChucK Users Mailing List &lt;<a href="mailto:chuck-users@lists.cs.princeton.edu" target="_blank">chuck-users@lists.cs.<wbr>princeton.edu</a>&gt;<br>
Cc:&nbsp;<br>
Bcc:&nbsp;<br>
Date:&nbsp;Sun, 14 Jan 2018 15:53:30 &#43;1300<br>
Subject:&nbsp;Re: [chuck-users] static strings and the future<br>
<div dir="ltr">Hello all,
<div><br>
</div>
<div>I can't say much about the development part itself, but in my experience I've noticed that ChucK is still being used widely at an academic level. I understand it's being used in a few universities that include creative technology programs and computer
 orchestra courses in their curriculums, including CalArts, Stanford, and VUW (New Zealand). Like Mario mentioned, it is a core part of a few Kadenze courses; I've been involved as a producer/teaching assistant in a couple of them and it seems like it's a popular
 language among students who are just learning how to code, and musicians who would like to develop more advanced projects. Also, ChucK Racks popped up a couple of months ago, which was pretty exciting. So yeah, I think there's quite a bit going on, but it
 certainly would be nice to have a more active community (I'm hoping to contribute, and hopefully I'll get to it before too long).<br>
</div>
<div><br>
</div>
<div>About the <b>static strings</b>&nbsp;issue, I think they're kind of in a shady spot. Like Gonzalo mentioned, you can't have static non-primitives in your code, but there is a workaround to this by declaring objects as a reference and then initializing them
 outside of the class. However, if you try to do this with strings, it will tell you that they're a primitive type and it throws an error. The best hack I've found for this is through arrays (even if the size of the array is 1 in many cases). Here's an example:</div>
<div><br>
</div>
<div><font color="#666666"><br>
</font></div>
<div>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p1" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666">public<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">
</span>class<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1"> </span>
<span class="m_-4074869441512430398m_-2257932518693561201gmail-s2">Container</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">
</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s2">{</span></font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p2" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco; min-height:17px">
<font color="#666666"><br>
</font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p3" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666"><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">&nbsp; &nbsp;
</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s3">static</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">
</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s4">string</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">
</span>staticString[];</font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p2" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco; min-height:17px">
<span class="m_-4074869441512430398m_-2257932518693561201gmail-Apple-converted-space"><font color="#666666">&nbsp;&nbsp; &nbsp;</font></span></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p1" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666"><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">&nbsp; &nbsp;
</span>public<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1"> </span>
static<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1"> </span>
void<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1"> </span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s2">init()</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">
</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s2">{</span></font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p3" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666"><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">&nbsp; &nbsp; &nbsp; &nbsp;
</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s3">new</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">
</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s4">string</span>[<span class="m_-4074869441512430398m_-2257932518693561201gmail-s5">1</span>]<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">
</span>@=&gt;<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1"> </span>
staticString;</font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p3" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666"><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">&nbsp; &nbsp; &nbsp; &nbsp;
</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s6">&quot;Hello World&quot;</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">
</span>@=&gt;<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1"> </span>
staticString[<span class="m_-4074869441512430398m_-2257932518693561201gmail-s5">0</span>];</font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p4" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666"><span class="m_-4074869441512430398m_-2257932518693561201gmail-Apple-converted-space">&nbsp; &nbsp;
</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s2">}</span></font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p2" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco; min-height:17px">
<span class="m_-4074869441512430398m_-2257932518693561201gmail-Apple-converted-space"><font color="#666666">&nbsp;&nbsp; &nbsp;</font></span></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p1" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666"><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">&nbsp; &nbsp;
</span>public<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1"> </span>
static<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1"> </span>
void<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1"> </span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s2">print(){</span></font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p3" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666"><span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">&nbsp; &nbsp; &nbsp; &nbsp;
</span>&lt;&lt;&lt;<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1"> </span>
staticString[<span class="m_-4074869441512430398m_-2257932518693561201gmail-s5">0</span>]<span class="m_-4074869441512430398m_-2257932518693561201gmail-s1">
</span>&gt;&gt;&gt;;</font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p4" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666"><span class="m_-4074869441512430398m_-2257932518693561201gmail-Apple-converted-space">&nbsp; &nbsp;
</span><span class="m_-4074869441512430398m_-2257932518693561201gmail-s2">}</span></font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p3" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666">}</font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p2" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco; min-height:17px">
<font color="#666666"><br>
</font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p3" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666">Container.init();</font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p3" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco">
<font color="#666666">Container.print();</font></p>
<p class="m_-4074869441512430398m_-2257932518693561201gmail-p2" style="margin:0px; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; line-height:normal; font-family:Monaco; min-height:17px">
<br>
</p>
</div>
<div><font color="#444444"><br>
</font></div>
<div><font color="#444444">You don't really need an init() function, and you can initialize the array on the actual script, but I usually end up with much larger classes, which is why I like to keep things clean.</font></div>
<div><font color="#444444">Hope this helps!</font></div>
<div><font color="#444444"><br>
</font></div>
<div><font color="#444444">Best,</font></div>
<div><font color="#444444"><br>
</font></div>
<div><font color="#444444">JP</font></div>
<div><br>
<div class="gmail_extra">
<div>
<div class="m_-4074869441512430398m_-2257932518693561201gmail_signature">
<div dir="ltr">
<div>
<div dir="ltr">
<div>
<div dir="ltr">
<div><br>
</div>
<b style="font-family:Helvetica; font-size:12px"><font size="1" color="#3d85c6">JP Yepez</font></b>
<div>
<div><span style="font-family:Helvetica; font-size:12px; background-color:rgb(255,255,255)"><font size="1" color="#999999">New Media Artist - Musician - Researcher</font></span></div>
<div><font size="1" face="Helvetica" color="#3d85c6">Website:</font><font size="1" face="Helvetica" color="#a59999">&nbsp;
<a href="http://www.jpyepez.com/" target="_blank">http://www.jpyepez.com/</a></font></div>
<div><font size="1" face="Helvetica" color="#3d85c6">Email</font><font size="1" face="Helvetica" color="#a59999">:&nbsp; &nbsp; &nbsp;
<a href="mailto:jpyepezimc@gmail.com" target="_blank">jpyepezimc@gmail.com</a></font></div>
<div><font size="1" face="Helvetica" color="#a59999">------------------------------<wbr>--------------------------</font></div>
<div><font size="1" face="Helvetica" color="#a59999"><a href="https://www.instagram.com/jpyepez/" target="_blank"><img src="https://images2.imgbox.com/62/2e/OWpabMBi_o.png"></a></font><span style="font-family:Helvetica; font-size:12px">
<a href="https://twitter.com/jpyepezmusic" target="_blank"><img src="https://images2.imgbox.com/65/2a/b3Gn8mIm_o.png"></a><span style="font-family:Helvetica; font-size:12px">
<a href="https://www.linkedin.com/in/jp-yepez-063928123/" target="_blank"><img src="https://images2.imgbox.com/21/22/7IKM1kB9_o.png"></a></span></span><font size="1" face="Helvetica" color="#a59999"><br>
</font></div>
<div><font size="1" face="Helvetica" color="#a59999"><br>
</font></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="gmail_quote">On Sun, Jan 14, 2018 at 12:19 AM, mario buoninfante <span dir="ltr">
&lt;<a href="mailto:mario.buoninfante@gmail.com" target="_blank">mario.buoninfante@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px
                                        0.8ex; border-left:1px solid
                                        rgb(204,204,204); padding-left:1ex">
Hi,<br>
<br>
I'd like to ask the same question about the development status.<br>
<br>
the only thing I can say is that also if the development seems to be a bit stuck, on the other side I noticed that they're pushing on the educational side (see Kadenze courses), and if you look at the github repository, there's been some update in the last
 2 years.<br>
<br>
but as you guys said, it's important to know what's the plan ;)<br>
<br>
it's a couple of years I'm really diving into ChucK and I strongly believe that is a good programming language which opens up a lot of possibilities that other languages don't.<br>
<br>
but at the same time I feel like it's been a bit abandoned (maybe that's a huge word, let's say put aside ;) ) and of course using a &quot;tool&quot;&nbsp; which has an &quot;uncertain future&quot; it's not the best thing.<br>
<br>
I wish I was able to offer my contribution to the development, but unfortunately I'm not really into C/C&#43;&#43;, I'm more a &quot;scripting language guy&quot; :)<br>
<br>
btw, it would be nice to hear what developers and/or other users have to say about it.<br>
<br>
<br>
cheers,<br>
<br>
Mario<span class="m_-4074869441512430398m_-2257932518693561201gmail-im
m_-4074869441512430398m_-2257932518693561201gmail-HOEnZb"><br>
<br>
<br>
<br>
On 12/01/18 22:14, Gonzalo wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px
                                            0.8ex; border-left:1px solid
rgb(204,204,204); padding-left:1ex">
Yes, I'm wondering the same thing. There's a Facebook group (<a href="https://www.facebook.com/groups/1593843507578422/" rel="noreferrer" target="_blank">https://www.facebook.com/grou<wbr>ps/1593843507578422/</a>) but it doesn't look super active either.<br>
<br>
As far as static strings: I'm pretty sure you just can't have static non-primitives. What are you trying to achieve?<br>
<br>
Cheers,<br>
Gonzalo<br>
<br>
<br>
On 13.01.18 00:20, Atte wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px
                                              0.8ex; border-left:1px
                                              solid
                                              rgb(204,204,204); padding-left:1ex">
Hi<br>
<br>
I've been away for a long time and surprised that activity seems to have slowed down a lot, both on the development of new releases chuck and the life of this list. Am I looking at the wrong places? What's the status of chuck development now and in the future?<br>
<br>
I really like chuck (mostly the timing and sporking including Machine.add()), should I look other places for a language that will privide a more secure future? I'm on linux and looked at Csound, Super Collider and PD, each has it's challenges in how I work
 (realtime generative and algorithmic MIDI), python seems to have realtime problems (garbage collection at random points). Any idea what former chuck users have switched to now?<br>
<br>
Back to chuck! A problem that I never been able to solve, static strings:<br>
<br>
public class A {<br>
&nbsp;&nbsp;&nbsp;&nbsp; &quot;b&quot; @=&gt; static string B;<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp; public static void C(){<br>
&nbsp;&nbsp;&nbsp;&nbsp;&lt;&lt;&lt;B&gt;&gt;&gt;;<br>
&nbsp;&nbsp;&nbsp;&nbsp; }<br>
}<br>
<br>
That throws an error, how would I go about what I'm trying to do?<br>
<br>
Cheers<br>
<br>
</blockquote>
<br>
</blockquote>
<br>
</span>
<div class="m_-4074869441512430398m_-2257932518693561201gmail-HOEnZb">
<div class="m_-4074869441512430398m_-2257932518693561201gmail-h5">______________________________<wbr>_________________<br>
chuck-users mailing list<br>
<a href="mailto:chuck-users@lists.cs.princeton.edu" target="_blank">chuck-users@lists.cs.princeton<wbr>.edu</a><br>
<a href="https://lists.cs.princeton.edu/mailman/listinfo/chuck-users" rel="noreferrer" target="_blank">https://lists.cs.princeton.edu<wbr>/mailman/listinfo/chuck-users</a><br>
</div>
</div>
</blockquote>
</div>
<br>
</div>
</div>
<img src="http://t.sidekickopen08.com/e1t/o/5/f18dQhb0Sd-K8bGch0W2n0x6l2B9gXrW7sKj6v5LkZWYN2BgZ0vd77LTTv_pl91B160103?si=334295004&amp;pi=038dc1b8-ed3c-4d97-b71f-404270105a8e&amp;ti=undefined" height="1" width="1" style="display:none!important"></div>
<br>
______________________________<wbr>_________________<br>
chuck-users mailing list<br>
<a href="mailto:chuck-users@lists.cs.princeton.edu" target="_blank">chuck-users@lists.cs.princeton<wbr>.edu</a><br>
<a href="https://lists.cs.princeton.edu/mailman/listinfo/chuck-users" rel="noreferrer" target="_blank">https://lists.cs.princeton.edu<wbr>/mailman/listinfo/chuck-users</a><br>
<br>
</blockquote>
</div>
</div>
</div>
</blockquote>
<blockquote type="cite">
<div><span>______________________________<wbr>_________________</span><br>
<span>chuck-users mailing list</span><br>
<span><a href="mailto:chuck-users@lists.cs.princeton.edu" target="_blank">chuck-users@lists.cs.<wbr>princeton.edu</a></span><br>
<span><a href="https://lists.cs.princeton.edu/mailman/listinfo/chuck-users" target="_blank">https://lists.cs.princeton.<wbr>edu/mailman/listinfo/chuck-<wbr>users</a></span><br>
</div>
</blockquote>
</div>
<br>
______________________________<wbr>_________________<br>
chuck-users mailing list<br>
<a href="mailto:chuck-users@lists.cs.princeton.edu">chuck-users@lists.cs.<wbr>princeton.edu</a><br>
<a href="https://lists.cs.princeton.edu/mailman/listinfo/chuck-users" rel="noreferrer" target="_blank">https://lists.cs.princeton.<wbr>edu/mailman/listinfo/chuck-<wbr>users</a><br>
<br>
</blockquote>
</div>
<br>
<br clear="all">
<div><br>
</div>
-- <br>
<div class="gmail_signature">
<div dir="ltr">
<div><span style="color:rgb(153,153,153)">Casper Schipper<br>
</span></div>
<span style="color:rgb(153,153,153)"><a href="mailto:casper.schipper@gmail.com" target="_blank">casper.schipper@gmail.com</a><br>
&#43;31 6 52 322 590</span><br>
</div>
</div>
</div>
</div>
</div>
</blockquote>
<blockquote type="cite">
<div><span>_______________________________________________</span><br>
<span>chuck-users mailing list</span><br>
<span><a href="mailto:chuck-users@lists.cs.princeton.edu">chuck-users@lists.cs.princeton.edu</a></span><br>
<span><a href="https://lists.cs.princeton.edu/mailman/listinfo/chuck-users">https://lists.cs.princeton.edu/mailman/listinfo/chuck-users</a></span><br>
</div>
</blockquote>
<br>
<fieldset class="mimeAttachmentHeader"></fieldset> <br>
<pre>_______________________________________________
chuck-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:chuck-users@lists.cs.princeton.edu">chuck-users@lists.cs.princeton.edu</a>
<a class="moz-txt-link-freetext" href="https://lists.cs.princeton.edu/mailman/listinfo/chuck-users">https://lists.cs.princeton.edu/mailman/listinfo/chuck-users</a>
</pre>
</blockquote>
<br>
</div>
</blockquote>
</div>
</body>
</html>