Re: [Pharo-users] glorp

2014-04-24 Thread Esteban Lorenzano
Hi, AFAIK, dbxtalk glorp is loading (and working) correctly in pharo3, at least for postgresql (I didn’t try the rest of the drivers) Esteban On 24 Apr 2014, at 06:02, Clément Bera wrote: > Hello, > > I think Glorp is used with DBXTalk for relational databases by multiple > people. > > Us

Re: [Pharo-users] [ANN] BabyMock 2

2014-04-24 Thread Christophe Demarey
Le 23 avr. 2014 à 22:25, Attila Magyar a écrit : > Christophe Demarey wrote >> ... but sometimes, even in a well-designed class, you may need to test a >> very small part of this class, and in this case, you need a real object >> with some mocked methods. > > I assume that there is a method need

Re: [Pharo-users] We need *you* for the upcoming Pharo's website

2014-04-24 Thread Esteban Lorenzano
Hi, I really like it as an introduction of what pharo can do :) thanks! Esteban On 23 Apr 2014, at 21:32, kilon alios wrote: > Well I tried, several times , but I am not happy with the end result. In any > case I am finished with this and since I promised to upload it here it is > > > http

[Pharo-users] Probabilities package for Pharo?

2014-04-24 Thread Sebastian Tleye
Hi, I am doing some experiments in Pharo and I need to model Normal and Log-Normal distributions in pharo. Is there any existing package for that? Thanks in advance!

Re: [Pharo-users] Probabilities package for Pharo?

2014-04-24 Thread Markus Fritsche
On 2014-04-24 11:10, Sebastian Tleye wrote: Hi, I am doing some experiments in Pharo and I need to model Normal and Log-Normal distributions in pharo. Is there any existing package for that? Hello Sebastion, have you tried the "NumericalMethods" Package in the Configuration browser? It lo

Re: [Pharo-users] [ANN] BabyMock 2

2014-04-24 Thread Attila Magyar
I made up an example because it makes easier to talk about this. Let's say, I want to test the #addAll: method of the OrderedCollection. If #addAll: is implemented as a loop that uses the #add: method (itemsToBeAdded do: [:each | self add: each]) then would you test the #addAll: isolated from the #

Re: [Pharo-users] Probabilities package for Pharo?

2014-04-24 Thread Sebastian Tleye
Thanks Markus, I didn't try it but I will! 2014-04-24 11:20 GMT+02:00 Markus Fritsche : > On 2014-04-24 11:10, Sebastian Tleye wrote: > > Hi, >> >> I am doing some experiments in Pharo and I need to model Normal and >> Log-Normal distributions in pharo. >> Is there any existing package for that

Re: [Pharo-users] Probabilities package for Pharo?

2014-04-24 Thread Henrik Johansen
On 24 Apr 2014, at 11:25 , Sebastian Tleye wrote: > Thanks Markus, I didn't try it but I will! > > > 2014-04-24 11:20 GMT+02:00 Markus Fritsche : > On 2014-04-24 11:10, Sebastian Tleye wrote: > > Hi, > > I am doing some experiments in Pharo and I need to model Normal and > Log-Normal distri

Re: [Pharo-users] We need *you* for the upcoming Pharo's website

2014-04-24 Thread kilon alios
Thank Esteban, when even a few people appreciate my effort it motivates me to keep trying. My goal indeed was to introduce Pharo without going into depth to people that are not experienced coders or not coders at all. I am now considering doing a screencast explaining the basics of Pharo language

Re: [Pharo-users] We need *you* for the upcoming Pharo's website

2014-04-24 Thread Norbert Hartl
Am 24.04.2014 um 13:20 schrieb kilon alios : > Thank Esteban, when even a few people appreciate my effort it motivates me to > keep trying. I wouldn’t expect it to be very few. Not repsonding is not equal to not appreciating! Even if it feels like nobody cares this is nearly never the case!

Re: [Pharo-users] [ANN] BabyMock 2

2014-04-24 Thread Sean P. DeNigris
Attila Magyar wrote > I made up an example because it makes easier to talk about this An easy example which comes up for me a lot is when I want to pretend it's a certain DateAndTime. I'd like DateAndTime now to return a canned value. I know all the theoretical arguments about how if I change my

Re: [Pharo-users] We need *you* for the upcoming Pharo's website

