Re: [Pharo-dev] Font problem is still there

2014-03-28 Thread Blondeau Vincent
De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Igor Stasenko Envoyé : jeudi 27 mars 2014 16:45 À : Pharo Development List Objet : Re: [Pharo-dev] Font problem is still there Btw, guys i need some details: - what platform you using The problem appears on both Linux

Re: [Pharo-dev] [Moose-dev] Re: Re: Fwd: Font problem is still there

2014-03-28 Thread Blondeau Vincent
De : moose-dev-boun...@iam.unibe.ch [mailto:moose-dev-boun...@iam.unibe.ch] De la part de Stéphane Ducasse Envoyé : vendredi 28 mars 2014 15:39 À : Pharo Development List Cc : Moose-related development Objet : [Moose-dev] Re: [Pharo-dev] Re: Fwd: Font problem is still there In Pharo 3.0 this

[Pharo-dev] Headless mode loss of focus under windows 7

2014-07-29 Thread Blondeau Vincent
Hello everyone, Currently I use a batch script where a moose image (based on pharo) load a model, export some data and close itself without saving and that several times. I do it under windows 7 by this kind of loop in a .bat file: FOR /L %%i IN (1,1,10) DO ( Pharo.exe

Re: [Pharo-dev] Headless mode loss of focus under windows 7

2014-07-30 Thread Blondeau Vincent
) On Jul 29, 2014, at 4:01 AM, Blondeau Vincent vincent.blond...@worldline.commailto:vincent.blond...@worldline.com wrote: Hello everyone, Currently I use a batch script where a moose image (based on pharo) load a model, export some data and close itself without saving and that several times. I do

[Pharo-dev] Pharo image corruption and fatal VM error with Roassal

2014-07-31 Thread Blondeau Vincent
Hi, Yesterday, I was using GraphET (a part of Roassal) to do some charts and, today, when I wanted to reopen the image. And I got that : [cid:image001.png@01CFACAA.E0CB2060] It is *very* unpleasant... To reproduce the bug: 1 - You can do either: | builder |

Re: [Pharo-dev] Pharo image corruption and fatal VM error with Roassal

2014-07-31 Thread Blondeau Vincent
@lists.pharo.org Objet : Re: [Pharo-dev] Pharo image corruption and fatal VM error with Roassal Looks like Cairo can't be loaded. Does the Eliot VM comes with libCairo? Hilaire Le 31/07/2014 16:50, Blondeau Vincent a écrit : Hi, Yesterday, I was using GraphET (a part of Roassal) to do some

Re: [Pharo-dev] Pharo image corruption and fatal VM error with Roassal

2014-07-31 Thread Blondeau Vincent
-dev] Pharo image corruption and fatal VM error with Roassal This may be related to this known issue reported a few days back. https://code.google.com/p/moose-technology/issues/detail?id=1084 And there is a possible solution to recover your image. usman On Thu, Jul 31, 2014 at 10:50 AM, Blondeau

Re: [Pharo-dev] Pharo image corruption and fatal VM error with Roassal

2014-08-01 Thread Blondeau Vincent
De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de stepharo Envoyé : jeudi 31 juillet 2014 22:55 À : Pharo Development List Objet : Re: [Pharo-dev] Pharo image corruption and fatal VM error with Roassal vincent you can take an image/change copy your change as the change of

[Pharo-dev] [Solved] Pharo image corruption and fatal VM error with Roassal

2014-08-06 Thread Blondeau Vincent
...@web.de wrote: It looks like Trachel does not recreate athens external resources. There is an example in AthensSceneView, on how to check and reload an AthensSurface. 2014-07-31 12:51 GMT+02:00 Usman Bhatti usman.bha...@gmail.com: On Thu, Jul 31, 2014 at 11:17 AM, Blondeau Vincent

Re: [Pharo-dev] [Moose-dev] [Solved] Pharo image corruption and fatal VM error with Roassal

2014-08-07 Thread Blondeau Vincent
, 2014, at 12:29 PM, Blondeau Vincent vincent.blond...@worldline.commailto:vincent.blond...@worldline.com wrote: Solved ! You will found the changes in the attached .mcz. I added some sessions guards where some Athens external objects are used. Stef you were right ;) Particularly for checking

[Pharo-dev] Time Series in Smalltalk

