Re: [Pharo-users] Object configuration idioms

2018-02-11 Thread Christian Caldeiro
Maybe using directly TwitterClient, but using #doesNotUnderstand: to delegate there message sends to the configuration object(kind of a proxy pattern). That way the TwitterClient class doesn't became so heavy. Christian On Sun, Feb 11, 2018 at 1:35 PM, Sven Van Caekenberghe wrote: > Why not d

Re: [Pharo-users] Becoming good at VM development

2015-08-28 Thread Christian Caldeiro
Hi Ichiro, there are a bunch of posts in Mariano Martinez Peck's blog named "journey through the VM", done some years ago. He writes about anything related to the VM, how to build it, class format, bytecodes, detailed description of the CompiledMethod class, etc. You can find the first post here:

Re: [Pharo-users] class variable accessor naming

2015-04-08 Thread Christian Caldeiro
alk books here: http://stephane.ducasse.free.fr/FreeBooks.html Christian On Wed, Apr 8, 2015 at 3:13 PM, Jan B. wrote: > True, I already found few examples of accessors to class variables, but I > like to be sure when I use it for the first time. Thank you. > > Jan > > > Christian Caldeiro wr

Re: [Pharo-users] class variable accessor naming

2015-04-07 Thread Christian Caldeiro
Class variables should be written with Uppercase (but there are some classes in Pharo that don't follow this convention). Class methods (accessors in this case) are written in lowercase. Again, you can find several samples in Pharo. Thanks Christian On Tue, Apr 7, 2015 at 1:54 PM, Jan B. wrote: