Re: [Pharo-users] Securely downloading Pharo

2016-05-03 Thread Peter Uhnák
I guess you could download it from the Jenkins job https://ci.inria.fr/pharo/job/Pharo-5.0-Update-Step-5-Publish/lastSuccessfulBuild/artifact/ although the job itself downloads over http from files.pharo.org… but Jenkins should be fine enough if you are worried about MitM between you and Pharo. F

[Pharo-users] Securely downloading Pharo

2016-05-03 Thread Wilfred Hughes
Is there any way of downloading Pharo securely? I'm trying to download Pharo itself over HTTPS, so I know I can trust the data: $ wget https://files.pharo.org/platform/Pharo4.0-linux.zip --2016-05-02 22:44:34-- https://files.pharo.org/platform/Pharo4.0-linux.zip Resolving files.pharo.org (files.

Re: [Pharo-users] NoSWL Databases

2016-05-03 Thread Stephan Eggermont
On 03/05/16 15:42, AWS wrote: The current course is all about Database management and analysis. We are currently looking at NoSQL databases and I would like to try out one of these against some ideas I have for the project. Did you consider using Gemstone for this? It solves a rather large part

Re: [Pharo-users] Can you help me find this info?

2016-05-03 Thread Offray Vladimir Luna Cárdenas
On minimal images, you could take a look at Cuis: http://cuis-smalltalk.org/ Is not based on Pharo, but could give you some ideas/inspiration. Cheers, Offray On 02/05/16 04:30, Victor RENE wrote: Hello, I am new to Pharo and would like to understand a few things. I can search by myself, but

Re: [Pharo-users] Metaprogramming facilities

2016-05-03 Thread Peter Uhnák
> > More importantly the autogenerated code is a bit stupid > > TBPost >> title: anObject > title := anObject > > this is stupid, so even for generated one I select the argument, press > ctrl+t (or right click + suggestions) and select 'rename' ... and rename it > into something meaningful like

Re: [Pharo-users] Metaprogramming facilities