2014-10-23 Thread Blondeau Vincent
Hi ! I am looking for a time series library available for Pharo. Serge Stinckwich asked the same thing a year ago (http://lists.pharo.org/pipermail/pharo-dev_lists.pharo.org/2013-February/074796.html), and I would know whether any improvement has been made since? Thanks Cheers, Vincent

Re: [Pharo-dev] Time Series in Smalltalk

2014-10-31 Thread Blondeau Vincent
-Message d'origine- De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Serge Stinckwich Envoyé : vendredi 31 octobre 2014 11:39 À : Pharo Development List Objet : Re: [Pharo-dev] Time Series in Smalltalk On 31 Oct 2014, at 10:50, Blondeau Vincent

Re: [Pharo-dev] Time Series in Smalltalk

2014-10-31 Thread Blondeau Vincent
Hernán Morales Durand Envoyé : vendredi 31 octobre 2014 14:42 À : Pharo Development List Objet : Re: [Pharo-dev] Time Series in Smalltalk 2014-10-31 6:50 GMT-03:00 Blondeau Vincent vincent.blond...@worldline.commailto:vincent.blond...@worldline.com: Dear Serge, That's nice but I will need more

[Pharo-dev] How to check whether the handle is always valid with NativeBoost ?

2014-11-13 Thread Blondeau Vincent
Hi ! I am doing a binding to the R library with NativeBoost. So I create some external objects and apply some functions on them. If the handle to the object is not valid, either the function crashes or gives a bad result. How can I ensure to have a valid pointer at anytime ? I see two

Re: [Pharo-dev] [Vm-dev] Re: How to check whether the handle is always valid with NativeBoost ?

2014-11-17 Thread Blondeau Vincent
checking. But that really depends on design of external library/framework, whether it possible or not. Usually, if you cleverly organize the access to services, it is possible to do it without using brute-force proxyfying. On Thu, Nov 13, 2014 at 9:05 AM, Blondeau Vincent vincent.blond

Re: [Pharo-dev] [Vm-dev] Re: How to check whether the handle is always valid with NativeBoost ?

2014-11-20 Thread Blondeau Vincent
De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Blondeau Vincent Envoyé : lundi 17 novembre 2014 16:41 À : Pharo Development List Cc : Squeak Virtual Machine Development Discussion Objet : Re: [Pharo-dev] [Vm-dev] Re: How to check whether the handle is always valid

[Pharo-dev] Code retrieval on primitive failed

2014-12-03 Thread Blondeau Vincent
Hello everyone, I am doing some developments with NativeBoost and unfortunaly I succeed to save my image in a unstable state. I am using the last moose image i.e.: Pharo3.0 - Latest update: #30860. So when I want to launch my image, I get a primitive faillure. The interesting part of the stack

Re: [Pharo-dev] Code retrieval on primitive failed

2014-12-03 Thread Blondeau Vincent
:-) Thanks :) 2014-12-03 17:04 GMT+01:00 Blondeau Vincent vincent.blond...@worldline.commailto:vincent.blond...@worldline.com: Hello everyone, I am doing some developments with NativeBoost and unfortunaly I succeed to save my image in a unstable state. I am using the last moose image i.e

Re: [Pharo-dev] Code retrieval on primitive failed

2014-12-04 Thread Blondeau Vincent
with another bytecode) either you have another failure so you start again to find the good method. Once you can open it. Save your code!!! The file out didn’t work for me so I commited with Monticello in local and it worked! So don’t forget to commit! Vincent De : Blondeau Vincent Envoyé

[Pharo-dev] [ANN] RProjectConnector V1.0

2014-12-08 Thread Blondeau Vincent
Hello everyone, I am glad to announce the first version of the RProjectConnector, a binding between Pharo and R using NativeBoost. You can now call directly your R methods from Pharo: data := (1 to: 1000) collect: #yourself. res := (#acf asRFunctionWith: {data}) eval To use it, you should copy

[Pharo-dev] Excel binding

2014-12-08 Thread Blondeau Vincent
Hi, Does someone know if there is a mean to access Excel sheets from Pharo to get data? I don't want to use .csv files but .xls/.xlsx files. Thanks in advance Cheers, Vincent BLONDEAU Ce message et les pi?ces jointes sont confidentiels et r?serv?s ? l'usage

Re: [Pharo-dev] Excel binding

2014-12-08 Thread Blondeau Vincent
...@reauktion.de escribió: On 2014-12-08 15:22, Blondeau Vincent wrote: Does someone know if there is a mean to access Excel sheets from Pharo to get data? I don't want to use .csv files but .xls/.xlsx files. If you're just going to use .xlsx files, it might be possible to unzip the file and peek the xml

Re: [Pharo-dev] Excel binding

2014-12-08 Thread Blondeau Vincent
...@reauktion.de escribió: On 2014-12-08 15:22, Blondeau Vincent wrote: Does someone know if there is a mean to access Excel sheets from Pharo to get data? I don't want to use .csv files but .xls/.xlsx files. If you're just going to use .xlsx files, it might be possible to unzip the file and peek the xml

Re: [Pharo-dev] Excel binding

