Re: [Pharo-dev] issue validation for pharo40

2014-06-08 Thread stepharo
I guess you all already know, that the issuevalidator doesn't work for slices from pharo40 inbox. Is there anything we can do? I do not know where the code is. Probably reading the configuration of the jenkins slave for 30 is the way to go and updating it to 40. Stef

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread stepharo
if you are talking about the extension made by nicolas cellier: probably. Stef On 8/6/14 00:10, S. Garth Holland wrote: Will Pharo ever get the pipe opeator? http://www.reddit.com/r/smalltalk/comments/27k27b/chaining_messages/ /Garth

Re: [Pharo-dev] issue validation for pharo40

2014-06-08 Thread Marcus Denker
On 07 Jun 2014, at 22:18, Nicolai Hess wrote: > I guess you all already know, that the issuevalidator doesn't work for > slices from pharo40 inbox. Is there anything we can do? > Yes, It is on my TODO for next week… (just came back from holidays). Marcus

[Pharo-dev] some random git docs

2014-06-08 Thread Ben Coman
I am using git for the first time (for documentation) and was trying to understand the options for merging and conflict handling, and found some stuff I thought might be generally useful to others - in particular what "rebasing" was and when it might be appropriate - which I didn't have a clu

Re: [Pharo-dev] some random git docs