2016-05-03 Thread Peter Uhnák
1) write them by hand annoying typing required 2) use Class refactorings (right click on class -> refactoring -> class refactoring -> generate accessors; or ctrl+h+a) this will ask you to choose for all attributes… good initially, but really stupid if you are providing e.g. just getters (because

[Pharo-users] [ANN] EventRecorder updated (import/export)

2016-05-03 Thread Torsten Bergmann
Hi, I forgot to mention that for "EventRecorder" there was another pass on the code together with Peter Uhnak. It is now possible to import/export the recordings again and also the UI was updated accordingly (see attached screenshot) Works in Pharo 5.0 - you can load the tool from Catalog or by

Re: [Pharo-users] Metaprogramming facilities

2016-05-03 Thread stepharo
Code not tested but #('title' 'text') do: [:each | | body | body := String new streamContents: [ :s | s nextPutAll: each ; cr; tab; nextPutAll: '^ '; nextPutAll: each ;

Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-03 Thread Peter Uhnák
> prepackaged version of Moose 6 for Windows, Linux y Mac Moose is just Pharo image + changes; you can use the same Moose image on all platforms. And moose is just installed on top of Pharo 5 image (it's just a bunch of commands executed on top of Pharo 5 image https://ci.inria.fr/moose/job/moose-

Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-03 Thread Offray Vladimir Luna Cárdenas
Yes, that would be nice and easier, but I don't know if we have a prepackaged version of Moose 6 for Windows, Linux y Mac or where I can get it. Pointers anyone? Cheers, Offray On 03/05/16 12:33, Johan Fabry wrote: Hola, A thought: you can probably just open an image of a working version of

Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-03 Thread Johan Fabry
Hola, A thought: you can probably just open an image of a working version of yours and do a save-as inside the bundle or zip, overwriting the image that is there. > On May 3, 2016, at 14:03, Offray Vladimir Luna Cárdenas > wrote: > > Hi Johan, > > At this moment I would like the quickest alt

Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-03 Thread Offray Vladimir Luna Cárdenas
Hi Johan, At this moment I would like the quickest alternative, and maybe what you propose is the path to follow. I have downloaded the Windows and Mac bundles. I imagine that creating my own variant would mean to change the pharo binary, image, sources and changes file in each of them to prov

Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-03 Thread Johan Fabry
> On May 3, 2016, at 12:08, Peter Uhnák wrote: > > > > On Tue, May 3, 2016 at 4:55 PM, Johan Fabry > wrote: > > Maybe a silly question, but why don’t you make a 1-file download like the > default options provided for Pharo 4.0 on http://pharo.org/download >

Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-03 Thread Cédrick Béler
If you want to reproduce the "preloaded stuff » (build one image everyday for instance), you’ll have to create first a ConfigurationOfYouApplication describing your dependencies/requirements. Then 2 choices: - you load the configuration in a base image and then you load from the configuration in

Re: [Pharo-users] Help me make sense of this (AST manipulation)

2016-05-03 Thread Marcus Denker
> On 03 May 2016, at 13:58, Victor RENE wrote: > > | f g h | > f := '[ :a | ^a + 1 ].'. " Message pattern expected " > g := '| b |'. " '|' expected " > h := '| b ||'. " Success?!? " > OpalCompiler compile: f. > OpalCompiler compile: g. > OpalCompiler compile: h. > #compile: expects a complete

Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-03 Thread Peter Uhnák
On Tue, May 3, 2016 at 4:55 PM, Johan Fabry wrote: > > Maybe a silly question, but why don’t you make a 1-file download like the > default options provided for Pharo 4.0 on http://pharo.org/download For > example, on MacOS it gives you an .app file that you just double-click. > How does that pla

Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-03 Thread Johan Fabry
Maybe a silly question, but why don’t you make a 1-file download like the default options provided for Pharo 4.0 on http://pharo.org/download For example, on MacOS it gives you an .app file that you just double-click. > On May 3, 2016, at 11:43, Offray Vladimir Luna Cárdenas > wrote: > > Hi

Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-03 Thread Offray Vladimir Luna Cárdenas
Hi Ben, I mean for others to use. My idea is to use PharoLauncher to package and execute an image with preloaded stuff. I will check the suggestions of Cédrick and Serge. Thanks, Offray On 03/05/16 05:30, Ben Coman wrote: On Tue, May 3, 2016 at 8:14 AM, Offray Vladimir Luna Cárdenas wrote

Re: [Pharo-users] NoSWL Databases

2016-05-03 Thread p...@highoctane.be
For Riak, search for Phriak For MongoDB, search for MongoTalk and Voyage (GridFS unsupported, replicas unsupported, HA unsupported) For interfacing with Python, Kilon made a lot of things, search for Ephestos, I guess there is something there. Phil On Tue, May 3, 2016 at 3:42 PM, AWS wrote: >

[Pharo-users] NoSWL Databases

2016-05-03 Thread AWS
Hi there. I am currently trying to finish an Open University degree that I started back in the '70s. Eventually, I will have to create a project for the final module. The current course is all about Database management and analysis. We are currently looking at NoSQL databases and I would like

[Pharo-users] Help me make sense of this (AST manipulation)

2016-05-03 Thread Victor RENE
| f g h | f := '[ :a | ^a + 1 ].'. " Message pattern expected " g := '| b |'. " '|' expected " h := '| b ||'. " Success?!? " OpalCompiler compile: f. OpalCompiler compile: g. OpalCompiler compile: h. Basically I went from writing a function to clean up StringMorphs on the World... cleanupString

Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-03 Thread Ben Coman
On Tue, May 3, 2016 at 8:14 AM, Offray Vladimir Luna Cárdenas wrote: > Hi all. > > I would like to made one of my images available through Pharo Launcher. > Anyone knows where I can find documentation about this? I can't find > anything on the StHub page for the project. > > Thanks, > > Offray >