2014-12-09 Thread Blondeau Vincent
De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Markus Fritsche Envoyé : lundi 8 décembre 2014 19:26 À : Pharo Development List Objet : Re: [Pharo-dev] Excel binding Replies inline On 08.12.2014 17:07, Blondeau Vincent wrote: De : Pharo-dev [mailto:pharo-dev-boun

Re: [Pharo-dev] Excel binding

2014-12-10 Thread Blondeau Vincent
Nice! Can I extend your project to add the .xlsx reading? Regards, Vincent De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de ? Envoyé : mercredi 10 décembre 2014 01:16 À : Pharo Development List Objet : Re: [Pharo-dev] Excel binding Yes, including this, but

Re: [Pharo-dev] [ANN] RProjectConnector V1.0

2014-12-16 Thread Blondeau Vincent
-Message d'origine- De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de csra...@bol.com.br Envoyé : mardi 16 décembre 2014 15:14 À : pharo-dev@lists.pharo.org Objet : Re: [Pharo-dev] [ANN] RProjectConnector V1.0 Vincent BLONDEAU a ecrit: Hello everyone, I am

Re: [Pharo-dev] Pharo-dev Digest, Vol 20, Issue 158

2014-12-17 Thread Blondeau Vincent
-Message d'origine- De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de csra...@bol.com.br Envoyé : mardi 16 décembre 2014 18:48 À : pharo-dev@lists.pharo.org Objet : Re: [Pharo-dev] Pharo-dev Digest, Vol 20, Issue 158 Hi Vincent, Hi Cesar, Goferit

[Pharo-dev] NativeBoost libraries hosting

2014-12-19 Thread Blondeau Vincent
Hi, Some of us are developing some applications by using NativeBoost, which is a great tool for Pharo. But when we want to distribute our application, we have to give the libraries with it. We can integrate the library in the package, give a link to download an application and copy the

Re: [Pharo-dev] Recover lost changes | Where are class definitions?

2015-01-28 Thread Blondeau Vincent
Hi, It is a known bug: https://pharo.fogbugz.com/f/cases/13290/Recover-lost-changes-doesn-t-recover-classes-created There are not only the classes but all the refactorings are not saved in the recent changes. You can't display them or having them back. I think that it is a pity that is doesn't

Re: [Pharo-dev] Wrapping RegQueryValueExA in NativeBoost

2015-01-05 Thread Blondeau Vincent
Hi, Happy new year too! I succeeded to have a working example. I wrote the code but I can't commit it. Can you add me on the project please? Just to give some indications for the code I changed. Globally the primitive call is good. But when you pass 'nil' as argument for the primitive, it

Re: [Pharo-dev] [Pharo-users] [ANN] RProjectConnector V1.0

2015-03-17 Thread Blondeau Vincent
' module: 'libR.dylib' or self nbGetSymbolAddress: 'Rf_initEmbeddedR' module: '/usr/lib/libR.dylib' But i had not success. Could someone help me? I am doing something wrong? Thanks, Juampi 2014-12-08 11:10 GMT-03:00 Blondeau Vincent vincent.blond

Re: [Pharo-dev] Critical change to compiler, needs testing

2015-08-18 Thread Blondeau Vincent
: - load slice 16199 - load slice 16250 - execute postload: CompiledMethod initialize I tried that in moose 6.0, based on Pharo5.0 update: #50241 and It works fine. El mar., 18 de ago. de 2015 a la(s) 11:32 a. m., Blondeau Vincent vincent.blond...@worldline.commailto:vincent.blond...@worldline.com

Re: [Pharo-dev] Critical change to compiler, needs testing

2015-08-18 Thread Blondeau Vincent
Hi Guille, I loaded your slice in the last Moose image, and it not possible to browse any source code through nautilus… Maybe you should take a look? Cheers, Vincent De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Guillermo Polito Envoyé : mardi 18 août 2015 11:13 À :

Re: [Pharo-dev] World Menu associated mouse click

2015-08-17 Thread Blondeau Vincent
Hi, There is a setting to have this consistence (deactivated by default): AppearanceDesktopInvert right click on world menu in Linux and Windows By the way, the buttons are not inverted under Mac (conventional). I agree that the context click should open the world menu by default.. Cheers,

Re: [Pharo-dev] Google Code Shutdown

2015-08-03 Thread Blondeau Vincent
Hi, Sorry but I am using Windows… not because I want to but because I have to... So the therapy will not work ;) Actually, the bugtracker of Moose can be on github, but the git user experience under Windows has to be improved if we want to use efficiently the other functionalities of github

Re: [Pharo-dev] Google Code Shutdown

2015-08-03 Thread Blondeau Vincent
option works also if you want to install MacOS on your windows pc. On Mon, Aug 3, 2015 at 1:13 PM Blondeau Vincent vincent.blond...@worldline.commailto:vincent.blond...@worldline.com wrote: Hi, Sorry but I am using Windows… not because I want to but because I have to... So the therapy

Re: [Pharo-dev] Windows users, please test!

2015-08-03 Thread Blondeau Vincent
Thanks Esteban! I will try :) Vincent De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Esteban Lorenzano Envoyé : lundi 3 août 2015 15:22 À : Pharo Development List Objet : [Pharo-dev] Windows users, please test! I made a new SLICE trying to fix the FT2 crash problem

Re: [Pharo-dev] Windows users, please test!

