Re: [Pharo-dev] [Vm-dev] Re: Status of Pharo VM for FreeBSD

2015-04-05 Thread Andreas Wacknitz
Am 03.04.15 17:31, schrieb Esteban Lorenzano: I have more questions but I am reluctant to disturb you further as you must be quite busy atm. ask, I will answer when I can :) Hi Esteban, I am trying to understand the rationale behind PharoVMBuilder>>buildUnix32 (and similar methods like

Re: [Pharo-dev] Downloading the latest 40 Image -> Error

2015-04-05 Thread Esteban Lorenzano
has to be something with the cache service, because it works fine for me. Esteban > On 06 Apr 2015, at 06:38, Hernán Morales Durand > wrote: > > Reproduced with Windows and CentOS 7. Image ZIP downloads but it seems > corrupt? > > $ md5sum image.zip > 7ff5e1cbdd434a1194b4777056005143 *image.

Re: [Pharo-dev] Spotter

2015-04-05 Thread Esteban Lorenzano
> On 05 Apr 2015, at 17:37, stepharo wrote: > > aliaksei > > what would be nice is that each time we click on a button or press a command > key > you emit a growl notification with the description. for debug, I suppose? because otherwise is too much pollution… tooltips are created for that a

Re: [Pharo-dev] New Pull Request for UpdatedPharoByExample

2015-04-05 Thread kilon alios
no, as I suspected I have forgot to change from my old email to my new one. Should work now. On Mon, Apr 6, 2015 at 2:17 AM, Dmitri Zagidulin wrote: > You might have to click on the Watch button on the repo. > > > On Sunday, April 5, 2015, kilon alios wrote: > >> Strangely enough it does not no

Re: [Pharo-dev] Magritte = Auto-GT Presentation

2015-04-05 Thread Tudor Girba
The editor should be provided if you load the Glamour-Presentations-Magritte. Cheers, Doru On Mon, Apr 6, 2015 at 3:18 AM, Sean P. DeNigris wrote: > NorbertHartl wrote > > Cool! Can you add a spec based editor for the object? ;) > > It's on my todo list, but not near the top :/ > > btw The pres

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

2015-04-05 Thread seaside
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: - $HEROIC_ACHIEVE

Re: [Pharo-dev] Downloading the latest 40 Image -> Error

2015-04-05 Thread Hernán Morales Durand
Reproduced with Windows and CentOS 7. Image ZIP downloads but it seems corrupt? $ md5sum image.zip 7ff5e1cbdd434a1194b4777056005143 *image.zip $ file image.zip image.zip: Zip archive data, at least v2.0 to extract 13,6 MB (14.347.593 bytes) $ zip -F image.zip --out img.zip Fix archive (-F) - as

Re: [Pharo-dev] Metacello: Resolving Conflicting Attributes

2015-04-05 Thread Sean P. DeNigris
Nicolas Cellier wrote > If you think your corrections are solid enough and backward compatible, > maybe you could push them in these repos too. IIRC the changes were pretty straightforward - just remove FileUrl extensions. I followed the apparent Xtreams convention of creating a pharo40 branch of

Re: [Pharo-dev] Magritte = Auto-GT Presentation

2015-04-05 Thread Sean P. DeNigris
NorbertHartl wrote > Cool! Can you add a spec based editor for the object? ;) It's on my todo list, but not near the top :/ btw The presenter, packaged in Magritte-GT, now loads by default in Pharo 4.0 with the Magritte3 stable version (3.3), available from the 4.0 meta repo. - Cheers, Sea

Re: [Pharo-dev] Ways to do 32-bit arithmetics?

2015-04-05 Thread Levente Uzonyi
On Fri, 3 Apr 2015, Stefan Marr wrote: Hi Eliot: On 03 Apr 2015, at 16:47, Eliot Miranda wrote: if seed is Andes with 16r when it is initialized then the Java code can be used to generate the next value and the sign conversion only applied once to yield the next value. That woul

[Pharo-dev] Add MetaRepoForPharo40 to default repository group

