Re: [Pharo-users] Gemstone as a service?

2018-08-19 Thread Iwan Vosloo
Hi, On 18/08/2018 18:25, Tim Mackinnon wrote: I was steered towards Digital Ocean which was really simple to setup and very cheap. Although I think this is all heading towards kuberneties and docker images as the end game. Although we are not using Docker and kubernetes currently, we've been

Re: [Pharo-users] Gemstone as a service?

2018-08-19 Thread Iwan Vosloo
Hi Andy, On 18/08/2018 18:12, Andy Burnett wrote: I was wondering if anyone offers GaaS? I would love to be able to just focus on writing code, and leave the system management to others. Gemstone does seem to offer a very complete package. We have one client for whom we are managing a fair nu

Re: [Pharo-users] Error in fresh image

2018-08-19 Thread Stephan Eggermont
Jeff Gray wrote: > I just downloaded and unzipped the Pharo Standalone for Windows. > I unzipped it and copied the image and changes to my existing Pharo 6.1 > folder. > The first thing I see is this error: > > > That might be a windows bug. Does

Re: [Pharo-users] Gemstone as a service?

2018-08-19 Thread James Foster
> On Aug 19, 2018, at 3:49 PM, Andy Burnett > wrote: > > Might [someone provide] GaaS ... through Heroku[?] Regarding Heroku, see https://programminggems.wordpress.com/2013/07/16/gemstones-on-heroku/ and https://github

Re: [Pharo-users] Error in fresh image

2018-08-19 Thread Jeff Gray
Here's the link as pictured above http://files.pharo.org/platform/Pharo6.1-win.zip -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Gemstone as a service?

2018-08-19 Thread Andy Burnett
James wrote: <<< Will you be coming to ESUG? Perhaps we could discuss this in more detail after my talk on Wednesday at 12:30 (https://esug.github.io/2018- Conference/conf2018.html ). >>> Unfortunately not, so I will have to wait for the slid

Re: [Pharo-users] How best to cope with 2 editor/browser frameworks - Calypso and RubSmalltalkEditor

2018-08-19 Thread Denis Kudriashov
2018-08-19 23:12 GMT+01:00 Tim Mackinnon : > Thanks Denis - I guess for now I can put the methods in RubSmalltalkEditor > so that the playground can operate and then my Calypso plugins can also > reference that code too (if class methods). > > Is the idea that playground will become part of Calyps

Re: [Pharo-users] How best to cope with 2 editor/browser frameworks - Calypso and RubSmalltalkEditor

2018-08-19 Thread Denis Kudriashov
2018-08-19 23:12 GMT+01:00 Tim Mackinnon : > Thanks Denis - I guess for now I can put the methods in RubSmalltalkEditor > so that the playground can operate and then my Calypso plugins can also > reference that code too (if class methods). > > Is the idea that playground will become part of Calyps

Re: [Pharo-users] Where (as in Git project) should Calypso browser source code commands live?

2018-08-19 Thread Denis Kudriashov
it is separate repo https://github.com/pharo-ide/SystemCommands 2018-08-19 23:12 GMT+01:00 Tim Mackinnon : > Thanks for chipping in Denis - I guess what’s weird about this set of > commands is that they are a bit editor specific as they all move your > cursor or text selection to specific places

Re: [Pharo-users] Where (as in Git project) should Calypso browser source code commands live?

2018-08-19 Thread Tim Mackinnon
Thanks for chipping in Denis - I guess what’s weird about this set of commands is that they are a bit editor specific as they all move your cursor or text selection to specific places (the other commands are much more generic). Still, I think it makes sense to put them in a sub-package like Sys

Re: [Pharo-users] How best to cope with 2 editor/browser frameworks - Calypso and RubSmalltalkEditor

2018-08-19 Thread Tim Mackinnon
Thanks Denis - I guess for now I can put the methods in RubSmalltalkEditor so that the playground can operate and then my Calypso plugins can also reference that code too (if class methods). Is the idea that playground will become part of Calypso too? If so, I can add the methods I need as an e

Re: [Pharo-users] Where (as in Git project) should Calypso browser source code commands live?

2018-08-19 Thread Denis Kudriashov
Hi Tim. The idea was to have reusable commands to work with system objects (method, classes and packages). It is clear that those commands should not depends on browser and should be accessible from other tools. This is the reason why they are packaged separately (SystemCommands

Re: [Pharo-users] How best to cope with 2 editor/browser frameworks - Calypso and RubSmalltalkEditor

2018-08-19 Thread Denis Kudriashov
Hi. I dont't know answer to your question. But for the note: Calypso was needed to override existing way to spawn implementors/senders and so on. So I added subclass of RubSmalltalkEditor - ClyTextEditor which overrides required methods. So if you will put new methods into the RubSmalltalkEditor t

[Pharo-users] How best to cope with 2 editor/browser frameworks - Calypso and RubSmalltalkEditor

2018-08-19 Thread Tim Mackinnon
Hi I’m trying to work out the best way to cope with the fact that we are in a hybrid place where the Playground is using an RubSmalltalkEditor but Calypso has its own mechanisms for editing code. I have commands that should/can work in both the playground as well as code method editor (in Calyp

[Pharo-users] Where (as in Git project) should Calypso browser source code commands live?

2018-08-19 Thread Tim Mackinnon
Hi - I’ve had a few changes lined up to try and help P7 be a little more IntelliJ like. But I’m not sure what package my small extensions should live in? I used SycRenameTempCommand as an example - but it lives in a package called "SystemCommands-SourceCodeCommands” - however I can’t see where t

Re: [Pharo-users] Gemstone as a service?

2018-08-19 Thread James Foster
> On Aug 19, 2018, at 1:28 AM, Marten Feldtmann wrote: > > This would be of general interest ... I suppose > > Marten I’m certainly hoping so! From the schedule: A Browser-based IDE for Cloud-hosted GemStone When Wed, September 12, 12:30pm – 12:45pm Description James Foster Polito While Smal

Re: [Pharo-users] Error in fresh image

2018-08-19 Thread Ben Coman
On Sat, 18 Aug 2018 at 20:21, Jeff Gray wrote: > > I am trying to recover my project from a broken image, so thought I could get > a fresh image and then import from the old changes file. > > I just downloaded and unzipped the Pharo Standalone for Windows. > I unzipped it and copied the image and

Re: [Pharo-users] RubShoutStylerDecorator doesnotunderstand: #move:for:controller:

2018-08-19 Thread Jeff Gray
I've fixed it. Looks like a lot of the code, but not all, had been auto-formatted. I didn't consciously do it, but I may have fallen asleep while coding and mashed some keys. I'm getting up early (4am) so coming home on the train at 6:00pm is pretty sketchy :-) I pulled the code into a new image fr

Re: [Pharo-users] Gemstone as a service?

2018-08-19 Thread Marten Feldtmann
This would be of general interest ... I suppose Marten Am 19.08.2018 um 05:15 schrieb James Foster: > Will you be coming to ESUG? Perhaps we could discuss this in more detail > after my talk on Wednesday at 12:30 > (https://esug.github.io/2018-Conference/conf2018.html).  > > James Foster > >> O