Re: [Pharo-users] Glamour: update presenter with new text

2017-07-14 Thread Hilaire
Thanks Doru, it works as a charm! I don't think I could find it by myself, or I will have to become a Glamour expert. To make it perfect, there is still a fix needed for the DrGeo script browser: The class method 'scriptName' of each Dr. Geo script class returns a string, it used in the browser

[Pharo-users] Creating the smallest server runtime footprint

2017-07-14 Thread Tim Mackinnon
Hi - buoyed by the success of a minimal image (thanks Pavel), I'm wondering if I can get even smaller. There are lots of .so's in the vm which wouldn't make sense on a server once deployed - sound, maybe libgit ... Is there a list of the essential ones, or tips on what I can strip out of the L

Re: [Pharo-users] Creating the smallest server runtime footprint

2017-07-14 Thread Tim Mackinnon
Related to this question - in the Linux vm there are several .so files that have numerical extensions as well as the same named .so file. Are these merge conflicts or platform variations of the same files? E.g. libSDL2-2.0.so.0.4.1 & libSDL2-2.0.so & libSDL2.so Are all in there? Tim Sent fr

Re: [Pharo-users] Glamour: update presenter with new text

2017-07-14 Thread Tudor Girba
Hi, > On Jul 14, 2017, at 9:52 AM, Hilaire wrote: > > Thanks Doru, it works as a charm! Great. > I don't think I could find it by myself, or I will have to become a Glamour > expert. Actually, this is not really related to Glamour, but to how CompiledMethods are dealt with by the system. A

[Pharo-users] VoyageMongo not working in Pharo 6?

2017-07-14 Thread kmo
I just had a quick tryout of VoyageMongo in Pharo 6 and VOMongoRepository>>save:anObject fails because UUIDGenerator does not have the method makeSeed. UUIDGenerator >> makeSeed was present in pharo 5. It's not there in pharo 6. I installed from the Catalog browser where VoyageMongo is listed as

Re: [Pharo-users] Is there a 64bit minimal image for either 6.0 or 7.0?

2017-07-14 Thread Guillermo Polito
Two different things: 1) yes, the minimal image is indeed minimal. Actually, the minimal image is around 20% of the full image. Two working directions that are looking for active contributions are: - reduce that 20% so bootstrap times are smaller - modularise the other 80% so that we can easily

Re: [Pharo-users] VoyageMongo not working in Pharo 6?

2017-07-14 Thread Esteban Lorenzano
> On 14 Jul 2017, at 11:31, kmo wrote: > > I just had a quick tryout of VoyageMongo in Pharo 6 and > VOMongoRepository>>save:anObject fails because UUIDGenerator does not have > the method makeSeed. > > UUIDGenerator >> makeSeed was present in pharo 5. It's not there in pharo 6. > > I installe

Re: [Pharo-users] Is there a 64bit minimal image for either 6.0 or 7.0?

2017-07-14 Thread Tim Mackinnon
Hi Guille - thanks for replying and giving me some insight into all of this. I have managed to get something working but there are definitely some issues that may need a bug report? As I initially mentioned - if I download the Linux 64bit VM (curl get.pharo.org/64/ | bash) and then use the mini

Re: [Pharo-users] Seamless - send collections by value

2017-07-14 Thread Denis Kudriashov
Hi Petr. There are few solutions to your problem. 1) You can specify #value strategy for any collections for your network instance: network transferByValue: (Kind of: Collection) For your example you need to apply this strategy on server side. In that case client will continue send collections

Re: [Pharo-users] Peristence with SandStone or Voyage -> Bypassing the saving of a variable.

2017-07-14 Thread sergio ruiz
Oh! good idea.. i’ll take a look..  i ended up throwing them into a temp variable.. then saving.. then bringing it back.. thanks! On July 14, 2017 at 2:20:42 AM, Sabine Manaa (manaa.sab...@gmail.com) wrote: have a look at VOTransientDescription I also have attributes which are not persistent

Re: [Pharo-users] VoyageMongo not working in Pharo 6?

2017-07-14 Thread kmo
Is this what you wanted? ConfigurationOfVoyageMongo>>stable: stable: spec spec for: #'common' version: '1.4'. spec for: #'pharo1.4.x' version: '1.1.1'. spec for: #'pharo2.0.x' version: '1.2.7'. spec for: #'pharo3.x' version: '1.3.1'. spec for: #

Re: [Pharo-users] VoyageMongo not working in Pharo 6?

