[Pharo-users] Any perspective of Woden in Pharo 6.1/7 ?????

2018-01-02 Thread Casimiro - GMAIL
Is there any perspective of Woden working in Pharo 6.1 or later versions (7) Best regards, Casimiro -- The information contained in this message is confidential and intended to the recipients specified in the headers. If you received this message by error, notify the sender immediately. Th

[Pharo-users] Another post about our experience with Pharo at OSOCO

2018-01-02 Thread Rafael Luque
Hi all, We've published the second part of our experiences introducing Pharo at OSOCO. The post is in spanish: https://osoco.es/thoughts/2017/12/pharo-en-osoco-parte-2/ However, I've checked that Google Translate does a good job with it: https://translate.google.com/translate?sl=es&tl=en&js=y&pr

Re: [Pharo-users] Is there a way to stop arrays sorting automatically?

2018-01-02 Thread Henrik Sperre Johansen
Ben Coman wrote > On 31 December 2017 at 04:00, Andy Burnett < > andy.burnett@ > > > wrote: > >> I suspect I am missing something very obvious, in which case could some >> kind soul put me straight? >> >> I have the following code >> >> col := OrderedCollection new. >> (1 to: 9) permutationsDo:

Re: [Pharo-users] Another post about our experience with Pharo at OSOCO

2018-01-02 Thread Hernán Morales Durand
Hi Rafael, Did you published your code generator somewhere? I would like to check since I am writing a code generator for Pharo http://www.smalltalkhub.com/#!/~hernan/CodeGenerator Cheers, Hernán 2018-01-02 8:48 GMT-03:00 Rafael Luque : > Hi all, > > We've published the second part of our experi

Re: [Pharo-users] Another post about our experience with Pharo at OSOCO

2018-01-02 Thread Rafael Luque
Not at the moment, but we have plans to release both the code generator and the EDA framework shortly, so I will back to you when we publish them. Rafa. 2018-01-02 14:26 GMT+00:00 Hernán Morales Durand : > Hi Rafael, > > Did you published your code generator somewhere? > I would like to check si

Re: [Pharo-users] [ANN] Orientation

