Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Marcus Denker
On 06 Jul 2015, at 11:50, Alexandre Bergel alexandre.ber...@me.com wrote: Hi! Is there a way to get the mbox for this mailing list. This file is supposed to contains all the mails that have been sent. I would like to try to do some mail mining… The archive is here:

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Sean P. DeNigris
archiveUrl := 'http://lists.pharo.org/pipermail/pharo-dev_lists.pharo.org' asUrl. archive := Soup fromUrl: archiveUrl asString. monthlyZipLinks := archive findAllTags: [ :t | t name = 'a' and: [ (t attributeAt: 'href') endsWith: 'gz' ] ]. monthlyZipUrls := monthlyZipLinks collect: [ :t |

[Pharo-dev] Control Flow Graph for Smalltalk

2015-07-06 Thread Nevena Milojkovic
Hi all, Can anybody point me towards some tool/paper with the possibility to construct Control Flow Graph for Smalltalk? Cheers, Nevena Nevena Milojkovic Research assistant Software Composition Group Institute of Computer Science and Applied Mathematics University of Bern email:

[Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Alexandre Bergel
Hi! Is there a way to get the mbox for this mailing list. This file is supposed to contains all the mails that have been sent. I would like to try to do some mail mining… Cheers, Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Sean P. DeNigris
Sean P. DeNigris wrote The archives are straight text files Oh, I forgot one thing... Unix... why text and files?! why?! - Cheers, Sean -- View this message in context: http://forum.world.st/Getting-the-mbox-file-for-this-mailing-list-tp4835958p4835978.html Sent from the Pharo

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Alexandre Bergel
Thanks! Alexandre On Jul 6, 2015, at 11:53 AM, Marcus Denker marcus.den...@inria.fr wrote: On 06 Jul 2015, at 11:50, Alexandre Bergel alexandre.ber...@me.com wrote: Hi! Is there a way to get the mbox for this mailing list. This file is supposed to contains all the mails that have

[Pharo-dev] [pharo-project/pharo-core] 7c2f68: 50154

2015-07-06 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: 7c2f68cf451a0be666cc762a811a466c5eca1c87 https://github.com/pharo-project/pharo-core/commit/7c2f68cf451a0be666cc762a811a466c5eca1c87 Author: Jenkins Build Server bo...@pharo-project.org Date:

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

2015-07-06 Thread GitHub
Branch: refs/tags/50154 Home: https://github.com/pharo-project/pharo-core

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

2015-07-06 Thread GitHub
Branch: refs/tags/50153 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] fef56f: 50153

2015-07-06 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: fef56f26f5e9d404f61254ef12c84fa594b2f8b1 https://github.com/pharo-project/pharo-core/commit/fef56f26f5e9d404f61254ef12c84fa594b2f8b1 Author: Jenkins Build Server bo...@pharo-project.org Date:

Re: [Pharo-dev] Music in Pharo

2015-07-06 Thread Esteban Lorenzano
On 06 Jul 2015, at 05:14, Sean P. DeNigris s...@clipperadams.com wrote: Clément Bera-4 wrote I tried your code but the primitive #primFileValidMPEG: fails and Pharo doesn't read the mp3. Same for me on Mac 10.9.5. I'm using the VM that comes with Launcher. Clément Bera-4 wrote Is

Re: [Pharo-dev] Control Flow Graph for Smalltalk

2015-07-06 Thread Nicolai Hess
2015-07-06 13:21 GMT+02:00 Nevena Milojkovic nev...@iam.unibe.ch: Hi all, Can anybody point me towards some tool/paper with the possibility to construct Control Flow Graph for Smalltalk? There was a tool called compass. AFAIR it is a debugger that stores the execution path. (don't know

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Sean P. DeNigris
Peter Uhnák wrote Actually they are valid mbox files. (At least my mutt opened it just fine.) Ah! Thanks :) The .txt extension threw me off. Yes, Mac Mail imports them fine as well - Cheers, Sean -- View this message in context:

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Sean P. DeNigris
Peter Uhnák wrote Not fan of unix I see. :) I've been spoiled by living objects. For me, dealing with text and files is like writing in assembler :) - Cheers, Sean -- View this message in context: http://forum.world.st/Getting-the-mbox-file-for-this-mailing-list-tp4835958p4835998.html

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Peter Uhnák
The archives are straight text files, in which the individual messages are separated by a seemingly random number of LFs. Actually they are valid mbox files. (At least my mutt opened it just fine.) The separator is From line, not newlines.

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Peter Uhnák
Oh, I forgot one thing... Unix... why text and files?! why?! Not fan of unix I see. :)

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Thierry Goubier
2015-07-06 14:29 GMT+02:00 Peter Uhnák i.uh...@gmail.com: The archives are straight text files, in which the individual messages are separated by a seemingly random number of LFs. Actually they are valid mbox files. (At least my mutt opened it just fine.) The separator is From line, not