2015-08-03 Thread Blondeau Vincent
Seems to work! I will use it to develop and keep you informed tomorrow. Vincent De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Esteban Lorenzano Envoyé : lundi 3 août 2015 15:22 À : Pharo Development List Objet : [Pharo-dev] Windows users, please test! I made a new

[Pharo-dev] Smalltalkhub instable

2015-10-07 Thread Blondeau Vincent
Hi, It is very hard to work because Smalltalkhub is very instable today. I wanted to launch https://ci.inria.fr/moose/job/moose-6.0 but I get either an 400 or 500 error... (It seems to work now but for how long?) Can somebody could look at this issue ? Thanks in advance, Vincent BLONDEAU

Re: [Pharo-dev] Smalltalkhub instable

2015-10-07 Thread Blondeau Vincent
Thanks Marcus Vincent De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Marcus Denker Envoyé : mercredi 7 octobre 2015 16:56 À : Pharo Development List Objet : Re: [Pharo-dev] Smalltalkhub instable On 07 Oct 2015, at 15:47, Blondeau Vincent <vincent.bl

Re: [Pharo-dev] [Pharo-users] [ann] brick on top of bloc - preview

2015-08-26 Thread Blondeau Vincent
Loading traits only is working, there are traits in Moose and it is well working... E.g.: Trait named: #TOODependencyQueries uses: TDependencyQueries category: 'Famix-Core' Vincent -Message d'origine- De : Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] De la

[Pharo-dev] GTDebugger not draggable with latest VM

2015-12-04 Thread Blondeau Vincent
Hi, I have a problem on the latest Moose6.0 image. I was not able to open a Roassal view, I had a NativeBoost Generic failure... So I updated the VM to last stable, and, now, the GTdebugger and the Moose panel are not draggable anymore... Can somebody is able to reproduce the problem? Thanks

[Pharo-dev] Smalltalkhub is very instable this afternoon

2015-11-20 Thread Blondeau Vincent
Hello, Can Smalltalkhub be restarted (or other) because it is impossible to work by getting continuously errors 500, 503, 403, 401 while loading or committing? TIA Cheers, Vincent BLONDEAU Ce message et les pi?ces jointes sont confidentiels et r?serv?s ?

Re: [Pharo-dev] Smalltalkhub is very instable this afternoon

2015-11-20 Thread Blondeau Vincent
Thx Esteban ! De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Esteban Lorenzano Envoyé : vendredi 20 novembre 2015 17:50 À : Pharo Development List Objet : Re: [Pharo-dev] Smalltalkhub is very instable this afternoon done On 20 Nov 2015, at 11:41, Blondeau Vincent

[Pharo-dev] Issue with large file path on windows

2015-11-20 Thread Blondeau Vincent
Hello, I would like to read from Pharo a file with a long name (so more than 255 chars) under Windows. A thread from last month (13 oct): "Re: [Pharo-dev] [Vm-dev] Re: issue with large file path on windows", talks about a patch. Does it has been integrated? If it has, which VM should I take to

Re: [Pharo-dev] Pharo50 spur works on CentOS?

2016-01-12 Thread Blondeau Vincent
rver startDefaultOn: 8080' > > > > ? > > > > I.e. the --no-quit AFTER the eval. > > yes, is like that :) > > > > > http://zn.stfx.eu/zn/build-and-deploy-1st-webapp/#runningarealcloudser > > ver > > > >> On 11 Jan 2016

Re: [Pharo-dev] How to get launcher launching Spur images?

2016-01-13 Thread Blondeau Vincent
> -Message d'origine- > De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de > Stephan Eggermont > Envoyé : mercredi 13 janvier 2016 11:45 > À : pharo-dev@lists.pharo.org > Objet : Re: [Pharo-dev] How to get launcher launching Spur images? > > On 12-01-16 21:10,

Re: [Pharo-dev] How to get launcher launching Spur images?

2016-01-13 Thread Blondeau Vincent
> Envoyé : mercredi 13 janvier 2016 12:35 > À : pharo-dev@lists.pharo.org > Objet : Re: [Pharo-dev] How to get launcher launching Spur images? > > On 13-01-16 12:25, Blondeau Vincent wrote: > > Under Windows, this cmd is working: > > OSProcess command: $"

Re: [Pharo-dev] Pharo50 spur works on CentOS?

2016-01-12 Thread Blondeau Vincent
12 Jan 2016, at 10:50, Esteban Lorenzano <esteba...@gmail.com> > wrote: > > > > > > > >> On 12 Jan 2016, at 10:34, Sven Van Caekenberghe <s...@stfx.eu> wrote: > >> > >> > >>> On 12 Jan 2016, at 10:28, Blondeau Vincent > <v

Re: [Pharo-dev] Pharo50 spur works on CentOS?

2016-01-12 Thread Blondeau Vincent
Pharo-dev] Pharo50 spur works on CentOS? > > But you cannot use it as a general command. > If you use a subcommand (most likely) then you do not have it unless the > subcommand defines it. > > Esteban > > > On 12 Jan 2016, at 11:12, Blondeau Vin

