Re: [Pharo-users] JavaLoader

2015-03-27 Thread Julien Delplanque
Oh Java 3 I guess that's why there is an error when I try to load my Java 7 bytecode. It told me there is an error because of symbol. I guess Java 3 didn't supports generics? (The first version of Java I used is Java 6 so i don't know.) Is there a way to update this package easily to be used

[Pharo-users] Spec TextModel

2015-03-27 Thread Sven Van Caekenberghe
Hi, I have a question about Spec's TextModel. How do you use it without the assumption that it contains code ? I just want to show real text and not have a code menu or active coding shortcuts. It is probably me, but I can't find it. Thx, Sven

Re: [Pharo-users] [ANN] Quality Assistant: live code critics feedback

2015-03-27 Thread Damien Cassou
Hi Yuriy, Yuriy Tymchuk yuriy.tymc...@me.com writes: As you already know I am working on providing better code quality support in Pharo. You can use Code Critics in Pharo to detect bad practices and potential bugs. But launching the Critics Browser and running it on your code every now

Re: [Pharo-users] Trouble With Pillar

2015-03-27 Thread Damien Cassou
Jigyasa Grover grover.jigya...@gmail.com writes: Please rectify my mistake. please follow the tutorial from scratch in a clean directory, not in UpdatedPharoByExample. You can contact me on instant messaging if you have more questions (see my website for details). -- Damien Cassou

Re: [Pharo-users] Packaging for Mac OS

2015-03-27 Thread Damien Cassou
Hernán Morales Durand hernan.mora...@gmail.com writes: https://ci.inria.fr/pharo/view/all/job/Launcher-Mac/ Thank you Damien, Unfortunately the link displays 503 Service Temporarily Unavailable But I will check later. works for me -- Damien Cassou http://damiencassou.seasidehosting.st

Re: [Pharo-users] Spec TextModel

2015-03-27 Thread Sven Van Caekenberghe
On 27 Mar 2015, at 11:37, Peter Uhnák i.uh...@gmail.com wrote: Either TextModel should have configuration methods #beForCode and #beForText or there should be TextModel and a CodeModel (sub)class. And from what you say, the plain variant is not even provided in Spec. I agree, please

Re: [Pharo-users] Spec TextModel

2015-03-27 Thread Peter Uhnák
Either TextModel should have configuration methods #beForCode and #beForText or there should be TextModel and a CodeModel (sub)class. And from what you say, the plain variant is not even provided in Spec. I agree, please open issue for it. Peter

[Pharo-users] topics.pharo.org - Deep learning

2015-03-27 Thread Julien Delplanque
Hi everyone, I'm currently searching for a subject for a project to do during my first year of master. I want to do something that is linked to pharo. Following Stéphane Ducasse advises, I had a look in topics.pharo.org and I saw a subject that could interest me named Deep learning. But there is

Re: [Pharo-users] [ANN] Quality Assistant: live code critics feedback

2015-03-27 Thread Yuriy Tymchuk
Hi Damien, yes, I will work on different ways to display critics. The main advantage that I have now is that critics are a property of a class or method, so in fact inspector or debugger can just ask an entity what are its critics :). I think I will add gt representation soon, so you will be

Re: [Pharo-users] Code critics: 'Method defined in all subclasses, but not in superclass'

2015-03-27 Thread Marcus Denker
On 26 Mar 2015, at 23:15, Laura Risani laura.ris...@gmail.com wrote: Hi all, If i run Critic Browser on a package with just a class that defines a method as subclassResponsibility and two subclasses that override it, i get under group 'Design Flaws' 'Method defined in all subclasses,

[Pharo-users] [ANN] Quality Assistant: live code critics feedback

2015-03-27 Thread Yuriy Tymchuk
Dear Pharo users, As you already know I am working on providing better code quality support in Pharo. You can use Code Critics in Pharo to detect bad practices and potential bugs. But launching the Critics Browser and running it on your code every now and then requires additional effort which

Re: [Pharo-users] first impressions