2017-07-14 Thread Esteban Lorenzano
mmm yes, seems that we forget to update the catalog version. I will do it soon, but for the moment, please install using this: Metacello new repository: 'github://pharo-nosql/voyage:1.5/mc'; baseline: 'Voyage'; load: 'mongo tests'. cheers! Esteban > On 14 Jul 2017, at

Re: [Pharo-users] VoyageMongo not working in Pharo 6?

2017-07-14 Thread kmo
Thanks -- View this message in context: http://forum.world.st/VoyageMongo-not-working-in-Pharo-6-tp4954843p4954893.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] Understanding DateTime and Locale and formatting times in a locale?

2017-07-14 Thread Tim Mackinnon
Hi - I’m really confused about DateAndTime support in Pharo? If I have a server app running in the EU, and a user makes a request from Canada, and I want to format the time they see to be in their timezone - how do I do that with the classes in Pharo? I can ask for a DataAndTime nowUTC, and if

Re: [Pharo-users] Understanding DateTime and Locale and formatting times in a locale?

2017-07-14 Thread Norbert Hartl
Have a look at #asLocal Norbert > Am 14.07.2017 um 23:04 schrieb Tim Mackinnon : > > Hi - I’m really confused about DateAndTime support in Pharo? > > If I have a server app running in the EU, and a user makes a request from > Canada, and I want to format the time they see to be in their timezo

[Pharo-users] Pharacloud Seaside Rest exception when opening the application

2017-07-14 Thread Lionel Akue
Hello everyone, I have a fully working Seaside MDL application in locale. But when I load the image (pharo 6) to ephemeric cloud and try to open the application, I get: WAArgumentNotFoundError: argument "aPhonenumberString" was not found in #(#arg1 #arg2) Debug Full Stack thisContext WAFullPlac

Re: [Pharo-users] Understanding DateTime and Locale and formatting times in a locale?

2017-07-14 Thread Tim Mackinnon
Thanks for chipping in - but its the other way around that I’m after. I am looking at ZTimestamp now -but again I don’t quite get it? ZTimestamp now gives me a timestamp in UTC (great) but how do I format it to show it in say Canadian time? I thought it would be something like: ZTimestamp now

[Pharo-users] [ANN] PharoLambda a demo of Pharo running on AWS Lambda

2017-07-14 Thread Tim Mackinnon
Hi - I’ve been playing around with getting Pharo to run well on AWS Lambda. It’s early days, but I though it might be interesting to share what I’ve learned so far. Usage examples and code at https://gitlab.com/macta/PharoLambda With help from many of the

Re: [Pharo-users] [ANN] PharoLambda a demo of Pharo running on AWS Lambda

2017-07-14 Thread Tim Mackinnon
Things move fast, I already got a shout out from an AWS advocate - https://twitter.com/chrismunns/status/885959425860808704 Tim > On 15 Jul 2017, at 00:39, Tim Mackinnon wrote: > > Hi - I’ve been playing around with getting Pharo to r

Re: [Pharo-users] Understanding DateTime and Locale and formatting times in a locale?

2017-07-14 Thread Tim Mackinnon
Classic - the moment you write something, it suddenly dawns on you… its the other way around. (ZTimezone id: 'America/Halifax’) gmtToLocal: ZTimestamp now… Tim > On 15 Jul 2017, at 00:34, Tim Mackinnon wrote: > > Thanks for chipping in - but its the other way around that I’m after. > > I am

Re: [Pharo-users] Creating the smallest server runtime footprint

2017-07-14 Thread Pierce Ng
On Fri, Jul 14, 2017 at 09:06:44AM +0100, Tim Mackinnon wrote: > Related to this question - in the Linux vm there are several .so files that > have numerical extensions as well as the same named .so file. Are these merge > conflicts or platform variations of the same files? > > libSDL2-2.0.so.0.4.

Re: [Pharo-users] Creating the smallest server runtime footprint

2017-07-14 Thread Hernán Morales Durand
Hi Tim, 2017-07-14 4:59 GMT-03:00 Tim Mackinnon : > Hi - buoyed by the success of a minimal image (thanks Pavel), I'm > wondering if I can get even smaller. > > Can you share a script to reproduce the steps to build a minimal image? Is it reproducible under Windows? Cheers, Hernán

Re: [Pharo-users] [ANN] PharoLambda a demo of Pharo running on AWS Lambda

2017-07-14 Thread Tudor Girba
Nice job! Doru > On Jul 15, 2017, at 1:43 AM, Tim Mackinnon wrote: > > Things move fast, I already got a shout out from an AWS advocate - > https://twitter.com/chrismunns/status/885959425860808704 > > Tim > >> On 15 Jul 2017, at 00:39, Tim Mackinnon wrote: >> >> Hi - I’ve been playing aro