Re: [Pharo-dev] Pharo50 spur works on CentOS?

2016-01-12 Thread Blondeau Vincent
cCommandLineHandler handles default command line arguments and > options. > > It clearly says "without activating any other command line handler". So using > --no-quit BEFORE the subcommand annihilates the subcommand (AFAIU). > > > On 12 Jan 2016, at 11:28, Blondeau Vi

Re: [Pharo-dev] [UFFI] Call a function where argument type is char ** (argv)

2016-05-31 Thread Blondeau Vincent
TL;DR: How to pass as argument an array of Strings (char **) with Unified-FFI? Vincent De : Blondeau Vincent Envoyé : mercredi 25 mai 2016 13:58 À : Pharo Development List Objet : [UFFI] Call a function where argument type is char ** (argv) Hello, I have written a R bridge in Pharo and I would

Re: [Pharo-dev] Pharo50 spur works on CentOS?

2016-01-11 Thread Blondeau Vincent
ghe > Envoyé : lundi 11 janvier 2016 17:03 > À : Pharo Development List > Objet : Re: [Pharo-dev] Pharo50 spur works on CentOS? > > > > On 11 Jan 2016, at 16:51, Blondeau Vincent > <vincent.blond...@worldline.com> wrote: > > > > Hello, > > > >

[Pharo-dev] Pharo50 spur works on CentOS?

2016-01-11 Thread Blondeau Vincent
Hello, I just wanted to run a latest Pharo image on a CentOS server to run a Zinc server. So I did: curl get.pharo.org/50+vm | bash ./pharo Pharo.image eval "1+1" evals to 2 But, ./pharo Pharo.image --no-quit eval "ZnServer startOn: 8080." returns:

Re: [Pharo-dev] Pharo50 spur works on CentOS?

2016-01-11 Thread Blondeau Vincent
11, 2016 at 1:55 PM, Blondeau Vincent <vincent.blond...@worldline.com<mailto:vincent.blond...@worldline.com>> wrote: Thanks for your answer. However, it seems that the server does not start with: ./pharo -vm-display-null -vm-sound-null Pharo.image --no-quit eval "ZnServer

Re: [Pharo-dev] How to get launcher launching Spur images?

2016-01-14 Thread Blondeau Vincent
I just solved the bug that appears on Pharo 5, updated the configuration and uploaded it to the catalogs. It should work now. Vincent Ps: I was using a Pharo 4.0 image De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de stepharo Envoyé : jeudi 14 janvier 2016 10:44 À :

Re: [Pharo-dev] How to get launcher launching Spur images?

2016-01-13 Thread Blondeau Vincent
is the conclusion? > Can anybody get the launcher open both prespur and spur images? I can. You can try the latest version. It should work. Vincent > > Stef > > > Le 13/1/16 13:16, Blondeau Vincent a écrit : > > I confirm it works under W7 with Spur and not spur images. >

[Pharo-dev] Epicea tests failure under Windows (WAS: RE: [ANN] We are in "code freeze" for Pharo 5)

2016-02-04 Thread Blondeau Vincent
I just tried to integrate and the tests are failing when reopening the image. Just added the opening of the session file at the right place and the closing of the file at the end of the critical section. Now, it works fine for me (under W7 of course ;): Name: Ombu-VincentBlondeau.191 Author:

Re: [Pharo-dev] Epicea tests failure under Windows (WAS: RE: [ANN] We are in "code freeze" for Pharo 5)

2016-02-05 Thread Blondeau Vincent
Very strange bug indeed that happens on windows machines that crashes the VM. I succeeded to reduce the problem to an evaluation of a collection… Can someone have the same issue under Windows or Mac? To reproduce : Copy paste the contents of the attached file in the playground and print it or

Re: [Pharo-dev] Epicea tests failure under Windows (WAS: RE: [ANN] We are in "code freeze" for Pharo 5)