2015-03-27 Thread Camille
On 27 Mar 2015, at 09:48, Norbert Hartl norb...@hartl.name wrote: Am 27.03.2015 um 05:50 schrieb Martin Bähr mba...@email.archlab.tuwien.ac.at mailto:mba...@email.archlab.tuwien.ac.at: from what I've experienced so far, Smalltalk is all it's cracked up to be! What does it mean?

Re: [Pharo-users] Spec TextModel

2015-03-27 Thread Peter Uhnák
Hi, try this TextModel new isCodeCompletionAllowed: false; menuHolder: []; openWithSpec The second line disabled code completion, and the third disables right-click menu. Disabling shortcuts may be a little more complex. From

Re: [Pharo-users] Spec TextModel

2015-03-27 Thread Sven Van Caekenberghe
Thanks, Peter. This will help for now. But my real point is indeed that the name is wrong. Either TextModel should have configuration methods #beForCode and #beForText or there should be TextModel and a CodeModel (sub)class. And from what you say, the plain variant is not even provided in

Re: [Pharo-users] topics.pharo.org - Deep learning

2015-03-27 Thread Clément Bera
Hello, I believe that topics related to robotics are supervised by Noury Bouraqadi and / or Luc Fabresse. I think you should ask them for more information. You can find their mail on their web page (just type their names on google) Good luck, Clement 2015-03-27 9:51 GMT+01:00 Damien Cassou

Re: [Pharo-users] [ANN] Quality Assistant: live code critics feedback

2015-03-27 Thread Yuriy Tymchuk
Oh, actually it turns out that I didn’t remove my old experiments with GT, so you can see critics tab in inspector. Navigation in not useful yet though. Uko On 27 Mar 2015, at 09:47, Damien Cassou damien.cas...@gmail.com wrote: Hi Yuriy, Yuriy Tymchuk yuriy.tymc...@me.com writes:

Re: [Pharo-users] [ANN] Quality Assistant: live code critics feedback

2015-03-27 Thread Andrei Chis
Hi Uko, You found no mail, as there is no email about that. It's a recent addition. Search for the class GTCritics in Spotter and then dive in the class. There should be a category Critics that lets's you see and search through all the critics of that class. Cheers, Andrei On Fri, Mar 27,

Re: [Pharo-users] [ANN] Quality Assistant: live code critics feedback

2015-03-27 Thread Tudor Girba
Nice, Uko. We should definitely see next Tuesday how this can complement the future GT efforts :) In the meantime, you could look at the code critics support from Spotter. It was recently introduced by Stefan Reichhart, Cheers, Doru On Fri, Mar 27, 2015 at 12:05 PM, Yuriy Tymchuk

Re: [Pharo-users] [ANN] Quality Assistant: live code critics feedback

2015-03-27 Thread Yuriy Tymchuk
On 27 Mar 2015, at 14:40, Tudor Girba tu...@tudorgirba.com wrote: Nice, Uko. Thank you. We should definitely see next Tuesday how this can complement the future GT efforts :) Yes, I’m looking forward. In the meantime, you could look at the code critics support from Spotter. It

Re: [Pharo-users] Code critics: 'Method defined in all subclasses, but not in superclass'

2015-03-27 Thread Laura Risani
It's true in v4 is already fixed :) On Fri, Mar 27, 2015 at 4:53 AM, Marcus Denker marcus.den...@inria.fr wrote: On 26 Mar 2015, at 23:15, Laura Risani laura.ris...@gmail.com wrote: Hi all, If i run Critic Browser on a package with just a class that defines a method as

Re: [Pharo-users] [Moose-dev] loading Glamour in Pharo 4