Re: [Pharo-dev] Control Flow Graph for Smalltalk

2015-07-06 Thread Clément Bera
I don't think there is such a tool or paper. I built such a tool for a compiler IR but I don't think it will fit your needs as I show strange IR nodes with compiler related information (it doesn't look like the original smalltalk code at all). The visualization is done with Roassal. I think if

Re: [Pharo-dev] Musings (Was: NAtiveBoost error)

2015-07-06 Thread Sven Van Caekenberghe
On 06 Jul 2015, at 15:16, Kjell Godo squeakl...@gmail.com wrote: Thank you for the detailed reply Andreas Are there any Smalltalk packages implementing Category Theory based functional programming constructs for function composition like functors , applicatives , monads ,

Re: [Pharo-dev] Control Flow Graph for Smalltalk

2015-07-06 Thread Francisco Garau
Hi Nevena To compute the control flow graph you would need to do concrete type inference. Search for Ole Agesen PhD thesis to have an idea what's that about. I've started a smalltalk implementation of his ideas in 2001 but never got beyond the proof of concept stage. I can forward the

Re: [Pharo-dev] Musings (Was: NAtiveBoost error)

2015-07-06 Thread Eliot Miranda
Hi Kjell, On Jul 6, 2015, at 6:16 AM, Kjell Godo squeakl...@gmail.com wrote: Thank you for the detailed reply Andreas Are there any Smalltalk packages implementing Category Theory based functional programming constructs for function composition like functors , applicatives

Re: [Pharo-dev] Musings (Was: NAtiveBoost error)

2015-07-06 Thread Kjell Godo
i cannot seem to find this generator package on SmalltalkHub and i wonder where it could be On Monday, July 6, 2015, Kjell Godo squeakl...@gmail.com wrote: Object Orientation seems to freak out most Haskell programmers. They are opposed to it. They have never tried Smalltalk. They see

Re: [Pharo-dev] Musings (Was: NAtiveBoost error)

2015-07-06 Thread Kjell Godo
Object Orientation seems to freak out most Haskell programmers. They are opposed to it. They have never tried Smalltalk. They see OOP as bad practice in the languages they have seen it in and say it promotes chaotic program behaviour and unmaintainable software that is brittle and full of

Re: [Pharo-dev] GitFileTree dependencies

2015-07-06 Thread Peter Uhnák
On Mon, Jul 6, 2015 at 10:44 PM, Thierry Goubier thierry.goub...@gmail.com wrote: I may look at one point into adding support for pseudo-tty. Does anybody knows if pseudo-tty are available with Microsoft Windows? Maybe PuTTY? But I've only ever used that for ssh, so I don't know if it has

Re: [Pharo-dev] GitFileTree dependencies

2015-07-06 Thread Thierry Goubier
Le 05/07/2015 12:45, stepharo a écrit : thanks! CommandShell has been updated. I may look at one point into adding support for pseudo-tty. Does anybody knows if pseudo-tty are available with Microsoft Windows? Thierry Le 27/6/15 00:27, Thierry Goubier a écrit : GitFileTree does not

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Sven Van Caekenberghe
With ZnHeaders and ZnMimePart you should get a long way in parsing mail boxes. I believe some people have already experimented with this, but I am not sure and I forgot. On 06 Jul 2015, at 16:11, Dmitri Zagidulin dmi...@zagidulin.net wrote: I've been doing some mailing list analysis

Re: [Pharo-dev] Control Flow Graph for Smalltalk

2015-07-06 Thread Frank Shearar
Olin Shivers' k-CFA stuff also computes call flow graphs (and can infer types, and can determine when garbage can be released). A starting point might be here: http://matt.might.net/articles/implementation-of-kcfa-and-0cfa/ frank On 6 July 2015 at 14:30, Francisco Garau

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread stepharo
Alex you should ask alberto because may be he has some libraries that we could port from VW. Stef Le 6/7/15 11:50, Alexandre Bergel a écrit : Hi! Is there a way to get the mbox for this mailing list. This file is supposed to contains all the mails that have been sent. I would like to try

Re: [Pharo-dev] clean up the bugtracker - a little bit

2015-07-06 Thread stepharo
I would say it more like that: **THANK** :) Le 6/7/15 21:41, Tudor Girba a écrit : Thank you! Doru On Mon, Jul 6, 2015 at 7:16 PM, Nicolai Hess nicolaih...@web.de mailto:nicolaih...@web.de wrote: Some of this issues aren't reproducible, some may be fixed by other changes, or just