2016-02-05 Thread Blondeau Vincent
Indeed… I get a crash of Pharo when I launch the tests… Vincent De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Marcus Denker Envoyé : vendredi 5 février 2016 13:01 À : Pharo Development List Objet : Re: [Pharo-dev] Epicea tests failure under Windows (WAS: RE: [ANN] We

Re: [Pharo-dev] Epicea tests failure under Windows (WAS: RE: [ANN] We are in "code freeze" for Pharo 5)

2016-02-05 Thread Blondeau Vincent
, stepharo <steph...@free.fr<mailto:steph...@free.fr>> wrote: Thanks vincent!!!!! Le 4/2/16 16:25, Blondeau Vincent a écrit : I just tried to integrate and the tests are failing when reopening the image. Just added the opening of the session file at the right place and the closing

Re: [Pharo-dev] Recursion inside #doesNotUnderstand: method. Why?

2016-02-25 Thread Blondeau Vincent
Hi, Because when you are receiving a DNU, you have the possibility to implement the method before resuming the exception. If you choose to implement the method, the message is sent again to the newly created method and the execution restarts. Vincent De : Pharo-dev

Re: [Pharo-dev] ZTimestamp improvement

2016-02-25 Thread Blondeau Vincent
t : Re: [Pharo-dev] ZTimestamp improvement > > Yes I saw what you did and indeed the same fix needs to be applied to > ZTimestamp. I will do it after adding some tests. Thx! > > > On 25 Feb 2016, at 14:06, Blondeau Vincent > <vincent.blond...@worldline.com> wrote: > >

[Pharo-dev] ZTimestamp improvement

2016-02-25 Thread Blondeau Vincent
Hello, I use Ztimestamp to parse a date but the time zone offset is wrongly set: (DateAndTime readTimezoneOffsetFrom: '+0530' readStream) printString gives '0:05:00:00' instead of '0:05:30:00'. See https://pharo.fogbugz.com/f/cases/17693/Time-offset-parsing-is-false for the DateAndTime issue.

Re: [Pharo-dev] How to run a new image to execute a process

2016-02-29 Thread Blondeau Vincent
Hello, The main problem under Windows is that the return value of the execution of the process cannot be received because the stdin stdout streams are not integrated. But I think you should be able to launch the process and to find a way to communicate between both images (Http or file

[Pharo-dev] What is the limit of prespur VM memory under Windows?

2016-02-29 Thread Blondeau Vincent
Hi, I am confronted with a memory issue under Windows. I have an image of 745Mo with a Moose model, and I cannot instantiate a string of 30Mo: I get a OutOfMemoryException. The theoretical limit is 2Go, isn't it? I have a prespur vm under a Windows 64 bits: Smalltalk vm version:

Re: [Pharo-dev] Why the Spotter list is truncated?

2016-01-25 Thread Blondeau Vincent
the meantime, you can use: "printOn: #senders” and it will work for now. > > Please open a bug report in the Pharo bug tracker. > > Cheers, > Doru > > > > > On Jan 25, 2016, at 2:16 PM, Blondeau Vincent > <vincent.blond...@worldline.com> wrote: > > > &g

Re: [Pharo-dev] gtdebugger debug actions buttons

2016-01-27 Thread Blondeau Vincent
I agree with Christophe. Maybe put the buttons on the line under? Cheers, Vincent > -Message d'origine- > De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de > Christophe Demarey > Envoyé : mercredi 27 janvier 2016 09:07 > À : Pharo Development List > Objet :

[Pharo-dev] Shortcuts are broken under Windows

2016-02-17 Thread Blondeau Vincent
Hi, Due to recent changes on shortcuts, on the new image several shortcuts (CTRL+V,Z,M,W,Enter and the Alt ones) are not active at least in the debugger and in the senders list... I would like to fix this but I don't know what changed... How do I change the configuration? Is it in pragmated

Re: [Pharo-dev] Shortcuts are broken under Windows

2016-02-18 Thread Blondeau Vincent
De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Nicolai Hess Envoyé : mercredi 17 février 2016 20:48 À : Pharo Development List Objet : Re: [Pharo-dev] Shortcuts are broken under Windows 2016-02-17 18:33 GMT+01:00 Blondeau Vincent <vincent.blond...@worldline.

[Pharo-dev] [GTInpector] Numeric sorting in occurences column of a Bag

2016-02-18 Thread Blondeau Vincent
Hi, While inspecting a bag, in the Occurrences tab, I would like a numeric sorting of the occurrences column. For now it is an alpha-numeric sort which is not practical with numbers >= 10 So, I saw that is it possible to add a sortedBy: block on the column (through

Re: [Pharo-dev] What is the limit of prespur VM memory under Windows?

2016-03-01 Thread Blondeau Vincent
hooting/caas/sfdcarticles/sfdcarticles/How-to-enable-a-3GB-switch-on-Windows-Vista-Windows-7-or-Windows-XP-s.html To bypass the limit the best way is to use a spur VM honestly. Spur32VMs are limited to around 2.7Gb on Windows. +1 :) _,,,^..^,,,_ (phone) 2016-02-29 18:53 GMT+01:00 Blondeau Vincent &l

Re: [Pharo-dev] What is the limit of prespur VM memory under Windows?

2016-03-01 Thread Blondeau Vincent
flush > > > > > its from > here:http://forum.world.st/New-Cog-VMs-available- > td4764823.html#a4764840 > > With that you ought to easily be able to see how high you can go on a > platform. > > > > Blondeau Vincent wrote > > Hi, > > > > > >

Re: [Pharo-dev] [Pharo-users] Call about Numerical Methods in Pharo :)

2016-03-09 Thread Blondeau Vincent
e what this binding is about? how can I try? Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. On Mar 3, 2016, at 6:43 AM, Blondeau Vincent <vincent.blond...@worldline.com<mailto:vincent.blond...@worldline.com>> wrote: Hi,

Re: [Pharo-dev] [Pharo-users] Call about Numerical Methods in Pharo :)