2015-03-27 Thread Johan Fabry
Running the update script in the latest image (40585) causes a DNU: Instances of UndefinedObject are not indexable. :-( I can only see the stack trace in the pre-debugger. Clicking in the pre-debugger or trying to close a window causes the DNU again. The problem seems to be in

Re: [Pharo-users] Pharo sprint on Friday, 3rd April

2015-03-27 Thread Jigyasa Grover
Hi Jean-Christophe Bach ! I am new to Pharo and would like to know more about Pharo Sprint. It would be great if you could elucidate a bit. Thanks and Regards Jigyasa Grover -- View this message in context: http://forum.world.st/Pharo-sprint-on-Friday-3rd-April-tp4815604p4815605.html Sent from

[Pharo-users] Pharo sprint on Friday, 3rd April

2015-03-27 Thread Jean-Christophe Bach
Hi Pharoers, This email as a reminder for the next Pharo sprint: it will be next Friday (3rd April) at Inria Lille. You can also join us on the IRC channel (#pharo on irc.freenode.net server). During the sprint, we will try to synchronize local and remote Pharo sprinters. JC signature.asc

Re: [Pharo-users] Trouble With Pillar

2015-03-27 Thread Jigyasa Grover
Thank You Sir Corrected the error and I was able to compile the .pillar files correctly. -- View this message in context: http://forum.world.st/Trouble-With-Pillar-tp4815448p4815602.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Pharo sprint on Friday, 3rd April

2015-03-27 Thread Cyril Ferlicot
Pharo sprint are some event organize the Friday at INRIA Lille where people come and works on a theme. For exemple that can be a bug hunt: Choose a bug from FogBugz and try to solve it. Everyone is on a big room and we can help each other. Some sprint are announce on the news on Pharo's website :

Re: [Pharo-users] [Moose-dev] loading Glamour in Pharo 4

2015-03-27 Thread Johan Fabry
OK thanks for taking care of this! On Mar 27, 2015, at 14:48, Andrei Chis chisvasileand...@gmail.com wrote: The same problem appeared on jenkins now. To be fixed really soon. Cheers, Andrei On Fri, Mar 27, 2015 at 6:44 PM, Johan Fabry jfa...@dcc.uchile.cl

Re: [Pharo-users] Packaging for Mac OS

2015-03-27 Thread Cyril Ferlicot
That works for me too On 27 March 2015 at 09:53, Damien Cassou damien.cas...@gmail.com wrote: Hernán Morales Durand hernan.mora...@gmail.com writes: https://ci.inria.fr/pharo/view/all/job/Launcher-Mac/ Thank you Damien, Unfortunately the link displays 503 Service Temporarily

Re: [Pharo-users] Packaging for Mac OS

2015-03-27 Thread Hilaire
Hi, You may want to learn from the way I package DrGeo for Mac and Windows (I don't have both). Check at: http://bazaar.launchpad.net/~drgeo-developers/drgeo/trunk/files/head:/build/ the make-workstation-release and follow the scripts... Hilaire Le 25/03/2015 13:38, Hernán Morales Durand a

[Pharo-users] MySQL framework for Pharo to analyze futures and options.

2015-03-27 Thread nacho
Hi folks! I'm using MySQL to hold some data on commodities prices for futures valuation and want to - of course - use Smalltalk as a front-end. Which framework would you recommend? This is a good opportunity for me to push Pharo in the company I work for. I want to leverage after that on Roassal

Re: [Pharo-users] How to silently generate and remove code

2015-03-27 Thread Alejandro Infante
Hi, As far as I know the source code is not stored in the image, but in the changes file. So from that perspective the changes files is more than just logs, it actually store our code, so not recording that entry would be similar as having a method without the actual code. Maybe a possible

Re: [Pharo-users] Notebook/slideshow morph

2015-03-27 Thread Sean P. DeNigris
stepharo wrote I can open a slideshow, create page, drop morph on it, mark a page as template and navigate. Cool! I used it very successfully to make a short screencast (https://www.youtube.com/watch?v=ZdTKvFRFoBc) about the little chord keyboard simulator I made. It was much nicer than my

[Pharo-users] what to use for simple parsing

2015-03-27 Thread Peter Uhnák
Hi, I would like to parse text like - id(param1, param2, ... paramX) id - id id - id - id is alphanumeric string, param is any string optionally enclosed in quotes (so both quoted and unquoted string is needed) I saw that there are many tools for parsing but since I have no experience in