Re: [Pharo-users] FileLocator problem?

2015-07-30 Thread Blondeau Vincent
Actually these folders seems to be real folders to windows but you can’t access them (maybe you have not enough rights?). Anyway, it should be possible to bypass these directories. In DiskStorebasicEntry:path:nodesDo: there is a send of the message signalDirectoryDoesNotExist:. It signals a

Re: [Pharo-users] Is RBClassNotReferencedRule ~200x slower in Pharo 4 vs Pharo 3 ?

2015-07-30 Thread Marcus Denker
I added an issue: https://pharo.fogbugz.com/f/cases/16074/Is-RBClassNotReferencedRule-200x-slower-in-Pharo-4-vs-Pharo-3 https://pharo.fogbugz.com/f/cases/16074/Is-RBClassNotReferencedRule-200x-slower-in-Pharo-4-vs-Pharo-3 i think we need to put in some cashing… here if we would could all

Re: [Pharo-users] Recoverying a crashed Moose image/Pharo5

2015-07-30 Thread stepharo
I know that there is a memory leak around playground and rubric. We will have investigate it. It is Pharo 50 but also in Pharo 40. Stef Le 30/7/15 08:10, Hilaire a écrit : Hello, I have a Moose 6.0 image with several Playgrounds. Since this morning, exactly when I want to make a demo[1], it

[Pharo-users] AST visualization with Roassal

2015-07-30 Thread Mark Rizun
Hi, everyone! First of all, using Roassal is fun and effective :) But while working on AST visualization I found that sometimes Roassal builds wrong tree layout (or maybe I'm just doing something wrong). For instance, try two following scripts in playground: * #1 | ast

Re: [Pharo-users] AST visualization with Roassal

2015-07-30 Thread Peter Uhnák
I think it's because somewhere in roassal objects (in this case ast nodes) are compared by value. Pretty much; there is test for equality RTGroupelementFromModel: anObject ^ self detect: [ :el | el model = anObject ] ifNone: [ nil ] and equality is more often than not wanted. So

Re: [Pharo-users] ViDI error: variable named aModuleName in NativeBoost#loadModule:

2015-07-30 Thread Blondeau Vincent
Hi Yuriy, You have to put the library used by native boost in the VM folder (ie. *.so or *.dll). It should do the trick. Vincent De : Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] De la part de Yuriy Tymchuk Envoyé : mardi 28 juillet 2015 22:08 À : Any question about pharo is

Re: [Pharo-users] AST visualization with Roassal

2015-07-30 Thread Alexandre Bergel
Hi Mark, I have introduced a class RTIdentityGroup. You can do: -=-=-= -=-=-= -=-=-= -=-=-= ast := RBParser parseExpression: 'self foo. self foo'. builder := RTMondrian new. builder shape ellipse size: 15. nodes := builder nodes: ast allChildren.

Re: [Pharo-users] AST visualization with Roassal

2015-07-30 Thread Marcus Denker
On 30 Jul 2015, at 16:47, Mark Rizun mri...@gmail.com wrote: Pretty much; there is test for equality RTGroupelementFromModel: anObject ^ self detect: [ :el | el model = anObject ] ifNone: [ nil ] and equality is more often than not wanted. So solution might be to tell Mondrian

Re: [Pharo-users] AST visualization with Roassal

2015-07-30 Thread Marcus Denker
On 30 Jul 2015, at 17:26, Alexandre Bergel alexandre.ber...@me.com wrote: Hi Mark, I have introduced a class RTIdentityGroup. You can do: -=-=-= -=-=-= -=-=-= -=-=-= ast := RBParser parseExpression: 'self foo. self foo'. builder := RTMondrian new. builder shape

Re: [Pharo-users] AST visualization with Roassal

2015-07-30 Thread Mark Rizun
Pretty much; there is test for equality RTGroupelementFromModel: anObject ^ self detect: [ :el | el model = anObject ] ifNone: [ nil ] and equality is more often than not wanted. So solution might be to tell Mondrian that you want to compare by identity and not equality? Exactly!

Re: [Pharo-users] ViDI error: variable named aModuleName in NativeBoost#loadModule:

2015-07-30 Thread Alexandre Bergel
NativeBoost create this kind of error if you have the .sources file that is missing. Are you sure this is not the case? Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. On Jul 28, 2015,

Re: [Pharo-users] AST visualization with Roassal

2015-07-30 Thread Alexandre Bergel
Frankly, I often find weird to override #= Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. On Jul 30, 2015, at 11:41 AM, Peter Uhnák i.uh...@gmail.com wrote: I think it's because

Re: [Pharo-users] troubles with JNIPort on Pharo 5 / Java 8