2014-06-08 Thread kilon alios
git also has excellent documentation http://git-scm.com/doc On Sun, Jun 8, 2014 at 12:37 PM, Ben Coman wrote: > > I am using git for the first time (for documentation) and was trying to > understand the options for merging and conflict handling, and found some > stuff I thought might be genera

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Norbert Hartl
I think you need to be more specific. The word pipe is misleading and not mentioned in the reddit post. The solution in that post is not an operator but a pattern you can implement easily yourself. To be more monadic like it wouldn't be this like in the example item safeChain recipient; address;

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Norbert Hartl
What is that extension? Norbert > Am 08.06.2014 um 09:27 schrieb stepharo : > > if you are talking about the extension made by nicolas cellier: probably. > > Stef > >> On 8/6/14 00:10, S. Garth Holland wrote: >> Will Pharo ever get the pipe opeator? >> >> http://www.reddit.com/r/smalltalk/co

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Nicolas Cellier
2014-06-08 12:12 GMT+02:00 Norbert Hartl : > What is that extension? > > Norbert > > I'm curious too :) I recently proposed to enable caret as a binary selector, maybe there's been a confusion... I remember a discussion about using ;; as pipe "operator" (it's more syntax sugar than operator), in a

Re: [Pharo-dev] issue validation for pharo40

2014-06-08 Thread Esteban Lorenzano
yesterday I fixed a problem in the monkey (it was going to look for slices to old inbox) but looks not enough… tomorrow I will take a closer look. Esteban On 08 Jun 2014, at 05:23, Marcus Denker wrote: > > On 07 Jun 2014, at 22:18, Nicolai Hess wrote: > >> I guess you all already know, that

[Pharo-dev] [pharo-project/pharo-core] 56a944: 40015

2014-06-08 Thread GitHub
Branch: refs/heads/4.0 Home: https://github.com/pharo-project/pharo-core Commit: 56a94496fd3eb54e33ec3265b33cf78089f4015f https://github.com/pharo-project/pharo-core/commit/56a94496fd3eb54e33ec3265b33cf78089f4015f Author: Jenkins Build Server Date: 2014-06-08 (Sun, 08 Jun 2014

[Pharo-dev] [pharo-project/pharo-core]

2014-06-08 Thread GitHub
Branch: refs/tags/40015 Home: https://github.com/pharo-project/pharo-core

Re: [Pharo-dev] Pharo Logo

2014-06-08 Thread Marcus Denker
On 07 Jun 2014, at 18:35, Tudor Girba wrote: > That is the old logo. I was also looking for the flat high resolution logo, > but I cannot find that one on the files server. > > Does anyone know where to find that one? > I have it on my disk… (just back from holidays… I will search and upload

[Pharo-dev] [pharo-project/pharo-core]

2014-06-08 Thread GitHub
Branch: refs/tags/40016 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] c4fe9a: 40016

2014-06-08 Thread GitHub
Branch: refs/heads/4.0 Home: https://github.com/pharo-project/pharo-core Commit: c4fe9ab17d35de5ea54a2de963f82756219aeb97 https://github.com/pharo-project/pharo-core/commit/c4fe9ab17d35de5ea54a2de963f82756219aeb97 Author: Jenkins Build Server Date: 2014-06-08 (Sun, 08 Jun 2014

Re: [Pharo-dev] Delete a package in SmalltalkHub

2014-06-08 Thread Luc Fabresse
2014-06-06 21:47 GMT+02:00 jannik laval : > Hum, > > I just retry from home and it works !!! > So, I don't understand... an error related to proxies ? I don't understand. > No I can't believe that it is related to proxies we will re-check > > Jannik > > > 2014-06-06 21:43 GMT+02:00 jannik lava

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Garth Holland
The pipe operator appears in many languages (F#, Haskell, Elixir, Clojure (threading macro)). It's an elegant way of chaining method/function calls in the presence of additional parameters. The reddit example could be written using a pipe operator |> #('apple' 'peach' 'banana') |> group

Re: [Pharo-dev] Pharo Logo

2014-06-08 Thread Damien Cassou
On Sun, Jun 8, 2014 at 7:29 PM, kilon alios wrote: > for anyone who cares I am in a process of recreating the Pharo Logo in 3D > animated. I will use the animation as opening sequence for my future video > tutorials. I have attached an early render though I am still working on it > and it has sti

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Ben Coman
Garth Holland wrote: The pipe operator appears in many languages (F#, Haskell, Elixir, Clojure (threading macro)). It's an elegant way of chaining method/function calls in the presence of additional parameters. The reddit example could be written using a pipe operator |> #('apple' 'peach' 'ban

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Frank Shearar
Vassili Bykov wrote about the pipe operator in Smalltalk back in 2007: http://blog.3plus4.org/2007/08/30/message-chains/ frank On 8 June 2014 18:20, Garth Holland wrote: > The pipe operator appears in many languages (F#, Haskell, Elixir, Clojure > (threading macro)). It's an elegant way of chain

[Pharo-dev] Bench comparing Pahro 1.4 and 3.0.

2014-06-08 Thread Hilaire Fernandes
I have run a Sketch script on DRGeo on Pharo 1.4 and 3.0 The script involved a lot of collection operations and object comparison. The leaves results are strange, because the script is the same: On Pharo 1.4: **Leaves** 14.2% {97ms} Array class(Behavior)>>inheritsFrom: 11.4% {77ms} OrderedColl

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Attila Magyar
Hi, I wrote that reddit post. I was curious if anyone came up with something to this. Since then I discovered that Bert Freudenberg created an asPipe method before, that works exactly the same way as mine. And probably asPipe is a better name than chain. The idea of the pipe operator is interest

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Camille Teruel
On 8 juin 2014, at 19:20, Garth Holland wrote: > The pipe operator appears in many languages (F#, Haskell, Elixir, Clojure > (threading macro)). It's an elegant way of chaining method/function calls in > the presence of additional parameters. The reddit example could be written > using a pipe op

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Attila Magyar
Yes, AFIK, the Java 8 stream API works similarly. The query is called stream(), the endQuery is called collect(Collectors.toList()) -- View this message in context: http://forum.world.st/Pipe-operator-tp4762106p4762209.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread stepharo
Norbert I'm curious too :) I recently proposed to enable caret as a binary selector, maybe there's been a confusion... :) Yes my brain is overloaded in this moment. I'm doing far too many things at the same time. Not good. I remember a discussion about using ;; as pipe "operator" (i

Re: [Pharo-dev] Bench comparing Pahro 1.4 and 3.0.

2014-06-08 Thread Clément Bera
Some collection protocols were optimized so your result makes sense. The current performance bottleneck for your application definitely comes from the use of isKindOf: based on your profiles. inheritsFrom: is called by isKindOf: I guess. Now be very careful the current GC has very strange side ef

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Denis Kudriashov
XStream I think is exactly about it 2014-06-08 22:46 GMT+04:00 Camille Teruel : > > On 8 juin 2014, at 19:20, Garth Holland wrote: > > > The pipe operator appears in many languages (F#, Haskell, Elixir, Clojure > > (threading macro)). It's an elegant way of chaining method/function > calls in >

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Nicolas Cellier
2014-06-08 20:46 GMT+02:00 Camille Teruel : > > On 8 juin 2014, at 19:20, Garth Holland wrote: > > > The pipe operator appears in many languages (F#, Haskell, Elixir, Clojure > > (threading macro)). It's an elegant way of chaining method/function > calls in > > the presence of additional paramete

Re: [Pharo-dev] Bench comparing Pahro 1.4 and 3.0.

2014-06-08 Thread Hilaire Fernandes
Le 08/06/2014 22:02, Clément Bera a écrit : > Some collection protocols were optimized so your result makes sense. The profiles show it is faster on 1.4! > The current performance bottleneck for your application definitely comes > from the use of isKindOf: based on your profiles. inheritsFrom: i

[Pharo-dev] Access to XMLPullParser

2014-06-08 Thread Serge Stinckwich
Can someone add me to XMLPullParser: http://smalltalkhub.com/#!/~hernan/XMLPullParser There is a red test and I want to correct it. Regards, -- Serge Stinckwich UCBN & UMI UMMISCO 209 (IRD/UPMC) Every DSL ends up being Smalltalk http://www.doesnotunderstand.org/

Re: [Pharo-dev] Bench comparing Pahro 1.4 and 3.0.

2014-06-08 Thread Nicolai Hess
Hi Hilaire, I would like to take a look at this, can you provide me your current DrGeo version you are using for this. (I guess it is not http://www.squeaksource.com/DrGeoII) Nicolai 2014-06-08 22:42 GMT+02:00 Hilaire Fernandes : > Le 08/06/2014 22:02, Clément Bera a écrit : > > Some collect

Re: [Pharo-dev] Pipe operator

2014-06-08 Thread Randal L. Schwartz
> "Garth" == Garth Holland writes: Garth> The pipe operator appears in many languages (F#, Haskell, Elixir, Clojure Garth> (threading macro)). And Perl6. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 http://www.stonehenge.com/merlyn/> Perl/Unix consulting,