2018-01-02 Thread Alexandre Bergel
Excellent idea! Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On Jan 1, 2018, at 6:27 PM, Julien wrote: > > Hello, > > I developed a small framework to model orientation (north, east,

Re: [Pharo-users] Metacello with Git

2018-01-02 Thread Sean P. DeNigris
Vitor Medina Cruz wrote >> I don't know for gitlab. It doesn't seem to work (in Pharo 6.1). `LGit_GIT_EEOF`. I see there is MCBitbucketRepository but no MCGitlabRepository. - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Metacello with Git

2018-01-02 Thread Esteban Lorenzano
> On 2 Jan 2018, at 16:43, Sean P. DeNigris wrote: > > Vitor Medina Cruz wrote >>> I don't know for gitlab. > > It doesn't seem to work (in Pharo 6.1). `LGit_GIT_EEOF`. I see there is > MCBitbucketRepository but no MCGitlabRepository. MC*Repository is not iceberg but monticello api. Iceberg

Re: [Pharo-users] Metacello with Git

2018-01-02 Thread Sean P. DeNigris
EstebanLM wrote > MC*Repository is not iceberg but monticello api. Except it is extended by Iceberg-Adapters for #httpsUrl and #scpUrl! Also, MCBitbucketRepository is hardcoded in IceProviderRepositoryType>>#mcRepository, which was mangling the URL (off the top of my head I assume because 'bitbuc

Re: [Pharo-users] [ANN] Orientation

2018-01-02 Thread Henrik Sperre Johansen
Julien wrote > Hello, > > I developed a small framework to model orientation (north, east, south, > west). It defines some common operations that can be done on such objects > (turning, getting the opposite orientation, moving on n steps on a > discrete grid from a given position following certai

Re: [Pharo-users] Metacello with Git

2018-01-02 Thread Esteban Lorenzano
if you have iceberg metacello integration enabled (default in 7.0), the repository is resolved as part of iceberg and then it does not instances a MC*Repository but an IceMetacelloRepositoryAdaptor. Then it works on baselines, etc. Esteban > On 2 Jan 2018, at 17:18, Sean P. DeNigris wrote: >

Re: [Pharo-users] Metacello with Git

2018-01-02 Thread Sean P. DeNigris
EstebanLM wrote > if you have iceberg metacello integration enabled… Then it works on > baselines, etc. Strange. I did `Iceberg enableMetacelloIntegration: true.` first and still got the error. I can't easily test in 7 because it depends on Magritte which depends on Grease which doesn't seem to lo

Re: [Pharo-users] Metacello with Git

2018-01-02 Thread Alistair Grant
Hi Sean, On 2 January 2018 at 18:00, Sean P. DeNigris wrote: > EstebanLM wrote >> if you have iceberg metacello integration enabled… Then it works on >> baselines, etc. > > Strange. I did `Iceberg enableMetacelloIntegration: true.` first and still > got the error. I can't easily test in 7 because

Re: [Pharo-users] Metacello with Git

2018-01-02 Thread Esteban Lorenzano
> On 2 Jan 2018, at 18:00, Sean P. DeNigris wrote: > > EstebanLM wrote >> if you have iceberg metacello integration enabled… Then it works on >> baselines, etc. > > Strange. I did `Iceberg enableMetacelloIntegration: true.` first and still > got the error. I can't easily test in 7 because it d

Re: [Pharo-users] Is there a way to stop arrays sorting automatically?

2018-01-02 Thread Andy Burnett
Henry said It's not broken, but certainly deserves a comment as to why it operates inline; In the general case, one should not use/care about any given permutation outside the block. Allocating n! instances of an n-sized array by default, is a bad tradeoff considering performance degradation

[Pharo-users] Solver for the Stable Marriage problem in Pharo

2018-01-02 Thread Julien
Hello, Continuing to announce what I have. Some time ago I implemented a solver for the Stable Marriage problem [1] in Pharo [2]. Basically, in the stable marriage problem, you have two list of n element: a list of men and a list of women. Each person rank people of the other gender according

Re: [Pharo-users] [ANN] Orientation

2018-01-02 Thread Stephane Ducasse
Julien can you remind me to show you what Laura/Maximilliano did in MetaBorg? Stef On Mon, Jan 1, 2018 at 10:27 PM, Julien wrote: > Hello, > > I developed a small framework to model orientation (north, east, south, > west). It defines some common operations that can be done on such objects > (

[Pharo-users] Examples of Garage for DB2

2018-01-02 Thread Andrei Stebakov
I need to be able to navigate DB2 connection. As we discussed it a few days ago on the mailing list, the suggestion was to use Garage. I downloaded Garage to my Pharo 6.1 on windows. But in Garage I only see drivers for MySql, Postgres and Sqlite3. Does it mean that for DB2 I should look somewhere

Re: [Pharo-users] Metacello with Git

2018-01-02 Thread Stephane Ducasse
Hi Alistair About pillar, we are working on a new pipeline and lot of cleaning compared to the version available on smalltalkhub. The new version Branch new pipeline seems broken (I will check it tomorrow it cannot handle internal references). I want to be able to build the old books with the new

Re: [Pharo-users] [ANN] Orientation

2018-01-02 Thread Julien
> Le 2 janv. 2018 à 17:26, Henrik Sperre Johansen > a écrit : > > Julien wrote >> Hello, >> >> I developed a small framework to model orientation (north, east, south, >> west). It defines some common operations that can be done on such objects >> (turning, getting the opposite orientation, mov

[Pharo-users] [ANN] PoLYgon file format parser/model

2018-01-02 Thread Julien
Hello again, Last announcement for today. 1 year ago I created a PLY (PoLYgon file format [1] ) parser/model in Pharo [2] using PetitParser. I took some time to remove the dust it accumulated and to create a baseline so I announce it. To install it: Metacello new baseline: 'PLY'; rep

Re: [Pharo-users] Another post about our experience with Pharo at OSOCO

2018-01-02 Thread Stephane Ducasse
Hi Rafael Thanks a lot for sharing that with us. This is super interesting to see the process. I wish you a lot of other Pharo microservices and systems :) Stef On Tue, Jan 2, 2018 at 3:30 PM, Rafael Luque wrote: > Not at the moment, but we have plans to release both the code generator and > t

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-02 Thread Stephane Ducasse
On Mon, Jan 1, 2018 at 8:22 PM, Julien wrote: > Hello, > > My new year main resolution: stop keeping my side-projects for me. I ***LOVE IT*** Last year I took as decision, release all the books that I had half finished :) and I ended up creating the booklets to flush my hardisc. Stef > > I

Re: [Pharo-users] More named colors

2018-01-02 Thread Stephane Ducasse
Thanks cyril for the links I will read that. On Mon, Jan 1, 2018 at 3:52 PM, Cyril Ferlicot wrote: > > On lun. 1 janv. 2018 at 15:32, Stephane Ducasse > wrote: >> >> Hi >> >> Since for some experiences in moose we needed more named colors >> I started to gather together some old extensions and I

Re: [Pharo-users] Solver for the Stable Marriage problem in Pharo

2018-01-02 Thread Sean P. DeNigris
Julien wrote > Continuing to announce what I have. Hooray!! - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Metacello with Git

2018-01-02 Thread Sean P. DeNigris
EstebanLM wrote > yep. that seems to be a bug. Okay, I hacked a solution. Before I submit the fix I want to verify: no one has been successfully using gitlab:// URLs in a MetaC baseline spec for a private dependent project (accessed via SSH keys), right? - Cheers, Sean -- Sent from: http://

Re: [Pharo-users] Releasing to Catalog

2018-01-02 Thread Evan Donahue
Ok, that works. Thanks. My last question is about adding a development symbolic version. Can I use my existing BaselineOf class somehow as a baseline from within my ConfigurationOf "" method, or should I define a redundant "baseline: spec" method in the Configuration of the old fashioned way? Than

Re: [Pharo-users] Metacello with Git

2018-01-02 Thread Norbert Hartl
> Am 03.01.2018 um 00:26 schrieb Sean P. DeNigris : > > EstebanLM wrote >> yep. that seems to be a bug. > > Okay, I hacked a solution. Before I submit the fix I want to verify: no one > has been successfully using gitlab:// URLs in a MetaC baseline spec for a > private dependent project (access