2015-07-30 Thread Tudor Girba
Hi again, I continued with experimentation in Pharo 3. Specifically, I would like to get a callback working, but something does not work out. Could you take a look below? Perhaps you can spot what I am doing wrong. Here is what I did: 1. I downloaded:

Re: [Pharo-users] interview on .Net Rocks! about Moose, humane assessment, Pharo and GT

2015-07-30 Thread Tudor Girba
Hi, Roassal is not (yet :)) loaded in Pharo. Only GT. But, indeed that is the point. Among others, GT also makes it possible to embed visualizations directly in your natural workflow. I keep on saying that GT is a marketplace for Roassal :). If you want to have the service of a full data

Re: [Pharo-users] VM Crash after adding ram

2015-07-30 Thread stepharo
Hi guys Thanks for reporting. We are sorry about such problem. This is strange. Esteban is back and I'm will be back at work next wednesday (even I'm totally stupid and helpless about the vm) I can support peopler around :). Stef Le 30/7/15 22:05, Nicolai Hess a écrit : Hm, I updated my

[Pharo-users] interview on .Net Rocks! about Moose, humane assessment, Pharo and GT

2015-07-30 Thread Tudor Girba
Hi, I had the pleasure of giving an interview for the .Net Rocks! podcast. It was quite fun and I managed to mention Moose, humane assessment, Pharo and GT in 45 minutes. It was not as smooth as a presentation but I still think it's a useful advertisement. Let me know what you think, and feel

Re: [Pharo-users] Personal wiki / information manager

2015-07-30 Thread stepharo
Le 28/7/15 01:44, Evan Donahue a écrit : Ah, yes, by 'offline' I did mean outside of the mailing list, but that was purely out of consideration for the list. If the list wants to hear it, far be it from me to keep it from them. For my part, I am a graduate student working on my

Re: [Pharo-users] [Moose-dev] Re: Script of the day

2015-07-30 Thread Peter Uhnak
You should be able to specify all layouts available in roassal... b layout tree. b layout cluster. b layout force. ... Peter -Original Message- From: H. Hirzel hannes.hir...@gmail.com Sent: ‎7/‎30/‎2015 8:40 PM To: Moose-related development moose-...@iam.unibe.ch;

Re: [Pharo-users] interview on .Net Rocks! about Moose, humane assessment, Pharo and GT

2015-07-30 Thread H. Hirzel
Doru, Thank you for the links Is the glamorous Toolkit preinstalled in Pharo 4? In any case http://gt.moosetechnology.org/ needs to mention Pharo 4. --Hannes On 7/30/15, Tudor Girba tu...@tudorgirba.com wrote: Hi, I had the pleasure of giving an interview for the .Net Rocks! podcast.

Re: [Pharo-users] [Moose-dev] Re: Script of the day

2015-07-30 Thread H. Hirzel
thanks, layout force is very nice. But my question is about a tree map. Like the one here https://en.wikipedia.org/wiki/File:Gradient_grouped_treemap.jpg treemap is not known. --Hannes On 7/30/15, Peter Uhnak i.uh...@gmail.com wrote: You should be able to specify all layouts available in

Re: [Pharo-users] interview on .Net Rocks! about Moose, humane assessment, Pharo and GT

2015-07-30 Thread Tudor Girba
Hi, Indeed, GTSpotter, GTPlayground and GTInspector come with Pharo 4. The GTDebugger is available in the Moose 5/5.1/6.0 images. Thanks for the notification. I will update the page. Cheers, Doru On Thu, Jul 30, 2015 at 10:12 PM, H. Hirzel hannes.hir...@gmail.com wrote: Doru, Thank you

Re: [Pharo-users] interview on .Net Rocks! about Moose, humane assessment, Pharo and GT

2015-07-30 Thread H. Hirzel
This basically means that Pharo 4.0 is no longer a Smalltalk IDE only. Together with Roassal it is a data analysis application ...! In a sense something like a spreadsheet but for general data, not only data in tables. --Hannes On 7/30/15, Tudor Girba tu...@tudorgirba.com wrote: Hi, Indeed,

Re: [Pharo-users] VM Crash after adding ram

2015-07-30 Thread Nicolai Hess
Hm, I updated my Ubuntu 14.04 64 machine (just a normal update). Now I can not start any pharo vm. (not that one that from pharo launcher, no get.pharo.org/40 .. /50) ( they all were working some days ago). It crashes right after startup and not at the same call, the crash dumps show different

Re: [Pharo-users] interview on .Net Rocks! about Moose, humaneassessment, Pharo and GT

2015-07-30 Thread Peter Uhnak
Thank you, I've really enjoyed it! Peter -Original Message- From: Tudor Girba tu...@tudorgirba.com Sent: ‎7/‎30/‎2015 9:35 PM To: moose-dev moose-...@iam.unibe.ch; Discusses Development of Pharo pharo-...@lists.pharo.org; Any question about pharo is welcome pharo-users@lists.pharo.org

