Re: [Pharo-users] [ANN] A simple debugger for stepping though bytecodes.

2015-01-16 Thread Tudor Girba
Hi, What do you mean by a Roassal plugin? You mean a debugger dedicated to debugging Roassal problems, or you mean Roassal visualizations for various debuggers? To both the answer is that it is easy to do. If you want to see an example of using a Roassal visualization inside a debugger, you can t

Re: [Pharo-users] [ANN] A simple debugger for stepping though bytecodes.

2015-01-16 Thread kilon alios
wow nice, great job Andrei what are the practical uses for this debugger, does it also allow you change the bytecode as the regular debugger allow you to change code ? On Thu, Jan 15, 2015 at 11:22 PM, Andrei Chis wrote: > Hi all, > > We've just made a simple debugger for stepping through bytec

[Pharo-users] [ANN] Pharo Consortium New Academic Partner: Ecole des Mines de Douai

2015-01-16 Thread Marcus Denker
The Pharo Consortium is very happy to announce that the Ecole des Mines de Douai has joined the Consortium as an Academic Partner. About - Ecole des Mines de Douai: http://www.mines-douai.fr - Ecole des Mines de Douai, IA: http://ia.mines-douai.fr - Pharo Consortium: http

Re: [Pharo-users] Notification on GC of an object?

2015-01-16 Thread Henrik Johansen
> On 16 Jan 2015, at 1:25 , Johan Fabry wrote: > > > As I’ve been asked, I’ll clarify a bit more. When I said it worked before I > was actually wrong because I had forgotten to remove some alternative cleanup > code (the alternative works but it’s like using a cannon to kill a fly). > > This

Re: [Pharo-users] [ANN] A simple debugger for stepping though bytecodes.

2015-01-16 Thread Andrei Chis
On Fri, Jan 16, 2015 at 10:15 AM, kilon alios wrote: > wow nice, great job Andrei > > what are the practical uses for this debugger, does it also allow you > change the bytecode as the regular debugger allow you to change code ? > Right now it doesn't allow you to change the bytecodes. It's pra

Re: [Pharo-users] [ANN] A simple debugger for stepping though bytecodes.

2015-01-16 Thread stepharo
Nice I want to play with it. Le 16/1/15 12:39, Andrei Chis a écrit : On Fri, Jan 16, 2015 at 10:15 AM, kilon alios > wrote: wow nice, great job Andrei what are the practical uses for this debugger, does it also allow you change the bytecode as the r

Re: [Pharo-users] Useful tools?

2015-01-16 Thread Tim Mackinnon
Laura - not sure if this fits your bill, but I really find that PharoLauncher is handy - it lets you easily download new Smalltalk images (maybe to track new features in Moose, or Pharo 4.0) - before using it I had things lying around where I had forgotten what they were for. This helped me put

Re: [Pharo-users] [ANN] A simple debugger for stepping though bytecodes.

2015-01-16 Thread Marcus Denker
>> >> >> what are the practical uses for this debugger, does it also allow you change >> the bytecode as the regular debugger allow you to change code ? >> >> Right now it doesn't allow you to change the bytecodes. >> It should not be hard to do… Marcus

Re: [Pharo-users] SmalltalkHub.com <- Flakey?

2015-01-16 Thread stepharo
but not recently Stef Le 14/1/15 10:38, kilon alios a écrit : Smalltalk hub has its good and bad moments, I have been experiencing weird behaviour from time to time On Wed, Jan 14, 2015 at 11:22 AM, Ben Coman > wrote: no problem here. On Wed, Jan 14, 20

Re: [Pharo-users] New post on blog about Rewrite Tool

2015-01-16 Thread stepharo
Excellent Mark! Thanks for pushing. Hello! Please, visit my blog and read new information about developement and updates for Rewrite Tool. Link: myfuncoding.blogspot.com You can install the tool by evaluating this: Gofer new url: 'http://smalltalkhub.com/mc/MarkRizun/RewriteTool/main'; p

[Pharo-users] Code diff between metacello versions

2015-01-16 Thread Norbert Hartl
Is there a tool or a code snippet which can show a code diff (side by side) between the packages of two metacello versions? thanks, Norbert

