Re: [Pharo-users] Am not sure if that is a good idea

2014-03-11 Thread Robert Shiplett
The MIT Curl debugger in their integrated IDE is for an expression-based language and so your are able to "watch" expressions of your own devising as you step through code - and drill down graphically into structured values such as object instances ; there is now an eclipse "plug-in" version of th

Re: [Pharo-users] [Pharo-dev] Phratch one-click

2014-03-11 Thread jannik laval
Hi Hilaire, 2014-03-11 17:27 GMT+01:00 Hilaire Fernandes : > Hi Jannik, > > Don't use the change/update event mecanism. > This mean a lot of changes in your model. > Yes, this is what I understand :) > In DrGeo I use a simple loop to update the sketch, but i guess it is > more complicated wit

Re: [Pharo-users] CodeCity

2014-03-11 Thread Richard Wettel
You’re welcome, Doru. I’m happy to give something back to the moose and pharo communities. Ricky On 11 Mar 2014, at 14:35, Tudor Girba wrote: > Beautiful! (I have been spoiled by being exposed to this for quite some time > now :)) > > Thanks, Ricky. This is a valuable addition. > > Cheers,

Re: [Pharo-users] [Moose-dev] CodeCity

2014-03-11 Thread Pharo4Stef
Hi richie This is really cool. Do you use NBOpenGL? I have another question why Moose is a prerequisite? We have ring and Smalltalk classes and methods objects so it would be nice to have an API that lets people use different kinds of objects as city. Stef On 11 Mar 2014, at 14:29, Richard

Re: [Pharo-users] Am not sure if that is a good idea

2014-03-11 Thread btc
Friedrich Dominicus wrote: anyway. Has anyone considered adding filtering to the Debugger (in my case the Glamorous Debugger) in a way that not all instance variables values are shown in the value pane? Well a kind of watch as in other debuggers. You just can "ask" to watch e.g field firstName b

Re: [Pharo-users] String>>match issue

2014-03-11 Thread btc
vmusulainen wrote: Hi! >From comment to #match: method match: text "Answer whether text matches the pattern in this string. Matching ignores upper/lower case differences. Check it now: 1. 'V' match: 'v' -> true "Ok, It's fine" 2. 'Ш' match: 'ш' -> false "Use non-English (Cyril

[Pharo-users] Am not sure if that is a good idea

2014-03-11 Thread Friedrich Dominicus
anyway. Has anyone considered adding filtering to the Debugger (in my case the Glamorous Debugger) in a way that not all instance variables values are shown in the value pane? Well a kind of watch as in other debuggers. You just can "ask" to watch e.g field firstName but not lastName or something

Re: [Pharo-users] CodeCity

2014-03-11 Thread Sven Van Caekenberghe
Wow ! On 11 Mar 2014, at 14:29, Richard Wettel wrote: > Dear all > > After the short preview at the last Moose Dojo, I am happy to let you know > that the first version of the brand new CodeCity is out. > > CodeCity is a 3D visualization engineased on a city metaphor, which enables > us to d

Re: [Pharo-users] Tiling Window Manager in 3.0: working but still issues with WorldMorph

2014-03-11 Thread Laurent Laffont
Thanks a lot Phil. I will try to have a look. Laurent Le samedi 8 mars 2014, 11:57:30 p...@highoctane.be a écrit : > TWM works in 3.0 after some work on icons and updating menus. > > Gofer new > smalltalkhubUser: 'LaurentLaffont' project: 'TilingWindowManager'; > configuration; > load. > > ((S

Re: [Pharo-users] [ANN] BabyMock 2

2014-03-11 Thread Benjamin
It looks even cooler than before :) Ben On 11 Mar 2014, at 12:30, Attila Magyar wrote: > I'm pleased to announce the 2.0 version of BabyMock. BabyMock is a visual > mock object library that supports test-driven development. > > This version has a new syntax which is incompatible with the old v

Re: [Pharo-users] [ANN] BabyMock 2

2014-03-11 Thread Guillaume Larcheveque
Cool!!! I use BabyMock a lot and I'm curious to see the new DSL. Thanks a lot for your work. 2014-03-11 12:30 GMT+01:00 Attila Magyar : > I'm pleased to announce the 2.0 version of BabyMock. BabyMock is a visual > mock object library that supports test-driven development. > > This version has a

[Pharo-users] [ANN] BabyMock 2

2014-03-11 Thread Attila Magyar
I'm pleased to announce the 2.0 version of BabyMock. BabyMock is a visual mock object library that supports test-driven development. This version has a new syntax which is incompatible with the old version. Therefore it has a new repository http://smalltalkhub.com/#!/~zeroflag/BabyMock2 (BabyMock

[Pharo-users] String>>match issue

2014-03-11 Thread vmusulainen
Hi! >From comment to #match: method match: text "Answer whether text matches the pattern in this string. Matching ignores upper/lower case differences. Check it now: 1. 'V' match: 'v' -> true "Ok, It's fine" 2. 'Ш' match: 'ш' -> false "Use non-English (Cyrillic) letters Ups-s"