Re: [Pharo-users] Pillar and Beamer

2015-07-30 Thread stepharo
Cyril do you have a deck.js or whatever other format working. I'm still producing new lectures (so boring but it has to be done) and I would love to have more sexy style than beamer... because it is so dry... Stef Le 29/7/15 10:49, Ferlicot D. Cyril a écrit : Le 29/07/2015 10:40, Peter

Re: [Pharo-users] interview on .Net Rocks! about Moose, humane assessment, Pharo and GT

2015-07-30 Thread Alexandre Bergel
:-) I am also convinced about that! Alexandre On Jul 30, 2015, at 5:32 PM, Tudor Girba tu...@tudorgirba.com wrote: Hi, Roassal is not (yet :)) loaded in Pharo. Only GT. But, indeed that is the point. Among others, GT also makes it possible to embed visualizations directly in your

Re: [Pharo-users] Recoverying a crashed Moose image/Pharo5

2015-07-30 Thread Hilaire
Oh, and deleting the TRMorph at image start up does not work, because Pharo doesn't reach the image level command line handler, it crashes before. It looks to me related to FreeType, I may have text with different font sizes. I tried with larger value of --memory or --mmap but it does not help.

Re: [Pharo-users] Recoverying a crashed Moose image/Pharo5

2015-07-30 Thread Hilaire
Le 30/07/2015 15:03, Vincent BLONDEAU a écrit : See the bug related: https://pharo.fogbugz.com/f/cases/15944/Image-crash-on-Pharo-due-to-fonts-on-W7 Thanks, I added a crash dump there as it occures with windows as well. Hilaire -- Dr. Geo http://drgeo.eu http://google.com/+DrgeoEu

Re: [Pharo-users] Recoverying a crashed Moose image/Pharo5

2015-07-30 Thread Hilaire
Le 30/07/2015 15:13, Nicolai Hess a écrit : Yes, looks like an error on FT access If I stick to Pharo4+Moose6, does this problem occur? The used VM works fine with a fresh Moose6.0 image. Btw, the http://www.moosetechnology.org/ is down right now. I would like to recover the

Re: [Pharo-users] Recoverying a crashed Moose image/Pharo5

2015-07-30 Thread Andrei Chis
On Thu, Jul 30, 2015 at 9:41 AM, Hilaire hila...@drgeo.eu wrote: Le 30/07/2015 15:13, Nicolai Hess a écrit : Yes, looks like an error on FT access If I stick to Pharo4+Moose6, does this problem occur? The used VM works fine with a fresh Moose6.0 image. Btw, the

Re: [Pharo-users] Recoverying a crashed Moose image/Pharo5

2015-07-30 Thread Blondeau Vincent
-Message d'origine- De : Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] De la part de Hilaire Envoyé : jeudi 30 juillet 2015 09:42 À : pharo-users@lists.pharo.org Objet : Re: [Pharo-users] Recoverying a crashed Moose

Re: [Pharo-users] Recoverying a crashed Moose image/Pharo5

2015-07-30 Thread Hilaire
Le 30/07/2015 15:51, Blondeau Vincent a écrit : If I stick to Pharo4+Moose6, does this problem occur? But Moose 6 is based on Pharo5 so I will not be possible to have Pharo4 and Moose6... Ok. I will see what to do. -- Dr. Geo http://drgeo.eu http://google.com/+DrgeoEu

Re: [Pharo-users] Is RBClassNotReferencedRule ~200x slower in Pharo 4 vs Pharo 3 ?

2015-07-30 Thread stepharo
Paul I'm running out of town. Could you open a bug entry with the information you have so that we do not forget? Stef Le 29/7/15 17:33, Paul DeBruicker a écrit : Hi Stef, The slowdown is dependent upon the # of classes in the package. If you use Fuel then you should see a slowdown of 20x.

Re: [Pharo-users] AST visualization with Roassal

2015-07-30 Thread Mark Rizun
Great, everybody is happy ;) Thanks Alex ! 30 лип. 2015 5:40 пп Marcus Denker marcus.den...@inria.fr пише: On 30 Jul 2015, at 17:26, Alexandre Bergel alexandre.ber...@me.com wrote: Hi Mark, I have introduced a class RTIdentityGroup. You can do: -=-=-= -=-=-= -=-=-= -=-=-=

[Pharo-users] VM Crash after adding ram

2015-07-30 Thread Ramon Leon
So I've just upgraded my Ubuntu 14.04 machine to 16 gig of ram from 8 gig of ram and suddenly I can no longer start my Pharo VM; I don't understand why adding ram would make the vm stop working, I've been using it for year without problems. Can anyone interpret this: no objects after the end

