Search the web
Sign In
New User? Sign Up
squeak
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 134534 - 134563 of 143061   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
134534
Where can I read about the standard primitives in Squeak? I can find lots of resources on writing my own primitives, but I want to know what the existing ones...
Mark Volkmann
mark@...
Send Email
Nov 1, 2008
3:17 pm
134535
... I forgot the links, but search for Smalltalk blue book at Stephane Ducasse site. If you load VMMaker, you will have the code for most of these primitives ...
nicolas cellier
ncellier@...
Send Email
Nov 1, 2008
3:29 pm
134536
At Sat, 1 Nov 2008 10:17:38 -0500, ... For "new", you would probably like to know the object and object memory format as well. So, reading the related...
Yoshiki Ohshima
yoshiki@...
Send Email
Nov 1, 2008
3:41 pm
134537
... Also, if you want to browse the generated C code within the image, you can use SlangBrowser: http://wiki.squeak.org/squeak/5916 This will let you view the...
David T. Lewis
lewis@...
Send Email
Nov 1, 2008
5:52 pm
134538
... As mentioned the VM is built from Slang code, but it requires some platform specific code to interact with the operating system, there is now some...
John M McIntosh
johnmci@...
Send Email
Nov 1, 2008
6:13 pm
134539
Hi All, SparseLargeTable appears not to be sparse at all. If you look at SparseLargeTable>>initChunkSize:size:arrayClass:base:defaultValue: you'll see tat...
Eliot Miranda
eliot.miranda@...
Send Email
Nov 1, 2008
7:12 pm
134540
At Sat, 1 Nov 2008 12:12:21 -0700, ... Correct. As you saw, it is designed for the usage pattern of creating a read-only table once. ... Ah ha. ... I'm not...
Yoshiki Ohshima
yoshiki@...
Send Email
Nov 1, 2008
9:50 pm
134541
... Here's what I came up with. Note the use of \\ in noCheckAt:[put:] which avoids an extra arithmetic op (a multiplication). You might consider replacing...
Eliot Miranda
eliot.miranda@...
Send Email
Nov 1, 2008
10:00 pm
134542
I have a class C1 with method M1 (source + compiled). How do I safely make a copy of M1 in another class C2 (same source + compile)? Thanks - Sophie...
itsme213
itsme213@...
Send Email
Nov 2, 2008
3:15 pm
134543
On Tue, Jul 22, 2008 at 06:14:51PM -0700, Eliot Miranda wrote: > Hi All, > I've made a significant step today in making available the first cut of > my...
David T. Lewis
lewis@...
Send Email
Nov 3, 2008
2:31 am
134544
Hi David, I have been tardy in leaving a blog post and important updates unpublished while I've worked on the stack VM and a profiler. I'll try extra hard...
Eliot Miranda
eliot.miranda@...
Send Email
Nov 3, 2008
2:42 am
134545
How to initialize a local variable in plugin? Say I want to have smething like this in c. int myfunction (){ int* temp; for(int i=0; i< 4; i++){ temp[i] = i; }...
Ang Beepeng
beepeng86@...
Send Email
Nov 3, 2008
3:34 am
134546
I have tried several combinations of poking around #methodDictionary, #addSelector, even CompiledMethod>>#getSource fed to Compiler. I only succeed in messing...
Sophie (itsme213)
itsme213@...
Send Email
Nov 3, 2008
4:11 am
134547
... Well, the easiest way is to copy-paste. I suppose some people here might recommend the Refactoring Browser, but I don't trust that thing. I don't know of a...
Matthew Fulmer
tapplek@...
Send Email
Nov 3, 2008
4:29 am
134548
... Something like this ought to work... ... source := Class1 sourceCodeAt: #method1 Class2 compile: source classified: 'copied methods'...
Colin Putney
cputney@...
Send Email
Nov 3, 2008
4:48 am
134549
"Matthew Fulmer" <tapplek@...> wrote in message ... Ah, why didn't I think of that :-) I'd much prefer it programmed. ... Migrate off traits to ease...
Sophie (itsme213)
itsme213@...
Send Email
Nov 3, 2008
4:52 am
134550
How to initialize a local variable in plugin? Say I want to have something like this in c for my plugin. int myfunction (){ int* temp; for(int i=0; i< 4; i++){...
Ang Beepeng
beepeng86@...
Send Email
Nov 3, 2008
7:06 am
134551
Hi, is the following class side method a disaster waiting to happen? readData "persistance :-))" ... refStream := ReferenceStream fileNamed: 'HkCalendar.data'....
Herbert König
herbertkoenig@...
Send Email
Nov 3, 2008
10:10 am
134552
I have previously asked for tips on how to package non-web apps for distribution to users. Several people suggested that I should follow the examples set by...
Mark Volkmann
mark@...
Send Email
Nov 3, 2008
12:04 pm
134553
... The "One Click" technique now is used by Seaside, Pier and Aida also. All you need is the last OS X VM you could find For OS X, you see as one thing, but...
Edgar J. De Cleene
edgardec2001@...
Send Email
Nov 3, 2008
12:57 pm
134554
... My apologies, but I still don't comprehend the steps to be taken. Suppose my application is a simple as this. I have a class with a single class method as...
Mark Volkmann
mark@...
Send Email
Nov 3, 2008
1:57 pm
134555
... Ok, this is different requeriment. You wish a RTS (run time system) and the person who use this 'MyHelloWorld.image" should not realize is made with Squeak...
Edgar J. De Cleene
edgardec2001@...
Send Email
Nov 3, 2008
2:19 pm
134556
Hi Mark, The Laser Game tutorial of Stephan Wessels explains how to do that. See http://squeak.preeminent.org/tut2007/html/205.html and the next pages to see...
Francois Stephany
tulipe.moutarde@...
Send Email
Nov 3, 2008
2:20 pm
134557
It looks reasonable. Just ask vmmaker to compile the code and then look at the C output. Aik-Siong Koh ... -- View this message in context:...
askoh
askoh@...
Send Email
Nov 3, 2008
2:52 pm
134558
... Yes. ... It is, but the associations in it are also referenced in the CompiledMethod's literals. The ref stream will have copies of the associations. You...
Bert Freudenberg
bert@...
Send Email
Nov 3, 2008
3:44 pm
134559
Hello Mark, you seem a bit pressed, so let me reply as good as I can, hoping that when you made it I find a nicer version on your web place :-)) MV> asked on...
Herbert König
herbertkoenig@...
Send Email
Nov 3, 2008
3:48 pm
134560
... Shouldn't this be self var: #temp type: 'int *'. ? Have a look at the generated C code. - Bert -...
Bert Freudenberg
bert@...
Send Email
Nov 3, 2008
3:52 pm
134561
Hello Bert, BF> It is, but the associations in it are also referenced in the BF> CompiledMethod's literals. The ref stream will have copies of the BF>...
Herbert König
herbertkoenig@...
Send Email
Nov 3, 2008
3:54 pm
134562
El 11/3/08 12:18 PM, "Edgar J. De Cleene" <edgardec2001@...> ... The original tip is from Ned And now all could download at ...
Edgar J. De Cleene
edgardec2001@...
Send Email
Nov 3, 2008
8:08 pm
134563
Un regalito. Hoy subi ftp://www.squeak.org/various_images/TodaMafalda.1.RTS.image Ahi verán una version Squeak del libro , 375 paginas de las que adjunto una...
Edgar J. De Cleene
edgardec2001@...
Send Email
Nov 3, 2008
8:22 pm
Messages 134534 - 134563 of 143061   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help