2016-03-09 Thread Blondeau Vincent
e: [Pharo-dev] [Pharo-users] Call about Numerical Methods in Pharo > :) > > On Thu, Mar 3, 2016 at 10:43 AM, Blondeau Vincent > <vincent.blond...@worldline.com> wrote: > > Hi, > > > > That's a very good idea. > > For now, I use a Pharo-R binding to make the sta

Re: [Pharo-dev] [Pharo-users] Call about Numerical Methods in Pharo :)

2016-03-03 Thread Blondeau Vincent
Hi, That's a very good idea. For now, I use a Pharo-R binding to make the statistics, but it is better if it is directly in the image. For my part, it should be nice to have: - Principal Component Analysis - Time series - Correlation with several variables (Correlation matrix) + significance

Re: [Pharo-dev] Looking for moderators and helpers for the Pharo Mooc

2016-04-28 Thread Blondeau Vincent
Me too. Vincent > -Message d'origine- > De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Serge > Stinckwich > Envoyé : jeudi 28 avril 2016 14:45 > À : Pharo Development List > Objet : Re: [Pharo-dev] Looking for moderators and helpers for the Pharo Mooc > > I can

[Pharo-dev] [UFFI] Call a function where argument type is char ** (argv)

2016-05-25 Thread Blondeau Vincent
Hello, I have written a R bridge in Pharo and I would like to migrate it from NativeBoost to UFFI. Most of the changes are easy to do but I am stuck to a double pointer problem. I have to call the function: int Rf_initEmbeddedR(int argc, char ** argv). I know how to give the int but the char **

Re: [Pharo-dev] VTermOutputDriver

2016-07-11 Thread Blondeau Vincent
Hi, You should check the stacktrace : https://ci.inria.fr/pharo/job/Pharo-6.0-Issue-Validator/5662/console Cheers, Vincent De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Valentin Ryckewaert Envoyé : lundi 11 juillet 2016 10:35 À : Pharo Development List Objet :

Re: [Pharo-dev] VTermOutputDriver

2016-07-11 Thread Blondeau Vincent
eleted methods executed (I deleted the method reset for example) I don't really see what i can do to solve this... 2016-07-11 10:39 GMT+02:00 Blondeau Vincent <vincent.blond...@worldline.com<mailto:vincent.blond...@worldline.com>>: Hi, You should check the stacktrace : https://ci.inria.fr/p

Re: [Pharo-dev] [Moose-dev] Re: Segmentation fault on Moose 6.1 Build

2017-03-02 Thread Blondeau Vincent
t > Objet : [Moose-dev] Re: [Pharo-dev] Segmentation fault on Moose 6.1 Build > > Hi, > > Was there a change related to the stable VM? > > Cheers, > Doru > > > > On Mar 2, 2017, at 11:23 AM, Blondeau Vincent > <vincent.blond...@worldline.com> wrote: > >

[Pharo-dev] Segmentation fault on Moose 6.1 Build

2017-03-02 Thread Blondeau Vincent
Hi, The latest builds of the Moose6.1 image are failing due to a segmentation fault. Here is the link to the last build: https://ci.inria.fr/moose/job/moose-6.1/550/console How can we fix this? Thanks in advance, Cheers, Vincent

[Pharo-dev] [ANN] RProjectConnector V2.1

2016-09-01 Thread Blondeau Vincent
Hello everyone, I am glad to announce the release of version 2.1 of the RProjectConnector. The binding between Pharo and R (https://www.r-project.org/) is now translated to UFFI and so to Pharo 6.0. You can call directly your R methods from Pharo. For example, with the famous iris clustering

Re: [Pharo-dev] [Pharo-users] [ANN] RProjectConnector V2.1

2016-09-01 Thread Blondeau Vincent
? It would be great Anyway, this is great Vincent! Keep pushing! Alexandre On Sep 1, 2016, at 12:42 PM, Blondeau Vincent <vincent.blond...@worldline.com<mailto:vincent.blond...@worldline.com>> wrote: Hello everyone, I am glad to announce the release of version 2.1 of the RProj

Re: [Pharo-dev] [ANN] RProjectConnector V2.1

2016-09-13 Thread Blondeau Vincent
gins > directory but without success ... It should be at the same location that libcairo.2.dylib > Is there a way to say where are the R dll instead of copying them ? > Didn't think so .. Maybe the VM developers knows ? Thanks! Vincent > Thank you. > > > > > On Thu,

Re: [Pharo-dev] [Pharo-users] [ANN] RProjectConnector V2.1

2016-09-14 Thread Blondeau Vincent
Address method. Can you try again with version 73 ? Thanks, Vincent > > > On Tue, Sep 13, 2016 at 6:25 PM, Blondeau Vincent > <vincent.blond...@worldline.com> wrote: > > > > > > > >> -Message d'origine- > >> De : Pharo-dev [mailto

Re: [Pharo-dev] [REMEMBER] TechTalk tomorrow 16UTC

2016-10-25 Thread Blondeau Vincent
in Argentina but the link now (23:57hs) says "The instant invite is invalid or has expired" 2016-10-24 12:08 GMT-03:00 p...@highoctane.be<mailto:p...@highoctane.be> <p...@highoctane.be<mailto:p...@highoctane.be>>: https://discord.gg/EBDhD On Mon, Oct 24, 2016 at 4

Re: [Pharo-dev] [REMEMBER] TechTalk tomorrow 16UTC

2016-10-24 Thread Blondeau Vincent
I think that his tomorrow is Tuesday, because he sent the email Monday (CEST). But, I will be interested by a link to find the TechTalk on discord too. Thanks Vincent > -Message d'origine- > De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de > Dale Henrichs > Envoyé

Re: [Pharo-dev] [Moose-dev] Re: Segfault on Moose 6.1 jobs

2016-11-17 Thread Blondeau Vincent
...@list.inf.unibe.ch] De la part de Eliot Miranda Envoyé : mercredi 16 novembre 2016 18:41 À : Pharo Development List Cc : Moose-related development Objet : [Moose-dev] Re: [Pharo-dev] Segfault on Moose 6.1 jobs Hi Vincent, On Wed, Nov 16, 2016 at 2:56 AM, Blondeau Vincent <vincent.bl

