Re: [Pharo-users] Pharo - database without database

2015-09-28 Thread stepharo
Mariano soon with spur 64bits we will see :) Le 28/9/15 14:57, Mariano Martinez Peck a écrit : On Mon, Sep 28, 2015 at 7:17 AM, Stephan Eggermont > wrote: On 27-09-15 18:47, Adam wrote: 1) Object memory limit: Current object memory of Pharo is l

Re: [Pharo-users] Question about color

2015-09-28 Thread Alejandro Infante
As far as I remember, Color>>#r:g:b: expects 3 numbers between 0 and 1, instead of integers from 0 to 255. Inspecting a color using the fractions proposed by Wolframalpha gives you the expected color: Color r: 0.06 g: 0.39 b: 0.39 Cheers,

Re: [Pharo-users] Pharo - database without database

2015-09-28 Thread Dale Henrichs
Adam, Keep an eye on the GLASS list[1] for an upcoming (within 2 months - I promise:) announcement about GsDevKit_home (not to be confused with gsDevKitHome:)... as it will provide much needed support for creating/starting/managing multiple GemStone stones If you are interested in working

Re: [Pharo-users] A keyboard controlled code editor, how difficult would that be?

2015-09-28 Thread Peter Uhnák
As for changing/updating the code in the cards... maybe we can look at MessageBrowser because it should have all the necessary behavior. Peter On Mon, Sep 28, 2015 at 4:58 PM, Offray Vladimir Luna Cárdenas < off...@riseup.net> wrote: > Thanks Peter, seems a problem related with thunderbird. I

[Pharo-users] TestAsserter>>assertCollection:hasSameElements:

2015-09-28 Thread Peter Uhnák
How practical it is to do set-based comparison in TestAsserter>>assertCollection:hasSameElements: ? For example #(1 1 2) has same elements as #(1 2) which may make sense for sets, but not for bags. The main reason I was using it is that in tests the expected collection may be created by hand, whi

Re: [Pharo-users] Morph: event handler on wrong morph/submorph

2015-09-28 Thread Federico.Balaguer
Thanks for the reply. Federico -- View this message in context: http://forum.world.st/Morph-event-handler-on-wrong-morph-submorph-tp4852370p4852398.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Morph: event handler on wrong morph/submorph

2015-09-28 Thread Federico.Balaguer
Thanks a lot! Federico -- View this message in context: http://forum.world.st/Morph-event-handler-on-wrong-morph-submorph-tp4852370p4852397.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] not yet / should be implemented

2015-09-28 Thread Thierry Goubier
Le 28/09/2015 21:53, Peter Uhnák a écrit : On Mon, Sep 28, 2015 at 9:36 PM, Thierry Goubier mailto:thierry.goub...@gmail.com>> wrote: Le 28/09/2015 21:09, Peter Uhnák a écrit : What is the difference? — *ShouldBeImplemented*

Re: [Pharo-users] Morph: event handler on wrong morph/submorph

2015-09-28 Thread Nicolai Hess
2015-09-28 18:59 GMT+02:00 Federico.Balaguer : > Hello, > > I found a problem with BotArena > (http://smalltalkhub.com/#!/~FedericoBalaguer/BotArena) on Pharo 4. > > BotArena is an interactive robot simulation environment that we use in my > university to teach OOP basics. BotArena was developed a

Re: [Pharo-users] not yet / should be implemented

2015-09-28 Thread Peter Uhnák
> > Oh, so it's actually ShouldHaveBeenImplemented (past tense --- as in: "it > was supposed to be already done"). > quoting from the comment "exception signaled when some method *should have been implemented* but was not" So I guess I'm blind because I read it several times but the brain didn't

Re: [Pharo-users] not yet / should be implemented

2015-09-28 Thread Peter Uhnák
On Mon, Sep 28, 2015 at 9:36 PM, Thierry Goubier wrote: > Le 28/09/2015 21:09, Peter Uhnák a écrit : > >> What is the difference? >> >> — >> *ShouldBeImplemented* >> * >> * >> I am ShouldBeImplemented, an exception signaled when some method should >> have been

Re: [Pharo-users] Pharo - database without database

2015-09-28 Thread Adam
Hello, Yes, I was confused by some old discussion. New licence is different. Thanks for correction. Adam. Dne Po 28. září 2015 12:17:19, Stephan Eggermont napsal(a): > On 27-09-15 18:47, Adam wrote: > > 1) Object memory limit: Current object memory of Pharo is limited to 4GB. > > Free version o

Re: [Pharo-users] not yet / should be implemented

2015-09-28 Thread Thierry Goubier
Le 28/09/2015 21:09, Peter Uhnák a écrit : What is the difference? — *ShouldBeImplemented* * * I am ShouldBeImplemented, an exception signaled when some method should have been implemented but was not. Usually in a abstract class to signal that a concrete su

[Pharo-users] not yet / should be implemented

2015-09-28 Thread Peter Uhnák
What is the difference? — *ShouldBeImplemented* I am ShouldBeImplemented, an exception signaled when some method should have been implemented but was not. This is more like a placeholder during development. — *NotYetImplemen