Re: [Pharo-dev] Control Flow Graph for Smalltalk

2015-07-06 Thread stepharo
I have the code of lex spoon (chuck) based on Olin stuff. If you are interested to see what you can do tiwh it. Le 6/7/15 17:42, Frank Shearar a écrit : Olin Shivers' k-CFA stuff also computes call flow graphs (and can infer types, and can determine when garbage can be released). A starting

Re: [Pharo-dev] WhatsUp from: 2015-07-06 until: 2015-07-19

2015-07-06 Thread stepharo
Hi! We're sending this automatic email twice a month, to give the community an opportunity to easily know what's happening and to coordinate efforts. Just answer informally, and feel free to spawn discussions thereafter! ### Here's what I've been up to since the last WhatsUp: - Gave a

[Pharo-dev] clean up the bugtracker - a little bit

2015-07-06 Thread Nicolai Hess
Some of this issues aren't reproducible, some may be fixed by other changes, or just invalid (works as designed). I'll close this issues sooon! If you know one of them and don't think they should be closed, please comment on the bugtracker 11332 https://pharo.fogbugz.com/default.asp?11332 There

Re: [Pharo-dev] some questions about current GToolkit issues

2015-07-06 Thread Nicolai Hess
2015-07-04 7:58 GMT+02:00 Tudor Girba tu...@tudorgirba.com: Hi, When I said that the goal for the new inspector is Pharo 6, I meant Pharo 5 - at least as an alternative to the existing one. Cheers, Doru On Sat, Jul 4, 2015 at 7:31 AM, Tudor Girba tu...@tudorgirba.com wrote: Hi

Re: [Pharo-dev] some questions about current GToolkit issues

2015-07-06 Thread Tudor Girba
Thanks for pinging me and for the patience. I commented on all these issues. Cheers, Doru On Mon, Jul 6, 2015 at 7:08 PM, Nicolai Hess nicolaih...@web.de wrote: 2015-07-04 7:58 GMT+02:00 Tudor Girba tu...@tudorgirba.com: Hi, When I said that the goal for the new inspector is Pharo 6, I

Re: [Pharo-dev] clean up the bugtracker - a little bit

2015-07-06 Thread Tudor Girba
Thank you! Doru On Mon, Jul 6, 2015 at 7:16 PM, Nicolai Hess nicolaih...@web.de wrote: Some of this issues aren't reproducible, some may be fixed by other changes, or just invalid (works as designed). I'll close this issues sooon! If you know one of them and don't think they should be

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Paul DeBruicker
I ported some code that does a good job of extracting the interesting parts from an email reply: http://smalltalkhub.com/#!/~pdebruic/EmailReplyParser It has examples and can parse raw mails and text only or multipart emails. Its based on what github uses

Re: [Pharo-dev] GitFileTree dependencies

2015-07-06 Thread David T. Lewis
On Mon, Jul 06, 2015 at 11:03:06PM +0200, Peter Uhn??k wrote: On Mon, Jul 6, 2015 at 10:44 PM, Thierry Goubier thierry.goub...@gmail.com wrote: I may look at one point into adding support for pseudo-tty. Does anybody knows if pseudo-tty are available with Microsoft Windows? I don't

[Pharo-dev] Pharo sprint Moose dojo this Friday

2015-07-06 Thread Jean-Christophe Bach
Hello Pharoers, We propose a Pharo sprint / Moose dojo this Friday, 10th July, starting at 10:00am. (Local Time Lille). It will be at the Inria Lille, Building B, third floor (RMoD offices). Remotely, you can join us on the official IRC channel #pharo on irc.freenode.net server. During the

Re: [Pharo-dev] Getting the mbox file for this mailing list?

2015-07-06 Thread Dmitri Zagidulin
Sven - thanks! I'll try those. Oh, and as far as having to log in first, apparently you can pass in your username and password as a part of the url. So, the generic template would be: ' http://www.example.com/mailman/private/LIST.mbox/LIST.mbox?username=Upassword=P ' On Mon, Jul 6, 2015 at

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

2015-07-06 Thread GitHub
Branch: refs/tags/50155 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] d2393b: 50155

2015-07-06 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: d2393b18d36f124692a5d4d149d723877f08f74a https://github.com/pharo-project/pharo-core/commit/d2393b18d36f124692a5d4d149d723877f08f74a Author: Jenkins Build Server bo...@pharo-project.org Date:

Re: [Pharo-dev] Musings (Was: NAtiveBoost error)

2015-07-06 Thread Igor Stasenko
Haskell fits well for those, who wants a proof instead of solution. -- Best regards, Igor Stasenko.