Re: [Pharo-users] Personal Programming onPharo

2018-05-10 Thread Travis Ayres
There is no way to mark the language version, no #pragma stdc version iso99 Delphi: {$IF CompilerVersion >= 17.0} Freepascal: {$if FPC_VERSION > 2} No make files: the compiler handles that trash for you. Compatibility: Freepascal supports Delphi, Object Pascal, and has various switc

Re: [Pharo-users] Personal Programming onPharo

2018-05-10 Thread David T. Lewis
Trygve, Thank you for pressing the SEND button with a shaking hand. I am inspired by your words. But I am only 22 years younger than you, and I hope that others are reading and appreciating what you have to say. Dave On Thu, May 10, 2018 at 12:02:44PM +0200, Trygve Reenskaug wrote: > At 87, I'm

Re: [Pharo-users] Metacello load in code vs. Iceberg menu install? Can you automate remote loading?

2018-05-10 Thread Tim Mackinnon
This was indeed the answer - use the gitlab protocol and specify a branch e.g. Iceberg enableMetacelloIntegration: true. Metacello new baseline: 'PagerDuty'; repository: ‘gitlab:// macta/WillowPagerDuty:master/src'; load. Thanks Gaby Tim > On 10 May 2018, at 01:

Re: [Pharo-users] Package extension. Adding instance variables to classes

2018-05-10 Thread Guillermo Polito
Just be careful, that privateState thing looks like a Moose only Famix feature. It't not available in plain Pharo objects :) On Wed, May 9, 2018 at 2:09 AM, Alidra Abdelghani via Pharo-users < pharo-users@lists.pharo.org> wrote: > > > -- Forwarded message -- > From: Alidra Abdelgh

Re: [Pharo-users] Serializing Excpetion with Fuel on the production and opening debugger on the dev machine - hot to? [Pharo 5]

2018-05-10 Thread Petr Fischer
Thanks to all! Works perfectly! pf > Here’s the snippet to open a debugger (used in Pharo 6 tho) > > materializedContext := (FLMaterializer newDefault > materializeFrom: gzip) root. > > sessionName := 'debug saved Fuel context: {1}' format: {aName}. > > GTGenericS

Re: [Pharo-users] Serializing Excpetion with Fuel on the production and opening debugger on the dev machine - hot to? [Pharo 5]

2018-05-10 Thread Tim Mackinnon
Here’s the snippet to open a debugger (used in Pharo 6 tho) materializedContext := (FLMaterializer newDefault materializeFrom: gzip) root. sessionName := 'debug saved Fuel context: {1}' format: {aName}. GTGenericStackDebugger openOn: ((Proce

Re: [Pharo-users] Serializing Excpetion with Fuel on the production and opening debugger on the dev machine - hot to? [Pharo 5]

2018-05-10 Thread Norbert Hartl
> Am 10.05.2018 um 11:58 schrieb Petr Fischer : > > Hello, what is the current procedure for achieving %subj%? I am on latest > Pharo 5. > > I am serializing server side exception with: > > FLSerializer serialize: anException toFileNamed: 'something'. > > But how to open a debugger after mat

Re: [Pharo-users] Serializing Excpetion with Fuel on the production and opening debugger on the dev machine - hot to? [Pharo 5]

2018-05-10 Thread Tim Mackinnon
PharoLambda does this - I’m not near a computer to extract the code, but if you need it quickly you should find it easily - there is a class method on Lambda - something like debugSavedS3 which shows how to read in a file (from S3) and then launch a debugger. Tim Sent from my iPhone > On 10 M

Re: [Pharo-users] Personal Programming onPharo

2018-05-10 Thread Trygve Reenskaug
At 87, I'm an old man. I'm told that I don't understand modern software, which is true. I use some programs daily: WIN7, Pharo, Thunderbird, ... From time to time, I am told that a new version of the program that fixes bugs and improves security is available. Press the button to install it.  So

[Pharo-users] Serializing Excpetion with Fuel on the production and opening debugger on the dev machine - hot to? [Pharo 5]

2018-05-10 Thread Petr Fischer
Hello, what is the current procedure for achieving %subj%? I am on latest Pharo 5. I am serializing server side exception with: FLSerializer serialize: anException toFileNamed: 'something'. But how to open a debugger after materialization on the "dev machine side"? I found (Google, Mailing lis