[Pharo-dev] Random forest in Pharo

2015-10-14 Thread Damien Cassou
Hi, did anyone implement a Random Forest algorithm in Pharo? https://en.wikipedia.org/wiki/Random_forest -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing enthusiasm." --Winston Churchill

Re: [Pharo-dev] binary serialization

2015-10-14 Thread Robert Withers
On 10/14/2015 11:01 AM, Mariano Martinez Peck wrote: Robert, As far as I can remember, the problem of substitutions at materialziation time was because... as you may have read, Fuel first serializes "objects" and then the references. At materialization, it first creates the objects and then,

[Pharo-dev] Broken examples (GLMExamplesBrowser) issue 16111

2015-10-14 Thread Nicolai Hess
I think some examples in GLMExamplesBrowser In Pharo5.0 are broken. see fogbugz issue "16111 Collections being passed as a whole into blocks, instead of each individual object" The confusion about "display-block" and "format-block" is sorted out, so we could close the issue. But it seems the

Re: [Pharo-dev] what is NativeBoost?

2015-10-14 Thread Esteban Lorenzano
but beware… ASMJIT part of NB (and well… NB it self, that means) will fade away… it will remain compatible (95% of the cases), but we will unload it… there is a lot of maintainability and security concerns around it. Esteban > On 14 Oct 2015, at 17:13, Max Leske wrote: >

Re: [Pharo-dev] binary serialization

2015-10-14 Thread Robert Withers
Good morning, Max. Thank you for the example. I got a little confused, between migrations and substitutions. My issue with no-arg blocks, I believe, is the inability to access my scope object to maintain the object tables. I'm attempting to write my own Materializer, Decoder and

Re: [Pharo-dev] Random forest in Pharo

2015-10-14 Thread Serge Stinckwich
I don't think so. I followup your message on SciSmalltalk mailing-list. This is something that might interested us ;-) On Wed, Oct 14, 2015 at 4:54 PM, Damien Cassou wrote: > Hi, > > did anyone implement a Random Forest algorithm in Pharo? > >

[Pharo-dev] what is NativeBoost?

2015-10-14 Thread Robert Withers
I ran across it browsing and it looks pretty interesting. It's purpose remains a mystery to to me. -- thanks so much ^^ Robert

Re: [Pharo-dev] Random forest in Pharo

2015-10-14 Thread philippe.b...@highoctane.be
Not sure you would get enough performance on Pharo per se. Xe may be better off leveraging a multicore enabled external lib. Like caret and doMC on R. Le 14 oct. 2015 17:49, "Serge Stinckwich" a écrit : > I don't think so. > > I followup your message on SciSmalltalk

Re: [Pharo-dev] what is NativeBoost?

2015-10-14 Thread Robert Withers
;-) I knew you had fonts. Somewhere inside, i just had that feeling. Cheers, --- robert > On Oct 14, 2015, at 11:13 AM, Max Leske wrote: > > >> On 14 Oct 2015, at 17:01, Robert Withers wrote: >> >> I ran across it browsing and it looks

Re: [Pharo-dev] binary serialization

2015-10-14 Thread Mariano Martinez Peck
Robert, As far as I can remember, the problem of substitutions at materialziation time was because... as you may have read, Fuel first serializes "objects" and then the references. At materialization, it first creates the objects and then, on a second step, sets the references betwen objects. So

Re: [Pharo-dev] what is NativeBoost?

2015-10-14 Thread Max Leske
> On 14 Oct 2015, at 17:01, Robert Withers wrote: > > I ran across it browsing and it looks pretty interesting. It's purpose > remains a mystery to to me. NativeBoost provides an FFI. It’s used by Athens for example to render the fonts in Pharo using Cairo

Re: [Pharo-dev] what is NativeBoost?

2015-10-14 Thread Robert Withers
Max, if I were to call a blocking 'select' call for NIO, do you think it would lock the image? Thx --- robert > On Oct 14, 2015, at 11:13 AM, Max Leske wrote: > > >> On 14 Oct 2015, at 17:01, Robert Withers wrote: >> >> I ran across it

