Re: [Pharo-users] New random generator

2015-03-20 Thread stepharo
Serge I would like to have a package with Random-Number generators with its own configuration and without the distributions. Do you plan to package them separately? Because we often need randomnumber generator alone. Stef Le 19/3/15 21:43, Serge Stinckwich a écrit : On Thu, Mar 19, 2015 at

Re: [Pharo-users] New random generator

2015-03-20 Thread stepharo
the method from l'Ecuyer is already used in the texas instruments graphic calculators. But they don't seem to have patented it (I don't know how to check that). Anyway I agree to have more RNGs which can be useful for statistics simulations or kryptography. And I would like to know how one

Re: [Pharo-users] New random generator

2015-03-20 Thread stepharo
Ok I added the two RNG in Math-Random. I cleaned also the hierarchy. - no need to have initialize as abstract to force all the subclass to define an empty method. Strange design - tab a bit the code and comments. I produced a new configuration based on SergeStinkwich 20 (which was not

Re: [Pharo-users] New random generator

2015-03-20 Thread Serge Stinckwich
On Fri, Mar 20, 2015 at 9:32 AM, stepharo wrote: > Ok I added the two RNG in Math-Random. > I cleaned also the hierarchy. > - no need to have initialize as abstract to force all the subclass to > define an empty method. Strange design > - tab a bit the code and comments. > > I produced a n

Re: [Pharo-users] New random generator

2015-03-20 Thread Werner Kassens
On 03/20/2015 09:32 AM, stepharo wrote: Now I saw that the postload invoke this method but DhbMaximumLikelihoodHistogramFit does not exist. So the postload should be removed. Hi Stephane, hi Serge, this postload was made by someone as a kind of improvised depreciation (DhbMaximumLikelihoodHist

Re: [Pharo-users] searching for protocols

2015-03-20 Thread Sean P. DeNigris
Forwarding. Apparently never made it to list... BriceG wrote > Hi > > I don't know if there is a graphical way to do it but in the play ground > you can try the following piece of code: > > > protocolName := 'as yet unclassified'. > Smalltalk allClasses select:[:class| > (class organization

[Pharo-users] ZeroConf: Download Specific Update

2015-03-20 Thread Sean P. DeNigris
Is there a way to get e.g. #40556 specifically? - Cheers, Sean -- View this message in context: http://forum.world.st/ZeroConf-Download-Specific-Update-tp4813583.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] ZeroConf: Download Specific Update

2015-03-20 Thread Peter Uhnák
This? http://files.pharo.org/image/40/ Peter On Fri, Mar 20, 2015 at 1:17 PM, Sean P. DeNigris wrote: > Is there a way to get e.g. #40556 specifically? > > > > - > Cheers, > Sean > -- > View this message in context: > http://forum.world.st/ZeroConf-Download-Specific-Update-tp4813583.html >

Re: [Pharo-users] ZeroConf: Download Specific Update

2015-03-20 Thread Marcus Denker
> On 20 Mar 2015, at 13:17, Sean P. DeNigris wrote: > > Is there a way to get e.g. #40556 specifically? > no

[Pharo-users] practices in storing users application level variables

2015-03-20 Thread Sanjay Minni
Hi What is the usual practices in storing values of variables / parameters the persist through an users usage of an application. e.g. say the user logs in and then selects a current printer, current company, accounting year and then moves between various application options and eventually logs ou

Re: [Pharo-users] practices in storing users application level variables

2015-03-20 Thread jtuc...@objektfabrik.de
Sanjay, I am not a big fan of Dictionaries for these kinds of things, but if you need "named slots" for a previously unknown list of settings, the approach you describe is perfectly okay, IMO. This approach can also be extended into a database or any other kind of storage and also stands the t

Re: [Pharo-users] practices in storing users application level variables

2015-03-20 Thread jtuc...@objektfabrik.de
Giving this another thought, you may want to think about dividing between user-specific and "global" state in general. This is not so important if you don't want to persist the data, but if you do, you can store user-specific data seperately. So this is not only helpful when multiple users can

[Pharo-users] SystemBrowser feature request / bug report

2015-03-20 Thread Sebastian Heidbrink
Hi! I think it is a mix of a feature and a bug. When ever one implements a Magritte, Moose or Morphic project the functionality to select the package list and enter/hit key "m" does not fast scroll down to those packages but rather selects the "Most Viewed Classes" entry. I propose to catch

[Pharo-users] Confusing ZeroDivide

2015-03-20 Thread webwarrior
Why this: [ 1/0 ] on: ZeroDivide do: [:ex | ex resume: 1 ]. returns 1, but this: [ 1.0/0 ] on: ZeroDivide do: [:ex | ex resume: 1 ]. hangs (causes infinite loop) ? -- View this message in context: http://forum.world.st/Confusing-ZeroDivide-tp4813627.html Sent from the Pharo Smalltalk Users mai

Re: [Pharo-users] SystemBrowser feature request / bug report

2015-03-20 Thread Ben Coman
Sounds reasonable. Actually perhaps the behaviour should be that subsequent presses of the key moves to the next match. Please log an issue at pharo.fobgugz.com with your idea. cheers -ben On Fri, Mar 20, 2015 at 11:15 PM, Sebastian Heidbrink wrote: > Hi! > > I think it is a mix of a feature

Re: [Pharo-users] SystemBrowser feature request / bug report

2015-03-20 Thread Sebastian Heidbrink
Thank you! Will do! Sebastian On 2015-03-20 9:51 AM, Ben Coman wrote: Sounds reasonable. Actually perhaps the behaviour should be that subsequent presses of the key moves to the next match. Please log an issue at pharo.fobgugz.com with your idea. cheers -ben On

[Pharo-users] Roassal2, navigate in your view with scrollbars

2015-03-20 Thread Pierre CHANSON
Hi all, new version of smooth scrollbars and pads is available, it allows you to navigate with scalability in the view, check this out: https://vimeo.com/122758568 try out: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | b | b := RTMondrian new. b shape rectangle withBorder;

[Pharo-users] Pharo-Launcher Windows 8.1

2015-03-20 Thread Sebastian Heidbrink
Hi, I recently mentioned issues with the installation of the pharo-launcher on Windows 8.1 Turned out I just needed to download the PharoV30.sources file and place into the installation folder. Now everything seems fine. Is this also a topic for the pharo bug list, or is there another plac

Re: [Pharo-users] New random generator

2015-03-20 Thread stepharo
Le 20/3/15 12:29, Werner Kassens a écrit : On 03/20/2015 09:32 AM, stepharo wrote: Now I saw that the postload invoke this method but DhbMaximumLikelihoodHistogramFit does not exist. So the postload should be removed. Hi Stephane, hi Serge, this postload was made by someone as a kind of impr

Re: [Pharo-users] Fwd: Re: [ANN] BioSmalltalk

2015-03-20 Thread stepharo
How do you manage your bugs now? Le 20/3/15 05:46, Hernán Morales Durand a écrit : Ok, done http://biosmalltalk.blogspot.com/2015/03/biosmalltalk-now-available-through.html Cheers, Hernán 2015-03-19 9:37 GMT-03:00 Esteban Lorenzano >: On 19 Mar 2015, at 13

Re: [Pharo-users] Pharo-Launcher Windows 8.1

2015-03-20 Thread kilon alios
there is also an options in settings that downloads and install sources for you automagically. This is the right place to report issues and if you are 100% sure its a bug you can report it also in the pharo fogbuz On Fri, Mar 20, 2015 at 7:04 PM, Sebastian Heidbrink wrote: > Hi, > > I recently

Re: [Pharo-users] Roassal2, navigate in your view with scrollbars

2015-03-20 Thread Alexandre Bergel
Really cool video! Thanks Pierre Alexandre > On Mar 20, 2015, at 2:02 PM, Pierre CHANSON wrote: > > Hi all, > > new version of smooth scrollbars and pads is available, it allows you to > navigate with scalability in the view, check this out: > > https://vimeo.com/122758568 > > try out: > -

Re: [Pharo-users] Fwd: Re: [ANN] BioSmalltalk

2015-03-20 Thread Hernán Morales Durand
https://github.com/hernanmd/BioSmalltalk/issues Hernán 2015-03-20 14:38 GMT-03:00 stepharo : > How do you manage your bugs now? > > Le 20/3/15 05:46, Hernán Morales Durand a écrit : > > Ok, done > > > http://biosmalltalk.blogspot.com/2015/03/biosmalltalk-now-available-through.html > > Cheers,

Re: [Pharo-users] Users of Versionner?

2015-03-20 Thread Juan Ignacio Vaccarezza
I use it for my rockola project. Im learning all the configuration stuff, very useful tool On Fri, Mar 20, 2015 at 2:01 AM, Hernán Morales Durand < hernan.mora...@gmail.com> wrote: > Same here. > > > 2015-03-18 14:01 GMT-03:00 stepharo : > > I use it but I often code by hand the configurations

Re: [Pharo-users] Confusing ZeroDivide

2015-03-20 Thread Nicolai Hess
2015-03-20 16:56 GMT+01:00 webwarrior : > Why this: > > [ 1/0 ] on: ZeroDivide do: [:ex | ex resume: 1 ]. > > returns 1, but this: > > [ 1.0/0 ] on: ZeroDivide do: [:ex | ex resume: 1 ]. > > hangs (causes infinite loop) ? > -- > View this message in context: Confusing Z

[Pharo-users] The Grapher charting engine

2015-03-20 Thread Alexandre Bergel
Dear all, As many of you know, Grapher is a über-cool charting engine, part of Roassal. For people who do not know what Grapher is, here is a (compelling we hope) example: Which is obtained by the following script: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | b colors points ds pts dec lb | b := RTGrapher n

Re: [Pharo-users] ZeroConf: Download Specific Update

2015-03-20 Thread Marcus Denker
> On 20 Mar 2015, at 13:58, Marcus Denker wrote: > > >> On 20 Mar 2015, at 13:17, Sean P. DeNigris wrote: >> >> Is there a way to get e.g. #40556 specifically? >> > no You can just 1) use get to get the lates 2) do anither wget (or curl) to download the image you want from files.pharo.or

Re: [Pharo-users] Pharo-Launcher Windows 8.1

2015-03-20 Thread Ben Coman
> > On Fri, Mar 20, 2015 at 7:04 PM, Sebastian Heidbrink > wrote: > >> Hi, >> >> I recently mentioned issues with the installation of the pharo-launcher >> on Windows 8.1 >> >> Turned out I just needed to download the PharoV30.sources file and place >> into the installation folder. >> >> Now every

Re: [Pharo-users] Search and replace source code

2015-03-20 Thread Laura Risani
Thank you all, your answers allowed me to solve my problem. Also very interesting tools! On Thu, Mar 19, 2015 at 3:19 PM, Thierry Goubier wrote: > Le 19/03/2015 19:05, Sean P. DeNigris a écrit : > >> Thierry Goubier wrote >> >>> you can use the parse tree rewriter of the Refactoring Browser set

Re: [Pharo-users] Logic in Pharo ?

2015-03-20 Thread Bernardo Ezequiel Contreras
here's another one http://www.smalltalkhub.com/mc/goonsh/Prolog/main works in pharo 2.0. I think they are copies of AOKI Atsushi's version. On Fri, Mar 20, 2015 at 1:58 AM, Hernán Morales Durand < hernan.mora...@gmail.com> wrote: > I don't know Prolog, but I have some links you may like: > > h