... Trying to see if the cleanup I have was in Squeak3.11-8931-alpha.image originate the attached walkback The error was with the .cs via drag and drop and...
Edgar J. De Cleene
edgardec2001@...
Feb 9, 2010 8:15 pm
146487
Thanks, Edgar! That's a really useful script. Cheers, - Andreas...
Andreas Raab
andreas.raab@...
Feb 9, 2010 8:43 pm
146488
... I think I send before, but maybe not... Any idea why drag and drop a .cs into the image raise the error? Edgar...
Edgar J. De Cleene
edgardec2001@...
Feb 9, 2010 8:57 pm
146489
Hi All, I've just needed to make sense of a very long log file generated by ... gettimeofday({1265744804, 491238}, NULL) = 0 sigreturn()...
Eliot Miranda
eliot.miranda@...
Feb 9, 2010 9:34 pm
146490
On Tue, Feb 9, 2010 at 11:20 AM, Edgar J. De Cleene < ... Pedantry: [block value] on: Error do: [:error | Transcript show: error; cr]]]. is equivalent to block...
Eliot Miranda
eliot.miranda@...
Feb 9, 2010 9:45 pm
146491
... This might help http://bugs.squeak.org/view.php?id=7244 Keith...
keith
keith_hodges@...
Feb 9, 2010 10:29 pm
146492
A bit of a strain on the old garbage collector, but a Bag is good for that kind of analysis: f := FileStream fileNamed: 'strace.txt'. lines := Bag new. [[f...
David T. Lewis
lewis@...
Feb 9, 2010 11:44 pm
146493
Changes to Trunk (http://source.squeak.org/trunk.html) in the last 24 hours: http://lists.squeakfoundation.org/pipermail/packages/2010-February/002606.html ...
commits@...
Feb 9, 2010 11:55 pm
146494
... That doesn't do what I want. That gives the frequency of each line. I want a shortened file that I can browse more easily where successive runs of ...
Eliot Miranda
eliot.miranda@...
Feb 9, 2010 11:58 pm
146495
Hi Eliot - Fun challenge. The problem is very similar to the LZ family of compressors (http://en.wikipedia.org/wiki/LZ77_and_LZ78) which basically find...
Andreas Raab
andreas.raab@...
4:26 am
146496
David T. Lewis uploaded a new version of ST80 to project The Trunk: http://source.squeak.org/trunk/ST80-dtl.99.mcz ==================== Summary...
commits@...
4:27 am
146497
David T. Lewis uploaded a new version of MorphicExtras to project The Trunk: http://source.squeak.org/trunk/MorphicExtras-dtl.74.mcz ====================...
commits@...
4:35 am
146498
David T. Lewis uploaded a new version of Graphics to project The Trunk: http://source.squeak.org/trunk/Graphics-dtl.103.mcz ==================== Summary...
commits@...
4:36 am
146499
David T. Lewis uploaded a new version of Tools to project The Trunk: http://source.squeak.org/trunk/Tools-dtl.175.mcz ==================== Summary...
commits@...
4:39 am
146500
... Since we're being pedantic, we should also make the point that the above is only equivalent if the "block" argument truly is an instance of BlockClosure....
Andreas Raab
andreas.raab@...
4:47 am
146501
David T. Lewis uploaded a new version of Morphic to project The Trunk: http://source.squeak.org/trunk/Morphic-dtl.333.mcz ==================== Summary...
commits@...
4:47 am
146502
David T. Lewis uploaded a new version of Collections to project The Trunk: http://source.squeak.org/trunk/Collections-dtl.300.mcz ==================== Summary...
commits@...
4:51 am
146503
David T. Lewis uploaded a new version of Tools to project The Trunk: http://source.squeak.org/trunk/Tools-dtl.176.mcz ==================== Summary...
commits@...
5:25 am
146504
Hello Andreas, I believe Timothy A. Budd has written a paper related to that, entitled "The Generator Paradigm in Smalltalk" but I cannot find it readily. He...
Ian Trudel
ian.trudel@...
5:41 am
146505
Folks - One thing I really like about Python is Generators (http://docs.python.org/tutorial/classes.html#generators). They allow code to provide a stream...
Andreas Raab
andreas.raab@...
5:41 am
146506
... Generators are essentially coroutines, which makes them pretty easy to implement in Smalltalk - thisContext is all you need. They've been implemented a few...
Colin Putney
cputney@...
5:50 am
146507
... Brilliant! That's the ticket! Once I got down the right path it's even simpler than that. I put a version of Generator into the inbox for people to play...
Andreas Raab
andreas.raab@...
7:03 am
146508
... I wonder how can you use generators to generate primes efficiently _and_ on the fly. Levente...
... Interesting, thanks. I notice you have Generator>>reset and Generator>>fork which are definitely useful, but no Generator>>close? The latter allowing to...
Andreas Raab
andreas.raab@...
7:49 am
146511
... I've fixed that. There could be more bugs, as I've never used them beyond the anecdotical examples showing off runtime reflection. I never saw a practical...
Lukas Renggli
renggli@...
8:22 am
146512
... I have had some situations where I wanted them. Eliot's compression example is one of them - wrapping the algorithm into a Generator would allow trivial...
Andreas Raab
andreas.raab@...
8:38 am
146513
SICP to the rescue http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_sec_3.5.2 Probably inspiring in the context of this thread. Bye Enrico ... --...
Enrico Spinielli
enrico.spinielli@...
9:54 am
146514
Hi, I'm trying to get Magma's WriteBarrier to work in trunk - which version of NewCompiler works in trunk (and preferably doesn't require the whole RB ...
radoslav hodnicak
rh@...
9:56 am
146515
... There is no version of the NewCompiler that fully works with closure images yet. And yes, the NewCompiler requires the whole kitchen sink and also the...