[Pharo-dev] Corporate sponsored popularity

2015-10-14 Thread Ben Coman
Just a passing thought... When comparing the popularity of programming languages, maybe technological features are less important than sponsorship by a large tech corporation. Anyhow I don't mind that the masses haven't discovered Pharo. I enjoy it.

Re: [Pharo-dev] Corporate sponsored popularity

2015-10-14 Thread Esteban A. Maringolo
2015-10-14 12:24 GMT-03:00 Ben Coman : > Just a passing thought... When comparing the popularity of programming > languages, maybe technological features are less important than > sponsorship by a large tech corporation. >

[Pharo-dev] tests should be green

2015-10-14 Thread Nicolai Hess
Please, someone can look at the Collections-Tests The ReleaseTest complains about testLocalMethodsOfTheClassShouldNotBeRepeatedInItsTraits (These are all Test-subclasses that use traits, but all(!) trait method are compiled in the class instead, this happened after someone moved the Test packages

Re: [Pharo-dev] binary serialization

2015-10-14 Thread Mariano Martinez Peck
On Wed, Oct 14, 2015 at 12:09 PM, Robert Withers wrote: > > On 10/14/2015 11:01 AM, Mariano Martinez Peck wrote: > >> Robert, >> >> As far as I can remember, the problem of substitutions at >> materialziation time was because... as you may have read, Fuel first >>

Re: [Pharo-dev] what is NativeBoost?

2015-10-14 Thread Esteban Lorenzano
it allows you to define and execute assembly code in the image. Esteban > On 14 Oct 2015, at 18:24, Robert Withers wrote: > > I'd think there's just as much concern with all the globals. What does > ASMJIT do? a Jit? > > thanks so much ^^ > Robert > > On

Re: [Pharo-dev] TestPGConnection>>testNotify2 fails

2015-10-14 Thread Esteban A. Maringolo
Problem ¿solved? I ran the test against a PostgreSQL 9.2 and the test passed. However the test passes... but it is failing silently, because it should raise a NoticeResponse and it's throwing a PGErrorResponse instead. It seems like this has been buried for years, and because nobody ever

Re: [Pharo-dev] binary serialization

2015-10-14 Thread Robert Withers
On 10/14/2015 11:37 AM, Mariano Martinez Peck wrote: On Wed, Oct 14, 2015 at 12:09 PM, Robert Withers > wrote: On 10/14/2015 11:01 AM, Mariano Martinez Peck wrote: Robert, As far as I can remember, the

Re: [Pharo-dev] what is NativeBoost?

2015-10-14 Thread Robert Withers
Well, yes, I have not much use for this in my projects. The example of FFI, however, it great to find. thanks so much ^^ Robert On 10/14/2015 12:48 PM, Dimitris Chloupis wrote: So to summarise the great thing about NB is that it does assembly code with pharo syntax, the bad thing about NB is

[Pharo-dev] TestPGConnection>>testNotify2 fails

2015-10-14 Thread Esteban A. Maringolo
I have a failing test in my computer when running the test mentioned in the subject, I get the following error: "PGConnection has a defective state machine" Stack: PGConnection(Object)>>error: PGConnection(PGActiveObject)>>stCantHappen: PGConnection>>stCantHappen:

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Dale Henrichs
On 10/14/2015 12:15 AM, Christophe Demarey wrote: Le 12 oct. 2015 à 19:01, Dale Henrichs a écrit : On 10/12/2015 01:42 AM, Christophe Demarey wrote: Hi Dale, Le 11 oct. 2015 à 00:40, Dale Henrichs a écrit : Christophe, I still don't have a lot of time to read the paper and try to

Re: [Pharo-dev] what is NativeBoost?

2015-10-14 Thread Dimitris Chloupis
So to summarise the great thing about NB is that it does assembly code with pharo syntax, the bad thing about NB is that it does assembly code with pharo syntax. Of course there are not that many people around to be sane enough to write assembly , so of course it will be removed at some point.

Re: [Pharo-dev] what is NativeBoost?

2015-10-14 Thread Max Leske
> On 14 Oct 2015, at 17:20, Robert Withers wrote: > > Max, if I were to call a blocking 'select' call for NIO, do you think it > would lock the image? Thx Yes. Only callbacks can work asynchronously. > > --- > robert > >> On Oct 14, 2015, at 11:13 AM, Max Leske

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Dale Henrichs
On 10/14/2015 12:39 AM, Christophe Demarey wrote: Le 12 oct. 2015 à 19:22, Dale Henrichs a écrit : On 10/12/2015 02:20 AM, Christophe Demarey wrote: Le 11 oct. 2015 à 18:42, Dale Henrichs a écrit : On 10/11/15 12:19 AM, stepharo wrote: Le 11/10/15 00:40, Dale Henrichs a écrit :

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Dale Henrichs
On 10/14/2015 12:48 AM, Christophe Demarey wrote: Le 12 oct. 2015 à 21:17, Dale Henrichs a écrit : On 10/12/2015 02:58 AM, Christophe Demarey wrote: Le 11 oct. 2015 à 22:32, Dale Henrichs a écrit : With our approach, metadata lies in the package for the current version and it is on the

Re: [Pharo-dev] what is NativeBoost?

2015-10-14 Thread Robert Withers
I'd think there's just as much concern with all the globals. What does ASMJIT do? a Jit? thanks so much ^^ Robert On 10/14/2015 11:18 AM, Esteban Lorenzano wrote: but beware… ASMJIT part of NB (and well… NB it self, that means) will fade away… it will remain compatible (95% of the cases),

Re: [Pharo-dev] what is NativeBoost?

2015-10-14 Thread Robert Withers
Awesome! SO you can do emulation. That's fantastic. thanks so much ^^ Robert On 10/14/2015 12:30 PM, Esteban Lorenzano wrote: it allows you to define and execute assembly code in the image. Esteban On 14 Oct 2015, at 18:24, Robert Withers wrote: I'd think

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Christophe Demarey
Le 12 oct. 2015 à 19:01, Dale Henrichs a écrit : > > > On 10/12/2015 01:42 AM, Christophe Demarey wrote: >> Hi Dale, >> >> Le 11 oct. 2015 à 00:40, Dale Henrichs a écrit : >> >>> Christophe, >>> >>> I still don't have a lot of time to read the paper and try to understand >>> what you are

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Christophe Demarey
Le 12 oct. 2015 à 12:53, Stephan Eggermont a écrit : > On 12-10-15 10:42, Christophe Demarey wrote: > >> When you develop, you have a working copy of a package meta-data, including >> dependencies. Actually, there are current dependencies of the package. You >> could avoid to refer to

Re: [Pharo-dev] taskbarThumbnail leaks memory?

2015-10-14 Thread Nicolai Hess
2015-10-11 22:21 GMT+02:00 Henrik Nergaard : > > > > > It looks like the taskbarThumbnails might be leaking memory. > > When moving the mouse across the taskbar viewing the different thumbnails > the memory usage increases by quite a lot (viewed in the taskmanager >

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Christophe Demarey
Le 12 oct. 2015 à 14:03, Thierry Goubier a écrit : > > 2015-10-12 11:20 GMT+02:00 Christophe Demarey : > > Well, the point is not to replace metacello but to go towards a per package > metadata description allowing some flexibility with the introduction of >

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Christophe Demarey
Le 12 oct. 2015 à 19:53, Dale Henrichs a écrit : > > > On 10/12/2015 02:58 AM, Christophe Demarey wrote: >> >> Le 11 oct. 2015 à 22:32, Dale Henrichs a écrit : >> >>> When you talk about "virtual packages", I would say that a BaselineOf is >>> pretty much a "virtual package" already. >> >>

Re: [Pharo-dev] binary serialization

2015-10-14 Thread Max Leske
> On 14 Oct 2015, at 04:39, Robert Withers wrote: > > > On 10/13/2015 09:43 PM, Mariano Martinez Peck wrote: >> >> >> On Tue, Oct 13, 2015 at 10:33 PM, Robert Withers >> > wrote: >> >>Hi Mariano,

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Christophe Demarey
Le 12 oct. 2015 à 19:22, Dale Henrichs a écrit : > > > On 10/12/2015 02:20 AM, Christophe Demarey wrote: >> Le 11 oct. 2015 à 18:42, Dale Henrichs a écrit : >> >>> >>> On 10/11/15 12:19 AM, stepharo wrote: Le 11/10/15 00:40, Dale Henrichs a écrit : > Christophe, > > I

Re: [Pharo-dev] binary serialization

2015-10-14 Thread Max Leske
BTW, there is a dedicated Fuel mailing list: pharo-f...@lists.gforge.inria.fr Max > On 14 Oct 2015, at 09:45, Max Leske wrote: > >> >> On 14 Oct 2015, at 04:39, Robert Withers wrote: >> >> >> On 10/13/2015 09:43 PM, Mariano Martinez Peck

Re: [Pharo-dev] Question about implementation of a delay

2015-10-14 Thread Ferlicot D. Cyril
Le 14/10/2015 09:01, Henrik Johansen a écrit : > If you by some chance don't like UILoops, and so don't want to make a > spinning UILoop inside your UILoop, you could also use a single background > thread, something like; > > FilteredDataSource (to be used as dataSource for FastTable,

[Pharo-dev] [issue tracker] help with reviews needed

2015-10-14 Thread Marcus Denker
Hi, we have lots of issue that stay on the issue tracker far to long as there are not many people actively reviewing/testing/commenting. it would really be helpful to have more people involved. https://pharo.fogbugz.com/f/filters/36/Fixed-to-Review Marcus

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Christophe Demarey
Le 12 oct. 2015 à 21:17, Dale Henrichs a écrit : > > > On 10/12/2015 02:58 AM, Christophe Demarey wrote: >> >> Le 11 oct. 2015 à 22:32, Dale Henrichs a écrit : >> >> With our approach, metadata lies in the package for the current version and >> it is on the package repository when the

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Stephan Eggermont
On 14-10-15 08:25, Christophe Demarey wrote: What does releasing mean here? Could you frame it in terms of the 5D paper and the problems they describe? Regarding the 5D paper, what I call release is the version dimension, where you edit design information. "the designers typically work on a

Re: [Pharo-dev] Question about implementation of a delay

2015-10-14 Thread Henrik Johansen
If you by some chance don't like UILoops, and so don't want to make a spinning UILoop inside your UILoop, you could also use a single background thread, something like; FilteredDataSource (to be used as dataSource for FastTable, polymorphic api to normal dataSource but redirecting to

Re: [Pharo-dev] Question about implementation of a delay

2015-10-14 Thread Henrik Johansen
> On 14 Oct 2015, at 1:32 , Ferlicot D. Cyril wrote: > > Le 14/10/2015 09:01, Henrik Johansen a écrit : >> If you by some chance don't like UILoops, and so don't want to make a >> spinning UILoop inside your UILoop, you could also use a single background >> thread,

[Pharo-dev] GTools merging configurations

2015-10-14 Thread Andrei Chis
Hi, For the GTInspector, GTPlayground and GTSpotter we now have distinct configurations. However, this complicates the integration process with Pharo as a lot of configurations need to be updated. So we'd like to merge them in ConfigurationOfGToolkitCore. What do you think? This will simplify a

Re: [Pharo-dev] TestPGConnection>>testNotify2 fails

2015-10-14 Thread Levente Uzonyi
Notices and notifications are entirely different things in Postgresql, so I guess something got mixed up here. Levente On Wed, 14 Oct 2015, Esteban A. Maringolo wrote: Problem ¿solved? I ran the test against a PostgreSQL 9.2 and the test passed. However the test passes... but it is failing

Re: [Pharo-dev] About Magritte Seaside

2015-10-14 Thread Dale Henrichs
On 10/14/2015 01:00 AM, Christophe Demarey wrote: Le 12 oct. 2015 à 19:53, Dale Henrichs a écrit : On 10/12/2015 02:58 AM, Christophe Demarey wrote: Le 11 oct. 2015 à 22:32, Dale Henrichs a écrit : When you talk about "virtual packages", I would say that a BaselineOf is pretty much a