Re: [Pharo-dev] Reading validation reports

2015-10-22 Thread Marcus Denker
> On 22 Oct 2015, at 19:45, Stephan Eggermont wrote: > > At the moment, most of the isues I provide a slice for time out in > validation. What is exactly tested in the validation process? It runs twice the tests (first to get false positives) and some Lint rules. > Sometimes nothing is visibl

Re: [Pharo-dev] powerSet

2015-10-22 Thread vincent.blondeau
Hi, I propose a simpler implementation: 4 in: [ :e | (1 to: e) combinations ] Vincent Le 2015-10-22 23:25, Ferlicot D. Cyril a écrit : Le 22/10/2015 22:58, stepharo a écrit : Hi I was programming an exercise with one of my son (well in Python arghh) and I end it up doing it in Pharo

Re: [Pharo-dev] powerSet

2015-10-22 Thread Ferlicot D. Cyril
Le 22/10/2015 22:58, stepharo a écrit : > Hi > > I was programming an exercise with one of my son (well in Python > arghh) > and I end it up doing it in Pharo (I'm save now). > > The idea was to write one function that computes the powerset > > powerset(4) > = a Set(a Set(1) a Set(1

Re: [Pharo-dev] [Vm-dev] [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread stepharo
In SciSmalltalk we added some more random generators but people should have a look Stef Le 22/10/15 18:21, Nicolas Cellier a écrit : For these reasons, I often prefer the Marsaglia's KISS 2015-10-22 17:57 GMT+02:00 Henrik Johansen mailto:henrik.s.johan...@veloxit.no>>: > On 22 O

Re: [Pharo-dev] [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread stepharo
Yes I will add to our immense todo :) Stef Le 22/10/15 19:17, Levente Uzonyi a écrit : This should be promoted more vigorously. Levente On Thu, 22 Oct 2015, monty wrote: This gives you threading: http://lists.gforge.inria.fr/pipermail/pharo-bugtracker/

Re: [Pharo-dev] editing incomplete snippet bring RB DNU and this is annoying.

2015-10-22 Thread stepharo
Ok it was an image of a month or more and now it works! Great feeling. Stef Le 22/10/15 22:37, Nicolai Hess a écrit : 2015-10-22 22:14 GMT+02:00 stepharo >: Hi guys the new syntax hilighter is breaking the fun. | s s := Set new. try to add the

[Pharo-dev] powerSet

2015-10-22 Thread stepharo
Hi I was programming an exercise with one of my son (well in Python arghh) and I end it up doing it in Pharo (I'm save now). The idea was to write one function that computes the powerset powerset(4) = a Set(a Set(1) a Set(1 2) a Set(3) a Set(2) a Set(1 3) a Set(2 3) a Set(1 2 3)

Re: [Pharo-dev] editing incomplete snippet bring RB DNU and this is annoying.

2015-10-22 Thread stepharo
Lt me check with the latest one. Le 22/10/15 22:37, Nicolai Hess a écrit : 2015-10-22 22:14 GMT+02:00 stepharo >: Hi guys the new syntax hilighter is breaking the fun. | s s := Set new. try to add the missing | What's the problem ? I can ad

Re: [Pharo-dev] ConfigurationOf and Git

2015-10-22 Thread Dale Henrichs
On 10/22/2015 05:31 AM, Ben Coman wrote: On Thu, Oct 22, 2015 at 1:30 AM, Dale Henrichs wrote: On 10/21/2015 05:55 AM, Ben Coman wrote: On Wed, Oct 21, 2015 at 2:49 AM, Dale Henrichs wrote: Here's the documentation for the Metacello github:// repository description[1]. ... In recent ve

Re: [Pharo-dev] editing incomplete snippet bring RB DNU and this is annoying.

2015-10-22 Thread Nicolai Hess
2015-10-22 22:14 GMT+02:00 stepharo : > Hi guys > > the new syntax hilighter is breaking the fun. > > | s > s := Set new. > > try to add the missing | > What's the problem ? I can add the missing | What pharo version do you use? > > Stef > >

[Pharo-dev] editing incomplete snippet bring RB DNU and this is annoying.

2015-10-22 Thread stepharo
Hi guys the new syntax hilighter is breaking the fun. | s s := Set new. try to add the missing | Stef

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Thierry Goubier
Le 22/10/2015 21:00, Sven Van Caekenberghe a écrit : Git is a DISTRIBUTED source code management system, it does not really live on one server. Technically, your and everybody else's local copy contains everything. You can move it around at will. The github functionality on top of that *is* rest

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Sven Van Caekenberghe
Git is a DISTRIBUTED source code management system, it does not really live on one server. Technically, your and everybody else's local copy contains everything. You can move it around at will. The github functionality on top of that *is* restricted to their site, although there are pretty good

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Alexandre Bergel
I agree with you. Github should definitely not be the unique place for code. But we should be able to have code there at a low cost. Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On Oct

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Alexandre Bergel
> On Oct 22, 2015, at 12:09 PM, monty wrote: > > SmalltalkHub looks great but lacks the features of SqueakSource3. It would be > great if we could switch the backend to SS3 while keeping the look of STHub. Having a reliable solution on GitHub will be even better in my opinion. Moreover, it wil

[Pharo-dev] Replacing FogBugz with an open source alternative. was: Re: [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread Paul DeBruicker
Gitlab.com has an import tool for fogbugz issues. Their hosted service is https://about.gitlab.com/gitlab-com/ I'm not sure of the quality of their issue tracker but it could be a way out. The gitlab source issue tracker is here: https://gitlab.com/gitlab-org/gitlab-ce/issues to see what its l

[Pharo-dev] dear contributor

2015-10-22 Thread stepharo
please sign the license agreeement and send us a little picture for the web site ... Stef

[Pharo-dev] Reading validation reports

2015-10-22 Thread Stephan Eggermont
At the moment, most of the isues I provide a slice for time out in validation. What is exactly tested in the validation process? Sometimes nothing is visible in the report, sometimes there are lots of deprecation warnings and other problems that look unrelated to the slice. When should they be

Re: [Pharo-dev] [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread Levente Uzonyi
This should be promoted more vigorously. Levente On Thu, 22 Oct 2015, monty wrote: This gives you threading: http://lists.gforge.inria.fr/pipermail/pharo-bugtracker/  

Re: [Pharo-dev] [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread Levente Uzonyi
On Thu, 22 Oct 2015, Henrik Johansen wrote: On 22 Oct 2015, at 5:35 , Levente Uzonyi wrote: On Thu, 22 Oct 2015, Tobias Pape wrote: Hi Marcus On 22.10.2015, at 16:44, Marcus Denker wrote: On 22 Oct 2015, at 16:13, Marcus Denker wrote:

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Esteban A. Maringolo
You're right. In the 80's I was learning to write... However, there weren't public hosted repositories, and if there was; I bet they didn't have 2 million of them, nor even two orders of magnitude less. Regards! Esteban A. Maringolo 2015-10-22 13:28 GMT-03:00 Nicolas Cellier : > In the 80s? yo

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Nicolas Cellier
In the 80s? you probably mean SCCS... 2015-10-22 18:01 GMT+02:00 Esteban A. Maringolo : > 2015-10-22 12:57 GMT-03:00 Andreas Wacknitz : > > Am 22.10.15 um 17:30 schrieb monty: > >> > >> Github is a private VC funded company that we don't own that tomorrow > >> could go away or adopt policies harm

Re: [Pharo-dev] [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread Tobias Pape
Hi Marcus On 22.10.2015, at 16:44, Marcus Denker wrote: >> On 22 Oct 2015, at 16:13, Marcus Denker wrote: >>> >>> Thats what I thought. >>> Probably we want to present this (Mersenne PRNG + new UUID gen) to >>> the Pharo core developers (cc) so that we can just remove the UUID plugin >>>

Re: [Pharo-dev] [Vm-dev] [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread Nicolas Cellier
For these reasons, I often prefer the Marsaglia's KISS 2015-10-22 17:57 GMT+02:00 Henrik Johansen : > > > On 22 Oct 2015, at 2:49 , Tobias Pape wrote: > > > > > > > > On 22.10.2015, at 14:37, David T. Lewis wrote: > > > >> On Thu, Oct 22, 2015 at 06:28:09AM +, comm...@source.squeak.org > wr

Re: [Pharo-dev] [Pharo-users] [ANN] The next Pharo Sprints at Lille

2015-10-22 Thread Alexandre Bergel
We will also be on Slack Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On Oct 21, 2015, at 8:35 PM, Juraj Kubelka wrote: > > Hi, > > we are pleased to announce that University of Chil

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Esteban A. Maringolo
2015-10-22 12:57 GMT-03:00 Andreas Wacknitz : > Am 22.10.15 um 17:30 schrieb monty: >> >> Github is a private VC funded company that we don't own that tomorrow >> could go away or adopt policies harmful to us. If Ruby can have rubygems.org >> (and if Steph can continue to get funding from INRIA/ESU

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Esteban A. Maringolo
I don't want to speak for him, but I think he meant Github. If what you want is visibility and relevance there is no OTHER place to get it. It's not only about features (I use Bitbucket for my private projects), it's about marketing, it about appearing in reports like this: http://githut.info/ A

Re: [Pharo-dev] Is "Enterprise Pharo" available in PDF?

2015-10-22 Thread Richard Sargent
Thanks! -- View this message in context: http://forum.world.st/Is-Enterprise-Pharo-available-in-PDF-tp4857121p4857380.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Andreas Wacknitz
Am 22.10.15 um 17:30 schrieb monty: Github is a private VC funded company that we don't own that tomorrow could go away or adopt policies harmful to us. If Ruby can have rubygems.org (and if Steph can continue to get funding from INRIA/ESUG), then why can't we have something like STHub that's

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread monty
+1 > Sent: Thursday, October 22, 2015 at 11:46 AM > From: "Serge Stinckwich" > To: "Pharo Development List" > Subject: Re: [Pharo-dev] Smalltalkhub projects not indexed? > > I guess that Alexandre want to say git and not github. > > What is important is to have git support on Pharo in the futur

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Serge Stinckwich
I guess that Alexandre want to say git and not github. What is important is to have git support on Pharo in the future so we can switch from github to bitbucket or any git hosting solution. On Thu, Oct 22, 2015 at 5:30 PM, monty wrote: > Github is a private VC funded company that we don't own t

Re: [Pharo-dev] [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread monty
This gives you threading: http://lists.gforge.inria.fr/pipermail/pharo-bugtracker/  

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Esteban A. Maringolo
2015-10-22 12:30 GMT-03:00 monty : > Github is a private VC funded company that we don't own that tomorrow could > go away or adopt policies harmful to us. If Ruby can have rubygems.org (and > if Steph can continue to get funding from INRIA/ESUG), then why can't we have > something like STHub th

Re: [Pharo-dev] [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread Henrik Johansen
> On 22 Oct 2015, at 5:35 , Levente Uzonyi wrote: > > On Thu, 22 Oct 2015, Tobias Pape wrote: > >> Hi Marcus >> On 22.10.2015, at 16:44, Marcus Denker wrote: >> On 22 Oct 2015, at 16:13, Marcus Denker wrote: >> > > Thats what I thought. > Probably we want to present th

Re: [Pharo-dev] [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread Levente Uzonyi
On Thu, 22 Oct 2015, Tobias Pape wrote: Hi Marcus On 22.10.2015, at 16:44, Marcus Denker wrote: On 22 Oct 2015, at 16:13, Marcus Denker wrote: Thats what I thought. Probably we want to present this (Mersenne PRNG + new UUID gen) to the Pharo core developers (cc) so that we can just remov

Re: [Pharo-dev] [squeak-dev] The Trunk: Network-topa.166.mcz

2015-10-22 Thread Marcus Denker
> On 22 Oct 2015, at 17:26, Tobias Pape wrote: > > Hi Marcus > On 22.10.2015, at 16:44, Marcus Denker wrote: > >>> On 22 Oct 2015, at 16:13, Marcus Denker wrote: > Thats what I thought. Probably we want to present this (Mersenne PRNG + new UUID gen) to the Pharo core

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread Esteban A. Maringolo
2015-10-22 12:19 GMT-03:00 Alexandre Bergel : > On Oct 22, 2015, at 12:09 PM, monty wrote: > > SmalltalkHub looks great but lacks the features of SqueakSource3. It would > be great if we could switch the backend to SS3 while keeping the look of > STHub. > > > Having a reliable solution on GitHub w

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread monty
Github is a private VC funded company that we don't own that tomorrow could go away or adopt policies harmful to us. If Ruby can have rubygems.org (and if Steph can continue to get funding from INRIA/ESUG), then why can't we have something like STHub that's ours? Sent: Thursday, October 22, 201

Re: [Pharo-dev] MethodClassifier pragmas?

2015-10-22 Thread Stephan Eggermont
Should any of these be added? methods := CompiledMethod allInstances select: [ :each | each pragmas size >0 ]. pragmas := methods flatCollectAsSet: [ :each | each pragmas collect: [ :pragma | pragma keyword ] ]. allPragmaProtocols := Dictionary new. pragmas do: [ :pragma | allPragmaPr

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread monty
SmalltalkHub looks great but lacks the features of SqueakSource3. It would be great if we could switch the backend to SS3 while keeping the look of STHub. Amber is nice, but a single page JS app that uses infinite scrolling everywhere is just not a good fit for this kind of site, because search

Re: [Pharo-dev] How to get Pharo into Ubuntu Software center

2015-10-22 Thread Damien Cassou
Peter Uhnák writes: > I don't use Ubuntu, but I do use Debian and I see at least these problems > > 1) Can the AptUrl ( https://wiki.ubuntu.com/AptUrl ) add a PPA repository? > From the link it seems like it can only enable/refresh them? > 2) This works out of the box only for Firefox (so you st

Re: [Pharo-dev] binary serialization

2015-10-22 Thread Robert Withers
On 10/22/2015 06:19 AM, stepharo wrote: > > Which kind of migration example you have in mind that would not be > supported? An example would help. Well, my pics will demonstrate. I am interested in doing more than mappping ivars or a class rename. I want to do a total substitution, then a f

Re: [Pharo-dev] ConfigurationOf and Git

2015-10-22 Thread Ben Coman
On Thu, Oct 22, 2015 at 1:30 AM, Dale Henrichs wrote: > > > On 10/21/2015 05:55 AM, Ben Coman wrote: > > > > On Wed, Oct 21, 2015 at 2:49 AM, Dale Henrichs > wrote: >> >> Here's the documentation for the Metacello github:// repository >> description[1]. ... >> >> In recent versions of Metacello I

Re: [Pharo-dev] binary serialization

2015-10-22 Thread stepharo
> > Which kind of migration example you have in mind that would not be > supported? An example would help. Well, my pics will demonstrate. I am interested in doing more than mappping ivars or a class rename. I want to do a total substitution, then a further substitution on the receiving, impor

Re: [Pharo-dev] How to get Pharo into Ubuntu Software center

2015-10-22 Thread Peter Uhnák
I don't use Ubuntu, but I do use Debian and I see at least these problems 1) Can the AptUrl ( https://wiki.ubuntu.com/AptUrl ) add a PPA repository? >From the link it seems like it can only enable/refresh them? 2) This works out of the box only for Firefox (so you still need instructions for Chrom

[Pharo-dev] MethodClassifier pragmas?

2015-10-22 Thread Stephan Eggermont
I've committed a version of MethodClassifier that can classify based on pragmas. I've only added ->#examples Which ones should be added? Stephan

[Pharo-dev] How to get Pharo into Ubuntu Software center

2015-10-22 Thread Torsten Bergmann
Hi, in Ubuntu one can click on a link with apt:// protocol to easily install a piece of software right from a webpage: Install Now It just opens a link to the Software center with the software preselected. Unfortunately Pharo is not part of the Software center :( Can we improve this situat

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread stepharo
So the #! URL syntax was especially geared for sites that got the fundamental web development best practices horribly wrong, and gave them a lifeline to getting their content seen by Googlebot. And today, this emergency rescue package seems to be regarded as the One True Way of web developme

Re: [Pharo-dev] FastTable question

2015-10-22 Thread Thierry Goubier
2015-10-22 8:54 GMT+02:00 Esteban Lorenzano : > Hi, > > Sorry late response but yesterday I was not around. > > > > On 20 Oct 2015, at 18:42, stepharo wrote: > > > > for the mooc videos I must use larger fonts. > > So I ended up hacking and changing the hardcoded number in default > > > > default

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

2015-10-22 Thread GitHub
Branch: refs/tags/50398 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 696b64: 50398

2015-10-22 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: 696b64506d81e4e4d4cfbc6b5ec018847eac34d5 https://github.com/pharo-project/pharo-core/commit/696b64506d81e4e4d4cfbc6b5ec018847eac34d5 Author: Jenkins Build Server Date: 2015-10-22 (Thu, 22 Oct 2015

Re: [Pharo-dev] Smalltalkhub projects not indexed?

2015-10-22 Thread stepharo
sadly enough... Le 19/10/15 16:27, Levente Uzonyi a écrit : This is because for some unknown reason the creators of Smalltalkhub decided to use hashbang urls at a time when it was already considered bad practice to do so[1]. Crawlers can't crawl such pages, unless there are non-hashbang versio

Re: [Pharo-dev] FastTable question

2015-10-22 Thread stepharo
- when I read the code of FTmorph I was thinking that a lot of it has not much to do with UI but looks like a model :). this is not a question :) I know it was more a general feeling that I wanted to share with you in the case of rowHeight, it determines how the row looks (and not what it

Re: [Pharo-dev] FastTable question

2015-10-22 Thread Cyril Ferlicot
For now On Thu, Oct 22, 2015 at 8:57 AM, stepharo wrote: > Excellent > > How did you do it? > I removed the hardcode value of the default row height in order use the size of the default font. "StandardFont defaultfont pixelSize" or something like that. (Can't check now). But as Esteban said this

Re: [Pharo-dev] FastTable question

2015-10-22 Thread Cyril Ferlicot
We will at least keep it for Synectique in order to have a widget with an action button for now. I don't think you want an action button to be integrated inside the FTTableMorph ? When we will integrate the next configuration of FT into Pharo I will remove it from the FastTable package. On Thu,