Re: [Pharo-users] Code diff between metacello versions

2015-01-16 Thread Tudor Girba
You mean like this: from := String cr join: ((ConfigurationOfGToolkit project version: '0.21-baseline') spec packages list collect: #name). to := String cr join: ((ConfigurationOfGToolkit project version: '0.20-baseline') spec packages list collect: #name). (DiffMorph new from: from to: to) openIn

Re: [Pharo-users] Code diff between metacello versions

2015-01-16 Thread Norbert Hartl
Doru, I mean the code diffs. Metacello versions resolve to a list of packages with versions. Each package with same name but different versions leads to code diffs in the classes,… etc. What I want is a complete diff of all classes, methods of the packages in that metacello config. Norbert >

[Pharo-users] passing json from seaside to javascript

2015-01-16 Thread sergio_101
i am currently working on an app that uses a javascript library to render the state of an object inside seaside. i am trying to figure out the best way to transfer the state of object to javascript. the state of the machine changes via form inputs and ajax. i already have the code to convert the

Re: [Pharo-users] passing json from seaside to javascript

2015-01-16 Thread Esteban A. Maringolo
Sergio, I don't fully understand what you need to do. 1. Do you need to pass a JSON object to a globally accessible javascript function? 2. Is the JSON object dynamically generated as a response to an AJAX call? Regards! Esteban A. Maringolo 2015-01-16 12:11 GMT-03:00 sergio_101 : > i am

Re: [Pharo-users] passing json from seaside to javascript

2015-01-16 Thread sergio_101
hi, esteban.. the json object is a representation of the pharo object. i just need to get that json object (in its updated form) available to a javascript function.. the pseudo code for javascript would be something like: control changed update json object (pharo/seaside does this) rerender sec

Re: [Pharo-users] passing json from seaside to javascript

2015-01-16 Thread Esteban A. Maringolo
I'm writing without testing it, but I think it might work: Option A. 1. Create a named, global javascript function from Seaside that will be called as the callback for the "control changed" event. 2. Within that global function perform an AJAX JSON call to seaside and pass its response to the java

Re: [Pharo-users] [ANN] A simple debugger for stepping though bytecodes.

2015-01-16 Thread Andrei Chis
On Thu, Jan 15, 2015 at 10:40 PM, Alexandre Bergel wrote: > I am quite interested in plugin a Roassal visualization to a debugger. > I will discuss with Rosario, but maybe you have worked on something on > your side? Would it be hard to have this? > I didn't got a chance to work more on it, but

Re: [Pharo-users] Could we keep Pharo-dev for Pharo-dev?

2015-01-16 Thread blake
Looks like that SO question was re-opened. Maybe SO can be educated? On Thu, Jan 15, 2015 at 8:39 AM, Jimmie Houchin wrote: > +1 > > All Pharo discussions have taken place on this mailing for a long time. > Even after starting pharo-users, for people who were already longtime > readers of this l

Re: [Pharo-users] passing json from seaside to javascript

2015-01-16 Thread sergio_101
oh! i was going to write the javascript function in an included javascript file.. i didn't know you could define javascript functions on the seaside side.. On Fri Jan 16 2015 at 11:59:15 AM Esteban A. Maringolo wrote: > I'm writing without testing it, but I think it might work: > > Option A. > 1

[Pharo-users] Seaside and JQuery/JQueryUI

2015-01-16 Thread sergio_101
at one point, there was a section of seaside that demonstrated using jquery and jqueryui with seaside.. along with code examples. that was SUPER helpful. I can't seem to find that anywhere. does anyone know if it's still part of seaside? thanks!

Re: [Pharo-users] Seaside and JQuery/JQueryUI

2015-01-16 Thread Paul DeBruicker
I think you need to run this: ConfigurationOfSeaside3 project stableVersion load: 'JQueryUI Examples'. in a workspace to load the code you're looking for. sergio_101 wrote > at one point, there was a section of seaside that demonstrated using > jquery > and jqueryui with seaside.. along with

Re: [Pharo-users] Seaside and JQuery/JQueryUI

2015-01-16 Thread sergio_101
thanks! will try that.. On Fri Jan 16 2015 at 2:34:20 PM Paul DeBruicker wrote: > I think you need to run this: > > ConfigurationOfSeaside3 project stableVersion load: 'JQueryUI Examples'. > > in a workspace to load the code you're looking for. > > > > sergio_101 wrote > > at one point, there wa

Re: [Pharo-users] [ANN] A simple debugger for stepping though bytecodes.

2015-01-16 Thread Alexandre Bergel
Ok! Thanks! Alexandre > On Jan 16, 2015, at 2:25 PM, Andrei Chis wrote: > > > On Thu, Jan 15, 2015 at 10:40 PM, Alexandre Bergel > wrote: > I am quite interested in plugin a Roassal visualization to a debugger. > I will discuss with Rosario, but maybe you have worked on something on your

Re: [Pharo-users] [ANN] A simple debugger for stepping though bytecodes.

2015-01-16 Thread Alexandre Bergel
Yes! This is important for us to be able to do that :-) Cheers, Alexandre > On Jan 16, 2015, at 6:04 AM, Tudor Girba wrote: > > Hi, > > What do you mean by a Roassal plugin? You mean a debugger dedicated to > debugging Roassal problems, or you mean Roassal visualizations for various > debu

