Re: [Pharo-project] Default max heap size on OS-X

2012-09-25 Thread Oscar E A Callau
Yes, I'm always changing it when downloading a new vm. However on cogMT (from Eliot), I can't write more than 1.75 GB. Cheers On Sep 24, 2012, at 11:51, Mariano Martinez Peck marianop...@gmail.com wrote: On Mon, Sep 24, 2012 at 10:04 AM, Stephan Eggermont step...@stack.nl wrote: Hi I

[Pharo-project] Reef examples and documentation

2012-08-26 Thread Oscar E A Callau
Hi all, Do You known where I can find examples and documentation about Reef?. It seems to be quite powerful. I just found the slides and videos from esug 2010 and 2011. Cheers Óscar E A Callau

Re: [Pharo-project] squeaksource is down

2011-08-27 Thread Oscar E A Callau
Hi, I understand you. It is actually not a problem of squeakSource. But for me, it is really a pain in the a** , because I need to download some project that seems to be only in the squeaksource (at least the version that I want). Isn't there a mirror? If not, we can start to think about it.

Re: [Pharo-project] Networking problems on Pharo 1.2.1

2011-04-21 Thread Oscar E A Callau
Thanks all for your comments. On Apr 21, 2011, at 07:13 , Sven Van Caekenberghe wrote: I think the problem might be the #listenOn: I use #listenOn:backlogSize: These are using different primitives. I tested with #listenOn:backlogSize: too, with the same result, error on

Re: [Pharo-project] Networking problems on Pharo 1.2.1

2011-04-21 Thread Oscar E A Callau
: 'localhost' port: 9191. clientSocket sendData: dataSent. clientSocket close. semaphore wait. self assert: dataSent = dataRead. dataRead On 21 Apr 2011, at 15:04, Oscar E A Callau wrote: Thanks all for your comments. On Apr 21, 2011, at 07:13 , Sven

Re: [Pharo-project] Networking problems on Pharo 1.2.1

2011-04-20 Thread Oscar E A Callau
: I hope someone can explain me what are the differences. Cheers On Apr 20, 2011, at 23:20 , Oscar E A Callau wrote: Hi all, may be this is a simple/stupid/repetitive question, but I don't know how to solve it. I'm trying to connect two sockets on Pharo 1.2.1, with following code

[Pharo-project] Printing an array on file without quotes

2010-11-25 Thread Oscar E A Callau
Hi all, I'm trying to print arrays using: FileStream forceNewFileNamed: 'path/file' do: [ :stream | ... stream print: myArray asCommaString withoutQuoting . ... ] The printing works well, but in the file, I get something like this: 'numbers, 1 , 2 , 3 , 4' with

Re: [Pharo-project] Printing an array on file without quotes

2010-11-25 Thread Oscar E A Callau
Hi all again, actually it was a very n00b question and the answer is simple: Use #nextputAll: instead of #print Greetings On Nov 25, 2010, at 11:37 , Oscar E A Callau wrote: Hi all, I'm trying to print arrays using: FileStream forceNewFileNamed: 'path/file' do: [ :stream

Re: [Pharo-project] Image size

2010-11-16 Thread Oscar E A Callau
Hi, I did ScriptLoader new cleanUpForRealese on my pharo1.1.1 image and I get an index out of bounds error. Doing a debug, I found the source: a 0-length method category name on MCVersion class. So, I move all methods in that category to another and it just works (except for my image size that

[Pharo-project] Sharing a image between several computers

2010-10-28 Thread Oscar E A Callau
Hi all, I've been programming in Smalltalk/Pharo for a time, and it is really nice (I love it). Usually, I work with several images at my work and home. I share those images using dropbox. However it is not practical, if your images size are 100+ MB (because dropbox is synchronizing

[Pharo-project] What is a primitive method?

2010-10-21 Thread Oscar E A Callau
Hi all, I have a (basic) question: What is a primitive method? In pharo 1.1.1, we have CompiledMethodprimitive that basically return: 0 if the method is not a primitive method 0 otherwise But if you execute this on i.e. NumberisNumber or Morph#model compiled methods you get that these

Re: [Pharo-project] What is a primitive method?

2010-10-21 Thread Oscar E A Callau
On 21-10-2010, at 13:18, Oscar E A Callau wrote: Hi all, I have a (basic) question: What is a primitive method? In pharo 1.1.1, we have CompiledMethodprimitive that basically return: 0 if the method is not a primitive method 0 otherwise This must be, as follow 0

Re: [Pharo-project] A Lazy Inspector?

2010-10-18 Thread Oscar E A Callau
On Oct 18, 2010, at 14:44 , Mariano Martinez Peck wrote: On Mon, Oct 18, 2010 at 4:40 AM, Oscar E A Callau oalva...@dcc.uchile.cl wrote: Hello all, I was wondering what actually the inspector does in the following case: When you explore (or inspect) the expression: Class environment

Re: [Pharo-project] A Lazy Inspector?

2010-10-18 Thread Oscar E A Callau
Thanks Mariano. Now I understand :-) Cheers Óscar E A Callau On 18 Oct 2010, at 16:52, Mariano Martinez Peck marianop...@gmail.com wrote: 2010/10/18 Oscar E A Callau oalva...@dcc.uchile.cl On Oct 18, 2010, at 14:44 , Mariano Martinez Peck wrote: On Mon, Oct 18, 2010 at 4:40 AM

[Pharo-project] A Lazy Inspector?

2010-10-17 Thread Oscar E A Callau
Hello all, I was wondering what actually the inspector does in the following case: When you explore (or inspect) the expression: Class environment you get all classes in the system dictionary. If you navigate inside a class, for example AColorSelectorMorph, you can see all its properties and

Re: [Pharo-project] Problems with SmaccDev and Pharo

2009-11-25 Thread Oscar E A Callau
Thanks a lot. Cheers!! On 25-11-2009, at 15:11, Lukas Renggli wrote: The code should be in sync with the latest AST code again. Furthermore I fixed some issues with the Polymorph GUI and I changed the compiler so that it creates byte-arrays for the transition tables, what is a bit faster

[Pharo-project] Navigating around the source code

2009-11-25 Thread Oscar E A Callau
Hi all, I have a question (may be is a stupid/freshman question); How can I move around the source code (inside of OB Package browser)? For example (in almost any text editor of mac os x): cmd + (left arrow) == move to the begin of the current line cmd + (right arrow) == move to the end

Re: [Pharo-project] Navigating around the source code

2009-11-25 Thread Oscar E A Callau
I'm using ctlr + (arrows) to move between spaces (on my mac), so I cannot use them. Does anyone know, if there is a way to reconfigure shortcuts. Greetings Oscar E. A. Callaú On 25-11-2009, at 16:01, Alexandre Bergel wrote: Ctlr + -, - move to the previous or next word.

Re: [Pharo-project] Problems with SmaccDev and Pharo

2009-11-25 Thread Oscar E A Callau
Of course, I will do. :-) On 25-11-2009, at 15:58, Stéphane Ducasse wrote: Let us know when you have results. ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project