Re: [Pharo-users] [Moose-dev] Re: Script of the day

2015-07-30 Thread H. Hirzel
Is it possible to use a tree map? --Hannes On 7/30/15, Alexandre Bergel alexandre.ber...@me.com wrote: I gave a try, and I did not find anything weird. I guess your document folder contains many files, as Doru said Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre

Re: [Pharo-users] Recoverying a crashed Moose image/Pharo5

2015-07-30 Thread Nicolai Hess
2015-07-30 8:10 GMT+02:00 Hilaire hila...@drgeo.eu: Hello, I have a Moose 6.0 image with several Playgrounds. Since this morning, exactly when I want to make a demo[1], it crashes immediately. I remember yesterday I got an error when saving, Pharo said something like 'This error should not

Re: [Pharo-users] Recoverying a crashed Moose image/Pharo5

2015-07-30 Thread Vincent BLONDEAU
Hi, I had the same issue under Windows 7. The workaround is to rename /home/hilaire/Travaux/Speech/Taiwan2015/moose_suite_5_1/bin/libFT2Plugin.so in something else. You will not have the fonts working anymore but your image will be working again. See the bug related:

Re: [Pharo-users] AST visualization with Roassal

2015-07-30 Thread Alexandre Bergel
Excellent! Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. On Jul 30, 2015, at 12:40 PM, Marcus Denker marcus.den...@inria.fr wrote: Yes, we checked. This explains the strange “too

Re: [Pharo-users] VM Crash after adding ram

2015-07-30 Thread Esteban Lorenzano
Hi, did you try a fresh Pharo image (without loaded code)? ExternalObject and ExternalAddress are FFI so… problem *could* be there… no idea what can be happening, but well… it could be there :) cheers, Esteban On 30 Jul 2015, at 20:27, Ramon Leon ramon.l...@allresnet.com wrote: So I've

Re: [Pharo-users] FileLocator problem?

2015-07-30 Thread PBKResearch
Thanks Craig and Matthieu. However, we can now reformulate the problem: ‘FileLocator documents allChildren’ does not trace the hierarchy of these directories correctly. It finds its way to C:\Users\Peter\Documents, searches for subdirectories and finds ‘My Music’ etc. among the true

Re: [Pharo-users] Trying to load ViDI in Pharo 4 gives an error

2015-07-30 Thread Stephan Eggermont
On 30-07-15 11:29, Esteban Lorenzano wrote: On 23 Jul 2015, at 22:14, Paul DeBruicker pdebr...@gmail.com wrote: I get a error that the 1.2.14 version of ConfigruationOfRubric cannot be found. The ConfigurationOfRubric is loaded from the MCSmalltalkhubRepository owner: 'AlainPlantec'

Re: [Pharo-users] FileLocator problem?

2015-07-30 Thread Craig Johnson
On 2015/07/30 11:43 AM, PBKResearch wrote: Hello Out of curiosity I tried to run the snippet which Alexandre Bergel posted yesterday under the name ‘Script of the day’. It failed, but nothing to do with the script itself. The problem is that it fails on the line: ‘FileLocator documents

Re: [Pharo-users] FileLocator problem?

2015-07-30 Thread Matthieu Lacaton
Windows 7 uses aliases for these directories. It is the way different languages or owners are handled. For example in French you can see your music directory as Ma Musique but the real name used in paths is actually Music. As Craig said, the default paths for these directories are :

Re: [Pharo-users] Font with many Unicode glyphs to display code -- IPA?

2015-07-30 Thread Esteban Lorenzano
Hi, alternatively, you can distribute yours programs with your own fonts. you can keep them outside the image and load them on demand… take a look at LucidaGrandeRegular class to see how to do it. Esteban On 24 Jul 2015, at 17:22, Henrik Johansen henrik.s.johan...@veloxit.no wrote:

[Pharo-users] FileLocator problem?

2015-07-30 Thread PBKResearch
Hello Out of curiosity I tried to run the snippet which Alexandre Bergel posted yesterday under the name 'Script of the day'. It failed, but nothing to do with the script itself. The problem is that it fails on the line: 'FileLocator documents allChildren.' The debugger message is Directory

Re: [Pharo-users] Trying to load ViDI in Pharo 4 gives an error

2015-07-30 Thread Esteban Lorenzano
Hi, On 23 Jul 2015, at 22:14, Paul DeBruicker pdebr...@gmail.com wrote: Hi - When I run this: Gofer new smalltalkhubUser: 'YuriyTymchuk' project: 'Configuration'; configurationOf: 'Vidi'; load. #ConfigurationOfVidi asClass loadStable I get a error that the 1.2.14 version