[Pharo-users] Pharo 3 error when loading Pharo Launcher

2015-01-16 Thread nacho
When I try to load Pharo Launcher from Metacello, I get the following error: The symbolic version #stable is EXPLICITY not defined in ConfigurationOfPharoLauncher for the current platform. I'm running Win 8.1 In my OSX machine works perfectly so I assume it has to be with Windows. best regards Nach

Re: [Pharo-users] Becoming proficient in Pharo

2015-01-16 Thread stepharo
Me too! Le 15/1/15 16:09, nacho a écrit : Master kilon, thank you very much. This is an excellent videcast. As always with your videos a lot of questions arise after watching them! I really appreciate you taking the time to put this togheter. Cheers nacho - Nacho Smalltalker apprentice.

Re: [Pharo-users] Could we keep Pharo-dev for Pharo-dev?

2015-01-16 Thread Stephan Eggermont
Blake wrote: >Looks like that SO question was re-opened. Maybe SO can be educated? Yes, but I'm not going to spend the time having a discussion on Meta each time a question should be reopened, especially as there are no signs of a solution. Stephan

[Pharo-users] Manners on the list?

2015-01-16 Thread Laura Risani
Hi all, I really appreciate the dedication and effort someone generously put into answering a question. i want neither to waste such a lovely people's time by saying irrelevant things nor to sound harsh or dry to them. It doesn't kind of feel right saying nothing when someone gives me a rather le

Re: [Pharo-users] Manners on the list?

2015-01-16 Thread Stephan Eggermont
Hi Laura >It doesn't kind of feel right saying nothing when someone gives me >a rather lengthly answer, unless it was the tacit agreement. Feedback is appreciated. Thanks for asking. >So i'm facing questions whether or not to make a post, because i'm not sure >which are the >right/usual manne

Re: [Pharo-users] Manners on the list?

2015-01-16 Thread stepharo
When you have a technical questions or request for information just do not think. - look on google - if not found ask Report problems with precision without thinking too much. Feedback is always important. Then if you know the answer to a question (of somebody else) or found it (beca

Re: [Pharo-users] [Pharo-dev] InfoWorld on Redline Smalltalk

2015-01-16 Thread stepharo
Le 15/1/15 13:39, Johan Fabry a écrit : I don’t know the entire context of the discussion (i’m not following Pharo-dev, where this came from apparently.) But I would like to point out that it is wrong to think of Spec as an abandoned project! Spec is here to stay, and hopefully for a very long

Re: [Pharo-users] Seaside and JQuery/JQueryUI

2015-01-16 Thread stepharo
http://book.seaside.st/book/web-20/jquery ?? Le 16/1/15 20:18, sergio_101 a écrit : at one point, there was a section of seaside that demonstrated using jquery and jqueryui with seaside.. along with code examples. that was SUPER helpful. I can't seem to find that anywhere. does anyone know