[Pharo-dev] Segfault on Moose 6.1 jobs

2016-11-16 Thread Blondeau Vincent
Hello, I would like to report some random segfaults happing during the build of the Moose 6.1 image (based on Pharo 6). Please find attached the latest failing stack trace. Here are the 2 jobs that fails: https://ci.inria.fr/moose/job/moose-6.1/345/console

[Pharo-dev] Crash.dmp not created on windows

2016-12-12 Thread Blondeau Vincent
Hello, Since the release of the spur vm, the crash dump file (crash.dmp) is not generated when the image crashes under Windows (7 especially). Now, I have an image I cannot use because its crashed at startup and I cannot report a bug to VM developers in the purpose to resolve the crash. An

Re: [Pharo-dev] Test and Patch for writeStream error

2017-04-18 Thread Blondeau Vincent
Hi, Thanks for reporting! If you want to contribute and have your fix integrated, I advise you to follow the procedure here: http://pharo.org/contribute-propose-fix If you need help, don't hesitate to reply! Regards, Vincent > -Message d'origine- > De : Pharo-dev

Re: [Pharo-dev] [Moose-dev] Re: Re: Segmentation fault on Moose 6.1 Build

2017-03-03 Thread Blondeau Vincent
face extent: Display extent. > > Display getCanvas drawImage: surf asForm at: 0@0. > > ] on: Error do: [ ]. > > self position: self position + (50@0). "To observe survival of seg > fault" '. > > Smalltalk snapshot: true an

Re: [Pharo-dev] Growing large images: the case of Moose models

2017-03-03 Thread Blondeau Vincent
Thanks Eliot for the implementation of the new compactor! Just to add a piece of information: the mse imported have a size of 40Mb. Cheers, Vincent De : Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] De la part de Clément Bera Envoyé : vendredi 3 mars 2017 11:56 À : Discusses

Re: [Pharo-dev] [Moose-dev] Re: Re: Segmentation fault on Moose 6.1 Build

2017-03-02 Thread Blondeau Vincent
:) > > > > Doru > > > > > > > On Mar 2, 2017, at 11:33 AM, Pavel Krivanek > <pavel.kriva...@gmail.com> wrote: > > > > > > On image side nothing relevant happened in 60418 where it started to > fail. > > > > > > -- Pavel >

Re: [Pharo-dev] [Moose-dev] Re: Re: Re: Segmentation fault on Moose 6.1 Build

2017-03-02 Thread Blondeau Vincent
e: [Pharo-dev] Re: Re: Segmentation fault on Moose > 6.1 Build > > As I said, thanks for doing that. Just make sure to announce such changes in > the future because they are hard to debug otherwise. > > Thanks again. > > Cheers, > Doru > > > On Mar 2, 2017, at 4:45 PM,

[Pharo-dev] Need help for collecting tests usage data

2017-06-08 Thread Blondeau Vincent
Hi, An intern of the RMod research team needs your help: Cheers, Vincent De : Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] De la part de Benoit Verhaeghe Envoyé : mercredi 7 juin 2017 16:47 À : pharo-us...@lists.pharo.org Objet : [Pharo-users] Need help for collecting tests usage

Re: [Pharo-dev] please test download for Pharo 6.0

2017-05-31 Thread Blondeau Vincent
My review: - For Pharo x64: Version 6.0 for OS X, GNU/Linux, and Windows -> Version 6.0 for OS X and GNU/Linux. - The VM and .sources are the same as for Pharo5. -> The VM and .sources are the same as for Pharo 6. - http://files.pharo.org/image/70/latest.zip -> dead link (but this is expected