Re: [Pharo-users] Dictionary and Date as keys

2018-10-17 Thread Chris Cunningham
Hi, On Tue, Oct 16, 2018 at 1:28 PM Alistair Grant wrote: > Hi Petr, > > On Tue, 16 Oct 2018 at 21:25, Petr Fischer via Pharo-users > wrote: > > > > My problem - use Dates as Dictionary keys - shortly: > > > > d1 := Date today translateToUTC. > > d2 := Date today. > > > > d1 = d2. (true!) > > O

Re: [Pharo-users] Secure socket timeouts on Windows

2018-09-05 Thread Chris Cunningham
HI Andrei, if you get this timeout, shut it down and immediately try again, does it work that time? I ask, because I've been having similar issues - except at home, not at work, and I'm using Squeak (but same base VM, roughly). And windows as well. For me, I seem to get a timeout roughly 1/2 of t

Re: [Pharo-users] min:max:

2018-04-20 Thread Chris Cunningham
A name like this would be clearer (although much more annoying): returnAtLeast: minValue butNoMoreThan: maxValue 10 returnAtLeast: 12 butNoMoreThan: 48 Thanks, cbc On Fri, Apr 20, 2018 at 12:51 PM, Hilaire wrote: > Hi, > > Out of curiosity. > > I always found the #min:max: confusing and lo

[Pharo-users] OopluCon 2017

2016-11-10 Thread Chris Cunnington
http://www.ooplu.com/ Chris

Re: [Pharo-users] [ANN] OopluCon 2016, San Francisco, April

2015-11-02 Thread Chris Cunnington
Steph, You just made my day. Please do. I'd like at least one presentation from the Pharo community. Chris On 2015-11-02 8:08 PM, stepharo wrote: nice initiative Great city I would love to participate :) Le 2/11/15 09:29, Chris Cunnington a écrit : OopluCon 2016 A Day for the Smal

[Pharo-users] "stepping" a non-morphic object

2014-04-29 Thread Chris Wright
advance for any help Chris

Re: [Pharo-users] Pharo performance

2013-08-01 Thread CHRIS BAILEY
rence when something is implemented on top of C and libpq (I presume) From: Mariano Martinez Peck To: Any question about pharo is welcome Sent: Wednesday, 31 July 2013, 22:40 Subject: Re: [Pharo-users] Pharo performance On Wed, Jul 31, 2013 at 6:32 PM, Chris

Re: [Pharo-users] Pharo performance

2013-07-31 Thread Chris
backend for Glorp! Cheers Chris Hi Yanni, On 30 Jul 2013, at 05:17, Yanni Chiu wrote: On 29/07/13 7:08 PM, Sven Van Caekenberghe wrote: The explanation for the slowdown must be in the PgV2 driver. The PgV2 protocol is described at: http://www.postgresql.org/docs/7.1/static/protocol

Re: [Pharo-users] Pharo performance

2013-07-30 Thread Chris
;select longitude,latitude from log_data limit 10;' ] timeToRun. => 765 ms This is querying for 2 floats from a huge table, over the network. Pretty fast ;-) So, back to Chris: what exactly are you doing that is (so) slow ? Anyway, thanks Yanni for all your work on the existing driver !

Re: [Pharo-users] Pharo performance

2013-07-29 Thread Chris
On 29/07/2013 21:33, Sven Van Caekenberghe wrote: Chris, On 29 Jul 2013, at 20:52, Chris wrote: I've been getting a little concerned with certain aspects of performance recently. Just a couple of examples off the top of my head were trying to do a printString on 20 floats which

Re: [Pharo-users] Pharo performance

2013-07-29 Thread Chris
I often use the profiler :) The float printString is all fairly evenly split which is why I mention about whether another implementation may be required. I'll always raise anything much more obvious that I see! Hi Chris, My recommendation in this case is always do not spend a single s

[Pharo-users] Pharo performance

2013-07-29 Thread Chris
ope we can get performance at least comparable to other dynamic languages :) Is it just that some method implementations are in need of some TLC; more things moved on top of C libraries and primitives and so forth rather than anything with the VM itself? Cheers Chris

Re: [Pharo-users] More than 500MB for windows

2013-07-08 Thread CHRIS BAILEY
stion about pharo is welcome Cc: CHRIS BAILEY Sent: Monday, 8 July 2013, 12:46 Subject: Re: [Pharo-users] More than 500MB for windows I remember there was a thread where Andreas explains why the windows VM would not alloc more than 500 MB. I think it's quite similar if not the same to what

Re: [Pharo-users] More than 500MB for windows

2013-07-08 Thread CHRIS BAILEY
This is a standard problem on Windows whenever something tries to allocate contiguous memory due to the way it fragments your exe's memory with it's own dlls. I was able to get 1.4gb with some pretty nasty hacking of an exe once by rebasing the biggest offending dlls (it wasn't Pharo but the same

Re: [Pharo-users] Pharo Opportunity

2013-07-02 Thread Chris
Just thought I'd point out from the interest received so far that it would require working onsite in the UK are you looking for a smalltalker? because we can forward your announce to the esug mailing-list On Jul 2, 2013, at 7:50 PM, Chris <mailto:cpmbai...@btinternet.com>> wr

Re: [Pharo-users] Pharo Opportunity

2013-07-02 Thread Chris
experience in that area is useful are you looking for a smalltalker? because we can forward your announce to the esug mailing-list On Jul 2, 2013, at 7:50 PM, Chris <mailto:cpmbai...@btinternet.com>> wrote: Hi all, Apologies if this is not the best place for this type of post but I&#x

[Pharo-users] Pharo Opportunity

2013-07-02 Thread Chris
lease drop me a private email. Thanks Chris cpmbai...@btinternet.com

Re: [Pharo-users] a 'doesNotUnderstand' message that I do not understand...

2013-05-14 Thread Chris
This method is on the instance side of the class and therefore requires TextEditorDialogWindow new newTextEditorMorph. If it were on the class side, it would be like you were trying it. Hi all, Exploring the system browser (Pharo 2.0), I see that there exists a class called TextEditorDialogW