Re: [Pharo-users] Morph: event handler on wrong morph/submorph

2015-09-28 Thread Federico.Balaguer
Hello Stephan, the following line will open the tool I was referring to: BGSArenaWindow expertViewOn: (OnTheFlyConfigurableSimulation endlessWalkingBrush). There is two ways to add a new robot: 1. Click on the Add Robot button, which has no problem 2. Click on the grid Regards. Federico

Re: [Pharo-users] Morph: event handler on wrong morph/submorph

2015-09-28 Thread Stephan Eggermont
On 28/09/15 18:59, Federico.Balaguer wrote: Hello, I found a problem with BotArena (http://smalltalkhub.com/#!/~FedericoBalaguer/BotArena) on Pharo 4. BotArena is an interactive robot simulation environment that we use in my university to teach OOP basics. BotArena was developed as an instantia

Re: [Pharo-users] PharoTouch Demo Video

2015-09-28 Thread Ben Coman
On Mon, Sep 28, 2015 at 10:22 PM, Marcus Denker wrote: > https://www.youtube.com/watch?v=ksyoGItedVg very coool. Thanks for sharing. cheers -ben

[Pharo-users] Morph: event handler on wrong morph/submorph

2015-09-28 Thread Federico.Balaguer
Hello, I found a problem with BotArena (http://smalltalkhub.com/#!/~FedericoBalaguer/BotArena) on Pharo 4. BotArena is an interactive robot simulation environment that we use in my university to teach OOP basics. BotArena was developed as an instantiation of BOSS (http://smalltalkhub.com/#!/~CAR/

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Nicolai Hess
2015-09-28 17:33 GMT+02:00 Sven Van Caekenberghe : > > > On 28 Sep 2015, at 17:21, Nicolai Hess wrote: > > > > Thanks Mariano, Sven > > > > > > > > 2015-09-28 16:42 GMT+02:00 Sven Van Caekenberghe : > > > > > On 28 Sep 2015, at 15:04, Mariano Martinez Peck > wrote: > > > > > > Imagine something

Re: [Pharo-users] Dr Geo: A point needs to be animated over a preexisting object?

2015-09-28 Thread Hilaire
Le 26/09/2015 17:24, Offray Vladimir Luna Cárdenas a écrit : > I tried to, but didn't find how to start with a drawn object a put a > particular behavior onto this *specific* object. Scripting, in my > finding, was related with any selected kind of object (two points, a > line, etc) and made them b

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Sven Van Caekenberghe
> On 28 Sep 2015, at 17:21, Nicolai Hess wrote: > > Thanks Mariano, Sven > > > > 2015-09-28 16:42 GMT+02:00 Sven Van Caekenberghe : > > > On 28 Sep 2015, at 15:04, Mariano Martinez Peck > > wrote: > > > > Imagine something like this: > > > > neoCSVReader := (NeoCSVReader on: stream). > >

Re: [Pharo-users] Breakpoint ?

2015-09-28 Thread Marcus Denker
Hello, Yes, we are working on it! But as the breakpoints are actually based on a new framework for more general “behavioural reflection” (which needs a bit of deeper changes to the system), this is done in Pharo5. There is no loadable package. What I did is to port the prototype over: there is in

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Nicolai Hess
Thanks Mariano, Sven 2015-09-28 16:42 GMT+02:00 Sven Van Caekenberghe : > > > On 28 Sep 2015, at 15:04, Mariano Martinez Peck > wrote: > > > > Imagine something like this: > > > > neoCSVReader := (NeoCSVReader on: stream). > > neoCSVReader > > separator: $,; > >

Re: [Pharo-users] A keyboard controlled code editor, how difficult would that be?

2015-09-28 Thread Offray Vladimir Luna Cárdenas
Thanks Peter, seems a problem related with thunderbird. I will see what's happening. Cheers, Offray On 28/09/15 09:55, Peter Uhnák wrote: On Mon, Sep 28, 2015 at 4:25 PM, Offray Vladimir Luna Cárdenas mailto:off...@riseup.net>> wrote: Peter, Could you share a link to a bigger screenshot

Re: [Pharo-users] A keyboard controlled code editor, how difficult would that be?

2015-09-28 Thread Peter Uhnák
On Mon, Sep 28, 2015 at 4:25 PM, Offray Vladimir Luna Cárdenas < off...@riseup.net> wrote: > Peter, Could you share a link to a bigger screenshot of your workflow with > code cards? Just curious about this feature. > Hmm, what email client are you using? Because the image was not resized. world.

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Sven Van Caekenberghe
> On 28 Sep 2015, at 15:04, Mariano Martinez Peck wrote: > > Imagine something like this: > > neoCSVReader := (NeoCSVReader on: stream). > neoCSVReader > separator: $,; > recordClass: PriceRecord; > addIgnoredField; "" > addField:

[Pharo-users] PharoTouch Demo Video

2015-09-28 Thread Marcus Denker
Pharo touch demo with the new OSWindows architecture, touch events, vector graphics using Athens and libsdl2. Thanks the people involved (specifically for the touch project Christopher Coat, Mervan Ougdane, Jan-Baptiste Arnaud, Eric Lepors and Mathieu Lacaton) and to Thales for sponsoring this p

Re: [Pharo-users] A keyboard controlled code editor, how difficult would that be?

2015-09-28 Thread Offray Vladimir Luna Cárdenas
I second Phil's argument on the main problem being the lack of consistency of shorcuts between platforms and contexts. Ctrl+c, Ctrl+v is the most felt one, particularly on apps that use GT toolkit. Seeing Stephan experiments' is inspiring. Cheers, Offray On 21/09/15 15:29, p...@highoctane.be

Re: [Pharo-users] Exploring Pier

2015-09-28 Thread Offray Vladimir Luna Cárdenas
Hi Jimmie, Some or your searches/needs seem similar to mine. So I will share some of the stuff I'm using or considering, which is not Pharo/Smalltalk related and how I plan to connect it with Pharo. On markup language and documentation I'm using pandoc[1], which covers a wide variety of form

Re: [Pharo-users] printing

2015-09-28 Thread stepharo
We removed the epsfcanvas long time ago. Please note that the future is athens canvas. Stef Le 28/9/15 14:29, Ben Coman a écrit : What options do we have for hardcopy printing from Pharo? That is, functionality for an application File > Print... cheers -ben

Re: [Pharo-users] printing

2015-09-28 Thread Damien Cassou
Ben Coman writes: > What options do we have for hardcopy printing from Pharo? > That is, functionality for an application File > Print... PDF generation using Artefact. Then the PDF viewer can be opened automatically. -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the abi

Re: [Pharo-users] printing

2015-09-28 Thread Nicolai Hess
2015-09-28 14:29 GMT+02:00 Ben Coman : > What options do we have for hardcopy printing from Pharo? > That is, functionality for an application File > Print... > > cheers -ben > > No options anymore. There was a class TextPrinter (I swa it some years ago in squeak) but it is not there in pharo. Th

Re: [Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Mariano Martinez Peck
Imagine something like this: neoCSVReader := (NeoCSVReader on: stream). neoCSVReader separator: $,; recordClass: PriceRecord; addIgnoredField; "" addField: #securityUniqueId: ; "" addField: #date: converter: [ :string | Date readFrom: string readStream pattern: 'mmdd' ]; "" addFloatField: #op

Re: [Pharo-users] Pharo - database without database

2015-09-28 Thread Mariano Martinez Peck
On Mon, Sep 28, 2015 at 7:17 AM, Stephan Eggermont wrote: > On 27-09-15 18:47, Adam wrote: > >> 1) Object memory limit: Current object memory of Pharo is limited to 4GB. >> Free >> version of GemStone/S is also limited to 4GB, so I would rather stick with >> Pharo until I reach this level. And in

[Pharo-users] printing

2015-09-28 Thread Ben Coman
What options do we have for hardcopy printing from Pharo? That is, functionality for an application File > Print... cheers -ben

[Pharo-users] NeoCSV and special handling for some columns

2015-09-28 Thread Nicolai Hess
Hi, I have two problems I could not solve: 1. I would like to read only some columns: I have a large file with ~30 colums, but I am only interested on ~5 columns (not that important, I could pre-process the file) but anyway it would be nice to do it in smalltalk. 2. some columns will

Re: [Pharo-users] Changing method icons priorities in nautilus

2015-09-28 Thread Damien Cassou
Peter Uhnák writes: > So would it make sense to swap the priority? I agree with you. -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing enthusiasm." --Winston Churchill

Re: [Pharo-users] Pharo - database without database

2015-09-28 Thread Stephan Eggermont
On 27-09-15 18:47, Adam wrote: 1) Object memory limit: Current object memory of Pharo is limited to 4GB. Free version of GemStone/S is also limited to 4GB, so I would rather stick with Pharo until I reach this level. And in the future this limit grow due to 64bit version of VM. The information

Re: [Pharo-users] Is Pharo the best system to make this application?

2015-09-28 Thread Stephan Eggermont
On 27-09-15 22:06, Justin Northrop wrote: I've described it here: https://www.reddit.com/r/smalltalk/comments/3mk0pe/what_system_should_i_use_to_quickly_prototype_a/ Basically, it's a visual programming language, and an environment controlled by this language that allows real-time shared editin

Re: [Pharo-users] is " #^ " legal syntax?

2015-09-28 Thread Udo Schneider
> The definition is that # can be followed by a message selector > (including binary selectors such as -), or by a quoted string, or by an > opening parenthesis (array literal). Thanks for the info. Thinking in terms of the parser tokens makes things clear now. Thanks, Udo On 27/09/15 13:05

Re: [Pharo-users] Pharo - database without database

2015-09-28 Thread Adam
Hello, it is true: http://book.seaside.st/book/advanced/persistency Thank You very much. Adam Dne Po 28. září 2015 08:50:28, stepharo napsal(a): > If I'm correct we wrote about it on the seaside book > http://book.seaside.st > > Le 27/9/15 20:23, Adam a écrit : > > Hello, > > > > thank You for