<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div>Hey Kirk,</div><div><br></div><div>I like Ralph's suggestion of doing the time/timing specific stuff on a dedicated microcontroller.&nbsp;</div><div><br></div><div>I'd recommend going one better: use more than one microcontroller. Robots need to do a lot in parallel; if the robot has to stop driving in order to think, that's a problem (although the converse would be decidedly human!) Anyway, it sounds like real-time is not negotiable in your view, so green threads won't cut it either.&nbsp;</div><div><br></div><div>Mine has... six controllers in total. That's not counting the ARM9 which is more like a full computer (e.g., Linux.)</div><div><br></div><div>I think six anyway. Could be more hiding in there. Two drive sensors, three drive motors, one is wired up close to the ARM board to coordinate the other controllers on behalf of what the Linux system wants them doing.&nbsp;</div><div><br></div><div>I'm curious, have you figured out what the average, best, and worst case latencies are on human reflexes? In my view, matching or beating that benchmark is where the money probably is.&nbsp;</div><div><br></div><div>--C</div><div><br>On Jul 6, 2015, at 12:39 PM, Kirk Fraser &lt;<a href="mailto:overcomer.man@gmail.com">overcomer.man@gmail.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div dir="ltr">Ralph Johnson,&nbsp;<div>&nbsp;</div><div>That's an excellent suggestion and an excellent story, thank you very much!&nbsp; Letting the human interface in Smalltalk program the robot controller instead of being the robot controller sounds good.</div><div>&nbsp;</div><div>My robot uses a network of Parallax microcontroller chips to drive hydraulic valves, which can be programmed via USB for simple tasks like moving one joint from point A to B but since each controller has 8 cores more complex tasks like grasping or walking can be done on the MCU's or on a small Raspberry Pi or other hardware in a non-GC or controllable GC language. &nbsp;</div><div>&nbsp;</div><div>A harder part to wrap my head around is handling the webcam vision system and artificial intelligence while remaining time sensitive enough to do time critical tasks like cartwheels and other acrobatic choreography. &nbsp;</div><div>&nbsp;</div><div>I know in effect my human mind shuts down most of its intellectual pursuits when engaged in heavy physical activity - maybe the robot must do the same - think more creatively when idling and pay closer attention while working. That takes care of the Ai timing. &nbsp;</div><div>&nbsp;</div><div>The heavy load of vision processing appears to need a mini-cloud of cores to reduce time to identify and measure objects from contours and other information.&nbsp; To guarantee performance they would also need to run a non-GC language that could be programmed from Squeak interactively as new objects are being learned.&nbsp; I haven't worked with a laser range finder but I suspect they use it to narrow the focus onto moving objects to process video in more detail in those areas.</div><div>&nbsp;</div><div>The current buzzword "co-robots" meaning&nbsp;robots that work beside or cooperatively with people working in symbiotic relationships with human partners suggests everyone will need a robot friend, which will require an artificial intelligence capable of intelligent thought.&nbsp; As most Americans are Christian it would make sense for a human compatible AI to be based on the Bible.&nbsp; That is what I would love to work on.&nbsp; But that level of thought needs a creative CG environment like Squeak at present.</div><div><br></div><div>I've been thinking that using a Smalltalk GUI to issue command rules to set an agenda for automatic text analysis and editing might be fun, letting the computer do the editing instead of me.&nbsp; That way it could update the AI knowledge like when a preferred synonym is discovered, without taking human time to do much of it beyond the setup.</div><div><br></div><div>Your wikipedia entry shows a webpage and blog that apparently are dead links.&nbsp; Would you be interested in being a team member on my SBIR/STTR grant application(s) for AI and Robots responding to:</div><div><a href="http://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf15505">http://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf15505</a> &nbsp;I've enlisted help in writing the application from Oregon's Small Business Development Center and will meet with an SBIR road trip in August I'm told. &nbsp;(I was also told I need a Ph.D. on my team since I don't have one.)<br></div><div><br></div><div>Kirk Fraser</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jul 6, 2015 at 4:19 AM, Ralph Johnson <span dir="ltr">&lt;<a href="mailto:johnson@cs.uiuc.edu" target="_blank">johnson@cs.uiuc.edu</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="ltr">Here is another possibility.<div><br></div><div>Take a look at Symbolic Sound, a company that makes a system called Kyma. &nbsp; &nbsp;<a href="http://kyma.symbolicsound.com/" target="_blank">http://kyma.symbolicsound.com/</a></div><div><br></div><div>This company has been around for over twenty years. &nbsp; Its product has always been the fastest music synthesis system in the world that gives you total control over your sound.&nbsp; And by "total", I mean it gives you the ability to mathematically specify each sound wave. &nbsp; If you want, which is actually too much detail for most people. &nbsp; And it is all written in Smalltalk.&nbsp; Not Squeak, of course, since Squeak wasn't around then. &nbsp; But it could have been done in Squeak. &nbsp; And perhaps they ported it to Squeak. &nbsp; I haven't talked to them for a long time so I don't know what they did, but from the screen shots I think it is still a very old version of VisualWorks.</div><div><br></div><div>Anyway, how do they make it so fast?&nbsp; How can they make something that can be used for hours without any GC pauses?</div><div><br></div><div>The trick is that the sound is produced on an attached DSP. &nbsp; The GUI is in Smalltalk on a PC, and it generates code for the DSP. &nbsp; It is non-trivial making the compiler so fast that when you press "play", it can immediately start up the DSP and start producing sound.&nbsp; It does this (rather, it did this, since they might have changed the way it works) by just producing enough code to run the DSP for a few seconds and then starting the DSP while it generates the rest of the code. &nbsp; Kyma literally is writing the program into DSP memory at the same time as the DSP is running the program, producing sound.</div><div><br></div><div>Anyway, maybe that is the right approach to programming robots. &nbsp; You don't even need to use two computers. &nbsp; Imagine you had two computers, one running Squeak and the other a simple, real-time machine designed for controlling robots, but not very sophisticated.&nbsp; Squeak programs the simple computer, and can change its program dynamically.&nbsp; The simple computer has no gc. &nbsp; Since Squeak is a VM on a computer, the real-time computer can be a VM, too.&nbsp; So, you could be running them both on your PC, or you could run them on two separate computers for better performance.</div><div><br></div><div>I would be happy to talk more about this.&nbsp; But I'd like to talk about the beginning of Kyma. &nbsp; The owners of Symbolic Sound are Carla Scaletti and Kurt Hebel. &nbsp; Carla has a PhD in music, and Kurt in Electrical Engineering. &nbsp; I met Carla after she had her PhD.&nbsp; She wanted to get a MS in computer science so she could prove her computer music expertise, and she ended up getting it with me. &nbsp; She took my course on OOP&amp;D that used Smalltalk.&nbsp; For her class project (back in 1987, I think) she wrote a Smalltalk program that ran on the Mac and that produced about ten seconds of sound, but it took several minutes to do it. &nbsp; Hardly real time. &nbsp; However, she was used to using a supercomputer (a Cray?) to generate sounds that still weren't real time, so she was very pleased that she could do it on the Mac at all, and though Smalltalk was slower than Fortran, in her opinion the ease of use was so great that she didn't mind the speed difference. &nbsp; As she put it, the speed difference between a Mac and a Cray was bigger than between Smalltalk and Fortran.&nbsp; She ended up turning this into the first version of Kyma and that became the subject of her MS thesis. &nbsp; I can remember when she showed it in class.&nbsp; She was the only woman in the class, and the other students knew she was a musician, i.e. not *really* a programmer.&nbsp; She was quiet during class, so they had not had a chance to have their prejudices remedied.&nbsp; Her demo at the end of the semester blew them away. &nbsp;&nbsp;</div><div><br></div><div>Kurt had built a DSP that their lab used. &nbsp; (The lab was part of the Plato project, I believe, one of the huge number of creative results of this very significant project at Illinois.) &nbsp; It was called the Capybara.&nbsp; This was before the time when you could just buy a good DSP on a chip, but that time came very soon and then they used the commercial chips.&nbsp; For her MS, she converted her system to use the Capybara, and this was when she figured out how to make it start making music within a fraction of a second of pressing the "play" button.&nbsp; Kurt also used Smalltalk with the Capybara.&nbsp; His PhD was about automatically designing digital filters, and his software also generated code for the Capybara, though it was actually quite different from Kyma.</div><div><br></div><div>The two of them worked on several different projects over the next few years, but kept improving Kyma. &nbsp; Along the way Kurt started building boards that had several commercial DSPs on them.&nbsp; Eventually they decided to go commercial and started Symbolic Sound.</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>-Ralph Johnson</div></font></span></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Jul 5, 2015 at 9:05 PM, Kirk Fraser <span dir="ltr">&lt;<a href="mailto:overcomer.man@gmail.com" target="_blank">overcomer.man@gmail.com</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="ltr"><span><div>&gt;&gt;&nbsp;Tim says a multi-core VM is coming for the new Pi. &nbsp;</div><div><br></div></span><span><div>&gt; Are you *sure* that's what Tim said?<br></div><div><br></div></span>Of course my over hopeful misinterpretation is possible.<div><br></div><div>"Squeak runs quite well on a Pi, especially a pi2 - and we're working on the Cog dynamic translation VM right now, which should with luck triple typical performance." &nbsp;- timrowledge ยป Thu Feb 19, 2015&nbsp;<br></div><div><a href="https://urldefense.proofpoint.com/v2/url?u=https-3A__www.raspberrypi.org_forums_viewtopic.php-3Ff-3D63-26t-3D100804-26p-3D698818-26hilit-3DSqueak-23p698818&amp;d=AwMFaQ&amp;c=8hUWFZcy2Z-Za5rBPlktOQ&amp;r=1b7HP4jiYqv2J9GhsFL1RVTPCo7Df2jBmDU6HdJUM3Y&amp;m=pRfWHn5kQQDUpmTGXHnuu3w4ad5xkQMqpXmKbW4otP4&amp;s=5SkbxXeYM7Oag11E83WE10OSZp6ppgixTXsPY3nN1iU&amp;e=" target="_blank">https://www.raspberrypi.org/forums/viewtopic.php?f=63&amp;t=100804&amp;p=698818&amp;hilit=Squeak#p698818</a><br></div><span><div><br></div><div><div>&gt; The trick to getting rid of long delays is more a function of preallocating everything you can than getting rid of GC's (I've done some highly interactive stuff in GC environments and preventing GC's is impractical except over short periods of time, minimizing their frequency and duration is very doable) &nbsp;One of the things I think I</div><div>recently saw that should help you in this regard is FFI memory pinning if you're calling out to external code.</div></div><div><br></div></span><div>Thanks.&nbsp; Maybe when I find, make, or build a better place to work, I'll be able to tackle some of that.&nbsp; I wouldn't be surprised if a VM is as easy as a compiler once one actually starts working on it.</div><div><br></div></div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Jul 5, 2015 at 6:31 PM, Phil (list) <span dir="ltr">&lt;<a href="mailto:pbpublist@gmail.com" target="_blank">pbpublist@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>On Sun, 2015-07-05 at 17:12 -0700, Kirk Fraser wrote:<br>
&gt; I used Cuis at first to display hand written G-Codes in graphic form<br>
&gt; for a printed circuit board.&nbsp; I kept up with Cuis through a few<br>
&gt; versions and found a couple of bugs for Juan.&nbsp; Eventually Casey<br>
&gt; advised going to Squeak so I did. Perhaps my requests were getting<br>
&gt; annoying.<br>
&gt;<br>
<br>
</span>Perhaps you misinterpreted what Casey said?&nbsp; Definitely have all options<br>
(Squeak, Pharo, Cuis etc.) as part of your toolkit.&nbsp; Squeak in<br>
particular has a very active mailing lists and you'll find a lot of<br>
existing code to play with.&nbsp; I personally do most of my development in<br>
Cuis, some in Pharo (for things like Seaside that don't yet exist in<br>
Cuis), and a bit still in Squeak.&nbsp; They all have their place depending<br>
on your needs.&nbsp; Given your emphasis on performance, I would think that<br>
Cuis is going to be the place where you can maximize it. (all the above<br>
Smalltalk variants use essentially the same core VM, it's the plugins<br>
and images that really differ)<br>
<span><br>
&gt; I'm mostly interested in using a multi-core Squeak with GC control for<br>
&gt; my robot.&nbsp; Tim says a multi-core VM is coming for the new Pi.&nbsp; He<br>
&gt; hasn't answered on GC control.&nbsp; With muliti-core a user need not see<br>
&gt; GC control but the system should provide 100% GC free service even if<br>
&gt; behind the scenes it momentarily toggles one GC off and lets the other<br>
&gt; complete.<br>
&gt;<br>
<br>
</span>Are you *sure* that's what Tim said?&nbsp; I see a thread where he's talking<br>
about *build* performance (i.e. compiling the C code for the VM) on a<br>
quad-core with the caveat 'even if Squeak can't directly take<br>
advantage' (i.e. no multi-core VM)<br>
<span><br>
&gt;<br>
&gt; With real time driving, which I hope my robot will do some day,<br>
&gt; getting rid of all 100ms delays is vital.<br>
&gt;<br>
<br>
</span>The trick to getting rid of long delays is more a function of<br>
preallocating everything you can than getting rid of GC's (I've done<br>
some highly interactive stuff in GC environments and preventing GC's is<br>
impractical except over short periods of time, minimizing their<br>
frequency and duration is very doable)&nbsp; One of the things I think I<br>
recently saw that should help you in this regard is FFI memory pinning<br>
if you're calling out to external code.<br>
<div><div><br>
&gt;<br>
&gt;<br>
&gt; On Sun, Jul 5, 2015 at 4:54 PM, Dan Norton &lt;<a href="mailto:dnorton@mindspring.com" target="_blank">dnorton@mindspring.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On 5 Jul 2015 at 16:22, Kirk Fraser wrote:<br>
&gt;<br>
&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; We should ask why do people want to teach Python instead of<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; Smalltalk?&nbsp; Why do people veer<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; away from Smalltalk with add-ons like Etoys, Scratch, and<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;many other<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; paradigms like Patterns<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; and CRC cards, which aren't as good for commercial<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;programming, thus<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; really aren't as good to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; teach children?&nbsp; What can be done to remodel Squeak to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;provide all<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; the features more<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; commercially popular languages have?<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; Earlier a post saying a boss didn't want a GUI that a<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;combination of<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; buttons would bring up all<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; sorts of things his employees shouldn't be playing with.&nbsp; So<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;put a<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; cleaner commercial GUI on the<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; list. Maybe the preferences switch could be in its own file<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;or as<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; the first character in Sources to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; reduce file count.&nbsp; The Changes file shouldn't be needed in<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; deployed application.&nbsp; Is there any<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; way to cut the deployment image down to one file containing<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;both the<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; Sources and VM like an<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; .exe in any other language?<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; I've written on the need to fix Garbage Collection control<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;so it can<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; be turned off like Python allows<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; to enable Squeak to be used for real time projects like self<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;driving<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; cars, since a 100ms delay can<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; veer 8 feet off course, fully into a lane of oncoming<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;traffic.<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; Recently I learned from a UC Berkeley website it takes 100ms<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; recognize the objects in a<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; picture too.&nbsp; Does that mean the future will have a cloud in<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;every<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; car and Squeak needing to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; conduct image analysis in hundreds of cooperating cores to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;get safe<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; real time performance?<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; The state of Squeak for all its benefits seems like a<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;collection of<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; law statutes, a big set of text<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; contributed by years of legislation that nobody can remember<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;all of<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; and some of which makes little<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; sense.&nbsp; Maybe a major rewrite starting from zero would help?<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt;<br>
&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;" like a collection of law statutes" is a good analogy. Cuis<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;seems like a major rewrite of Squeak and is simpler, easier to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;understand. What do you think of Cuis?<br>
&gt;<br>
&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; The GUI - while it has many nice features, it somehow seems<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;to lack<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; the crisp precision, ease,<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; and speed of commercial software like Solidworks.&nbsp; I like<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;how<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; Squeak comes up and is ready to<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; go far quicker than say Amazon's Audible application but<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Squeak<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; graphics aren't so fast or easy<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; to program as Solidworks.<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; Recently I saw a couple of short videos on two moderate size<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;robots<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; where users extolled their<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; ease of programming.&nbsp; Perhaps Smalltalk needs a new top<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;level rule<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; based language to improve<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; programmer efficiency.&nbsp; I'm working on this one.&nbsp; And as my<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; prototype was so easy, it angers me<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; to think of all the time I spent being both ignorant and<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;afraid<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; after seeing various compiler books<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; like the "Dragon Book" intentionally make compiler writing a<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; difficult graduate level course instead<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; of an easy advanced beginner level assignment.<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; But one thing I have in common with my Raspberry Pi, when my<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; utilization is maxed for too long, I<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; overheat and shut down.&nbsp; I can write simple stuff like this<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;when<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; it's too hot to do real work.&nbsp; But<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; even multiple cores get too hot when they are maxed out.&nbsp; So<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a real<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; time computer needs heat<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; control or cooling overkill in case a vital complex<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;situation clogs<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; the bandwidth.&nbsp; Well, pray about<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&gt; it.<br>
&gt;<br>
&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; - Dan<br>
&gt;<br>
&gt;<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;_______________________________________________<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Beginners mailing list<br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:Beginners@lists.squeakfoundation.org" target="_blank">Beginners@lists.squeakfoundation.org</a><br>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.squeakfoundation.org_mailman_listinfo_beginners&amp;d=AwMFaQ&amp;c=8hUWFZcy2Z-Za5rBPlktOQ&amp;r=1b7HP4jiYqv2J9GhsFL1RVTPCo7Df2jBmDU6HdJUM3Y&amp;m=pRfWHn5kQQDUpmTGXHnuu3w4ad5xkQMqpXmKbW4otP4&amp;s=Pcp64tri1CC-SEK3dbt5MDDEQSf-hmDCPocWxsWY87I&amp;e=" rel="noreferrer" target="_blank">http://lists.squeakfoundation.org/mailman/listinfo/beginners</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Beginners mailing list<br>
&gt; <a href="mailto:Beginners@lists.squeakfoundation.org" target="_blank">Beginners@lists.squeakfoundation.org</a><br>
&gt; <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.squeakfoundation.org_mailman_listinfo_beginners&amp;d=AwMFaQ&amp;c=8hUWFZcy2Z-Za5rBPlktOQ&amp;r=1b7HP4jiYqv2J9GhsFL1RVTPCo7Df2jBmDU6HdJUM3Y&amp;m=pRfWHn5kQQDUpmTGXHnuu3w4ad5xkQMqpXmKbW4otP4&amp;s=Pcp64tri1CC-SEK3dbt5MDDEQSf-hmDCPocWxsWY87I&amp;e=" rel="noreferrer" target="_blank">http://lists.squeakfoundation.org/mailman/listinfo/beginners</a><br>
<br>
<br>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@lists.squeakfoundation.org" target="_blank">Beginners@lists.squeakfoundation.org</a><br>
<a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.squeakfoundation.org_mailman_listinfo_beginners&amp;d=AwMFaQ&amp;c=8hUWFZcy2Z-Za5rBPlktOQ&amp;r=1b7HP4jiYqv2J9GhsFL1RVTPCo7Df2jBmDU6HdJUM3Y&amp;m=pRfWHn5kQQDUpmTGXHnuu3w4ad5xkQMqpXmKbW4otP4&amp;s=Pcp64tri1CC-SEK3dbt5MDDEQSf-hmDCPocWxsWY87I&amp;e=" rel="noreferrer" target="_blank">http://lists.squeakfoundation.org/mailman/listinfo/beginners</a><br>
</div></div></blockquote></div><br></div>
</div></div><br>_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@lists.squeakfoundation.org" target="_blank">Beginners@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://lists.squeakfoundation.org/mailman/listinfo/beginners</a><br>
<br></blockquote></div><br></div>
</div></div><br>_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@lists.squeakfoundation.org">Beginners@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://lists.squeakfoundation.org/mailman/listinfo/beginners</a><br>
<br></blockquote></div><br></div>
</div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>Beginners mailing list</span><br><span><a href="mailto:Beginners@lists.squeakfoundation.org">Beginners@lists.squeakfoundation.org</a></span><br><span><a href="http://lists.squeakfoundation.org/mailman/listinfo/beginners">http://lists.squeakfoundation.org/mailman/listinfo/beginners</a></span><br></div></blockquote></body></html>