2015-04-05 Thread Sean P. DeNigris
Why not? - Cheers, Sean -- View this message in context: http://forum.world.st/Add-MetaRepoForPharo40-to-default-repository-group-tp4817749.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

Re: [Pharo-dev] New Pull Request for UpdatedPharoByExample

2015-04-05 Thread Dmitri Zagidulin
You might have to click on the Watch button on the repo. On Sunday, April 5, 2015, kilon alios wrote: > Strangely enough it does not notify me, probably need to change something > in my github settings. > > On Sun, Apr 5, 2015 at 6:39 PM, Dmitri Zagidulin > wrote: > >> Thanks, Gaurav! It is now

Re: [Pharo-dev] Ways to do 32-bit arithmetics?

2015-04-05 Thread Ben Coman
On Mon, Apr 6, 2015 at 3:01 AM, Stefan Marr wrote: > Hi: > > > On 03 Apr 2015, at 17:44, Eliot Miranda wrote: > > > > seed := ((seed + 16r7ed55d16) + (seed << 12)) & 16r. > > seed := ((seed ^ 16rc761c23c) ^ (seed as32BitSignedValue >>> 19)) & > 16r. > > seed := ((seed + 16r16566

Re: [Pharo-dev] Metacello: Resolving Conflicting Attributes

2015-04-05 Thread Nicolas Cellier
Hi Sean, I wish I had more time to dive into this. Before I do, where did you publish the corrections? Only in meta repo for Pharo4? I also maintain a copy at Xtreams http://www.squeaksource.com/Xtreams and another at http://www.squeaksource.com/MetacelloRepository. Sometimes, I also backport to me

Re: [Pharo-dev] 14606 Really Important bug - Can't see some variables values while debugging closure

2015-04-05 Thread Nicolas Cellier
2015-04-05 17:38 GMT+02:00 Ben Coman : > > > On Sun, Apr 5, 2015 at 8:59 PM, stepharo wrote: > >> >> Thanks both of you for the energy you put into Pharo. >> The tam really appreciates. >> This is because there are guys like you that Pharo is worth being done. >> Thanks for the tests. >> Esteban

Re: [Pharo-dev] Ways to do 32-bit arithmetics?

2015-04-05 Thread Stefan Marr
Hi: > On 03 Apr 2015, at 17:44, Eliot Miranda wrote: > > seed := ((seed + 16r7ed55d16) + (seed << 12)) & 16r. > seed := ((seed ^ 16rc761c23c) ^ (seed as32BitSignedValue >>> 19)) & > 16r. > seed := ((seed + 16r165667b1) + (seed << 5)) & 16r. > seed := ((seed + 16rd3a26

Re: [Pharo-dev] New Pull Request for UpdatedPharoByExample

2015-04-05 Thread kilon alios
Strangely enough it does not notify me, probably need to change something in my github settings. On Sun, Apr 5, 2015 at 6:39 PM, Dmitri Zagidulin wrote: > Thanks, Gaurav! It is now merged. > > I don't think one needs to send an email to the mailing list, though, for > PRs. Github usually notifie

Re: [Pharo-dev] Spotter

2015-04-05 Thread kilon alios
The problem of people like a tool too much you get a ton of feature requests :D I don't envy those poor developers.

Re: [Pharo-dev] Spotter

2015-04-05 Thread Norbert Hartl
> Am 05.04.2015 um 19:09 schrieb Ben Coman : > > > > On Sun, Apr 5, 2015 at 11:37 PM, stepharo > wrote: > aliaksei > > what would be nice is that each time we click on a button or press a command > key > you emit a growl notification with the description. > > Stef

Re: [Pharo-dev] Spotter

2015-04-05 Thread Ben Coman
On Sun, Apr 5, 2015 at 11:37 PM, stepharo wrote: > aliaksei > > what would be nice is that each time we click on a button or press a > command key > you emit a growl notification with the description. > > Stef > > > For just a moment there, I thought you wanted Spotter to start making bear noise

Re: [Pharo-dev] New Pull Request for UpdatedPharoByExample

2015-04-05 Thread Gaurav Singh
Thanks :) On Sun, Apr 5, 2015 at 9:09 PM, Dmitri Zagidulin wrote: > Thanks, Gaurav! It is now merged. > > I don't think one needs to send an email to the mailing list, though, for > PRs. Github usually notifies anybody who's watching the repository, when > new PRs are made. > > On Sun, Apr 5, 20

Re: [Pharo-dev] New Pull Request for UpdatedPharoByExample

2015-04-05 Thread Dmitri Zagidulin
Thanks, Gaurav! It is now merged. I don't think one needs to send an email to the mailing list, though, for PRs. Github usually notifies anybody who's watching the repository, when new PRs are made. On Sun, Apr 5, 2015 at 9:28 AM, Gaurav Singh wrote: > I have made a few corrections in the chapt

Re: [Pharo-dev] 14606 Really Important bug - Can't see some variables values while debugging closure

2015-04-05 Thread Ben Coman
On Sun, Apr 5, 2015 at 8:59 PM, stepharo wrote: > > Thanks both of you for the energy you put into Pharo. > The tam really appreciates. > This is because there are guys like you that Pharo is worth being done. > Thanks for the tests. > Esteban has apparently found the bug on the VM. > > Stef > >

[Pharo-dev] Metacello: Resolving Conflicting Attributes

2015-04-05 Thread Sean P. DeNigris
Dale taught me something helpful (and maybe a little obscure) while fixing ConfigurationOfXtreams... Problem: Say you have a platform attribute #pharo4.x, and a #customProjectAttribute #FileSystem. The problem is that the FileSystem-related packages required for #pharo4.x are different than those

Re: [Pharo-dev] Xtreams Now in MetaRepoForPharo40

2015-04-05 Thread Ben Coman
Thanks Sean. On Sun, Apr 5, 2015 at 10:07 PM, Sean P. DeNigris wrote: > Sean P. DeNigris wrote > > It was a bit ugly... I asked a question on the MetaC list about cleaning > > it up. > > Okay, Dale explained how to do it properly > ( > http://forum.world.st/Xtreams-Pharo-4-0-Other-FileSystem-Ima

Re: [Pharo-dev] Xtreams Now in MetaRepoForPharo40

2015-04-05 Thread Sean P. DeNigris
Sean P. DeNigris wrote > It was a bit ugly... I asked a question on the MetaC list about cleaning > it up. Okay, Dale explained how to do it properly (http://forum.world.st/Xtreams-Pharo-4-0-Other-FileSystem-Images-tp4816537p4816756.html). New version published. - Cheers, Sean -- View this

[Pharo-dev] New Pull Request for UpdatedPharoByExample

2015-04-05 Thread Gaurav Singh
I have made a few corrections in the chapter Syntax in a Nutshell. Link to the pull request: https://github.com/SquareBracketAssociates/UpdatedPharoByExample/pull/30 Kindly review the pull request.

Re: [Pharo-dev] 14606 Really Important bug - Can't see some variables values while debugging closure

2015-04-05 Thread Sven Van Caekenberghe
Yes, incredible work, well done. Thank you. > On 05 Apr 2015, at 14:59, stepharo wrote: > > > Thanks both of you for the energy you put into Pharo. > The tam really appreciates. > This is because there are guys like you that Pharo is worth being done. > Thanks for the tests. > Esteban has appa

Re: [Pharo-dev] 14606 Really Important bug - Can't see some variables values while debugging closure

2015-04-05 Thread stepharo
Thanks both of you for the energy you put into Pharo. The tam really appreciates. This is because there are guys like you that Pharo is worth being done. Thanks for the tests. Esteban has apparently found the bug on the VM. Stef On Sun, Apr 5, 2015 at 1:23 PM, Ben Coman mailto:b...@openi

Re: [Pharo-dev] 14606 Really Important bug - Can't see some variables values while debugging closure

2015-04-05 Thread Nicolai Hess
2015-04-05 7:25 GMT+02:00 Ben Coman : > > > On Sun, Apr 5, 2015 at 1:23 PM, Ben Coman wrote: > >> I got annoyed since a few times I thought I'd solved everything just the >> issue looking at the manual examples of one issue, only to find I'd caused >> the other case to fail. Also keeping track o