Re: [Pharo-users] Printing numbers

2015-02-24 Thread p...@highoctane.be
This one may come handy. http://smalltalkhub.com/#!/~philippeback/HOExtras/packages/Printf Works like a C printf. Coupled with 'Blah {1} and {2}' format: { '5.2d' printf: aNumber. '%5s' printf: aString } it can go a long way. Phil

Re: [Pharo-users] Printing numbers

2015-02-24 Thread Mariano Martinez Peck
On Tue, Feb 24, 2015 at 4:55 PM, Mariano Martinez Peck marianop...@gmail.com wrote: Hi guys, I have quite some reports that print several numbers. Until now we were using the default #greaseString. However, we now need to be able to start printing nicer and customizable. For example, I may

Re: [Pharo-users] Printing numbers

2015-02-24 Thread Mariano Martinez Peck
OK...Grease could be a start... (GRNumberPrinter new separator: $,; precision: 2; yourself) print: 12345678 On Tue, Feb 24, 2015 at 4:55 PM, Mariano Martinez Peck marianop...@gmail.com wrote: Hi guys, I have quite some reports that print several numbers. Until now

Re: [Pharo-users] Roassal question

2015-02-24 Thread Alexandre Bergel
Cool picture :-) Alexandre On Feb 23, 2015, at 4:04 PM, Werner Kassens wkass...@libello.com wrote: Hi Pierre, perhaps i should show what i intend to do, i attached a screenshot and i would like to have the axis' on the picture to the right. On 02/23/2015 04:38 PM, Werner Kassens

Re: [Pharo-users] Roassal question

2015-02-24 Thread Werner Kassens
On 02/24/2015 01:51 AM, Pierre Chanson wrote: by the way I am interested in how you did this Werner, actually if it would be an easy and simple algorithm to fill a defined circle for example like a mesher. Hi Pierre, it is just a not-yet-ready half-baked implementation of

Re: [Pharo-users] Roassal question

2015-02-24 Thread Pierre CHANSON
Alright thank you for the explanations yes it looks nice :) 2015-02-24 12:27 GMT-03:00 Alexandre Bergel alexandre.ber...@me.com: Cool picture :-) Alexandre On Feb 23, 2015, at 4:04 PM, Werner Kassens wkass...@libello.com wrote: Hi Pierre, perhaps i should show what i intend to do,

[Pharo-users] Evaluating scripts within Pillar

2015-02-24 Thread Alexandre Bergel
Hi! I am now digging into Pillar. My goal is to be able to insert Roassal script and having it executed. Scripts provided within [[[ ]]] may be evaluated using the variable ‘eval=true’. Here is an example: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-= PRHTMLWriter defaultConfigurations anyOne

[Pharo-users] [ANN] GADM: Access to Global Administrative Areas in Pharo

2015-02-24 Thread Hernán Morales Durand
I am pleased to announce the release of the GADM package for Pharo Smalltalk. GADM is a high-resolution spatial database of the location of the world's administrative areas for use in Geographical Information Systems (GIS) and similar software. The following post contains details about the

[Pharo-users] What UI direction now (or in the near future)?

2015-02-24 Thread Petr Fischer
Hello! Suppose, that I need to write simple UI app + write my own UI list component (some special behaviour, can’t use default list UI component from Pharo) + I need perfect keyboard support (shortcuts, tab navigation + navigation by cursor keys in some windows), which also means, that I need

Re: [Pharo-users] [ANN] GADM: Access to Global Administrative Areas in Pharo

2015-02-24 Thread Hernán Morales Durand
I forgot to paste the link. http://80738163270632.blogspot.com.ar/2015/02/gadm-access-to-global-administrative.html Hernán 2015-02-25 0:04 GMT-03:00 Hernán Morales Durand hernan.mora...@gmail.com: I am pleased to announce the release of the GADM package for Pharo Smalltalk. GADM is a

Re: [Pharo-users] Printing numbers

2015-02-24 Thread Cameron Sanders via Pharo-users
---BeginMessage--- Nice. Good to know about. thanks, cam On Tue, Feb 24, 2015 at 3:49 PM, p...@highoctane.be p...@highoctane.be wrote: This one may come handy. http://smalltalkhub.com/#!/~philippeback/HOExtras/packages/Printf Works like a C printf. Coupled with 'Blah {1} and {2}' format:

Re: [Pharo-users] i feel dumb / Pharo3 OrderedCollection do:

2015-02-24 Thread Stephan Eggermont
On 24/02/15 08:05, Marcus Denker wrote: And then, with the new fast #become:, we can go back the the old implementation and grow OrderedCollection using #become:, which would mean that we would not need two objects anymore… Until the collection grows large. Then we need some chunked format, to