2014-04-24 Thread Sean P. DeNigris
NorbertHartl wrote > I wouldn’t expect it to be very few. Not repsonding is not equal to not > appreciating! Even if it feels like nobody cares this is nearly never the > case! +1. Very nice screencast. I was at work and couldn't watch until today. - Cheers, Sean -- View this message in con

Re: [Pharo-users] [ANN] BabyMock 2

2014-04-24 Thread Attila Magyar
This looks like a slightly different problem to me, where something has a hardcoded, hidden dependency (a global class object), which is not substitutable by design, but we want to replace it from the test to something that answers the canned value. I understand the practical arguments that probab

Re: [Pharo-users] glorp

2014-04-24 Thread Esteban A. Maringolo
Pablo, I'm using GLORP in a production system with Pharo 2, and I managed to load it into Pharo 3 (I had to rename a few classes prior to that), and I'm developing a new system on top of it. But I'm using PostgreSQL with its native driver (PostgresV2), I don't know about DBXTalk drivers (nor want

Re: [Pharo-users] We need *you* for the upcoming Pharo's website

2014-04-24 Thread Esteban A. Maringolo
Kilon: As a general rule of thumb I'd prefer videos in smaller chunks or coordinated by a slideshow. Longer videos are always queued in the "watch later" playlist, which in my case have almost 10 hours of things to watch :D And if you feel willing to do more videos, do them! I don't like "screenc

Re: [Pharo-users] Probabilities package for Pharo?

2014-04-24 Thread Sebastian Tleye
Thanks Henrik, I'll take it into account. 2014-04-24 12:58 GMT+02:00 Henrik Johansen : > > On 24 Apr 2014, at 11:25 , Sebastian Tleye wrote: > > Thanks Markus, I didn't try it but I will! > > > 2014-04-24 11:20 GMT+02:00 Markus Fritsche : > >> On 2014-04-24 11:10, Sebastian Tleye wrote: >> >>

Re: [Pharo-users] glorp

2014-04-24 Thread Pablo R. Digonzelli
Thanks all !. I am planning to invest sometime with glorp. I will comment and sure i will be asking to the list Ing. Pablo Digonzelli Software Solutions IP-Solutiones SRL Metrotec SRL 25 de Mayo 521 Email: pdigonze...@softsargentina.com pdigonze...@gmail.com Cel: 5493815982714 -

Re: [Pharo-users] glorp

2014-04-24 Thread stepharo
Keep us up to date with your efforts. We were brainstorming with esteban to see what model we could set up to offer working and up to date database drivers to the community while making sure that esteban get a salary :). Stef On 24/4/14 17:15, Pablo R. Digonzelli wrote: Thanks all !. I am pl

Re: [Pharo-users] glorp

2014-04-24 Thread James Foster
On Apr 23, 2014, at 9:02 PM, Clément Bera wrote: > Gemstone is also used quite often for large scale application but Gemstone is > not free. GemStone/S 64 Bit is used for both large and small applications, and GemStone/S 64 Bit has a free for commercial use license available (see http://seasi

Re: [Pharo-users] We need *you* for the upcoming Pharo's website

2014-04-24 Thread kilon alios
Thank you, I am glad you guys enjoyed it. This is my first screencast on Pharo so I was not so sure about myself. Esteban I agree, though I would like to target newcomers to Pharo than experienced Pharo coders. I will try to cut down my videos to smaller sections, or I will offer a table of conte

Re: [Pharo-users] glorp

2014-04-24 Thread Sergi Reyner
2014-04-24 17:58 GMT+01:00 James Foster : > On Apr 23, 2014, at 9:02 PM, Clément Bera wrote: > > Gemstone is also used quite often for large scale application but Gemstone > is not free. > > > GemStone/S 64 Bit is used for both large and small applications, and > GemStone/S 64 Bit has a free for

Re: [Pharo-users] glorp

2014-04-24 Thread Joachim Tuchel
Hi, We're using Glorp on VA ST for kontolino.de. It is an active project in the sense of somebody is taking care of bugs. The lead developer(s) work(s) for Cincom - and Cincom uses Glorp as supported component of CST. Instantiations also provides Glorp with VA ST and supports it. Glorp is very

Re: [Pharo-users] glorp

2014-04-24 Thread Norbert Hartl
> Am 25.04.2014 um 06:51 schrieb Joachim Tuchel : > > Hi, > > We're using Glorp on VA ST for kontolino.de. It is an active project in the > sense of somebody is taking care of bugs. The lead developer(s) work(s) for > Cincom - and Cincom uses Glorp as supported component of CST. Instantiation