Re: [Pharo-dev] MNU: receiver of stepToCallee: is nil

2014-09-23 Thread Max Leske
40233 (September 18.) So that probably solves it :) On 23.09.2014, at 16:30, Clara Allende clari.alle...@gmail.com wrote: pharo 4, but not the latest image 2014-09-23 16:27 GMT+02:00 Clément Bera bera.clem...@gmail.com: In the latest Pharo 4, #stepToCallee: is not implemented nor sent.

Re: [Pharo-dev] Implementing lazy loading for expandable collections

2014-09-23 Thread Max Leske
On 19.09.2014, at 21:45, Eliot Miranda eliot.mira...@gmail.com wrote: On Fri, Sep 19, 2014 at 2:35 AM, Max Leske maxle...@gmail.com wrote: I’ve written an implementation of lazily initialized expandable collections (for OrderedCollection and subclasses only for now), inspired

Re: [Pharo-dev] Fixed case 11996 -- exception handler search bug

2014-09-22 Thread Max Leske
On 22.09.2014, at 09:12, Marcus Denker marcus.den...@inria.fr wrote: On 22 Sep 2014, at 07:30, Martin McClure mar...@hand2mouse.com wrote: Andres and I developed a fix at ESUG for case 11996. The search for exception handlers was not taking into account the general case of exception

Re: [Pharo-dev] I'm confused about ProcessisTerminated

2014-09-22 Thread Max Leske
Thanks for the pointer. On 18.09.2014, at 22:52, Bob Westergaard bwesterga...@gmail.com wrote: Why not use #waitTimeoutMsecs:? Something like: greenLight := Semaphore new. process := [started := true. [Semaphore new wait] ensure: I think that should be “[greenLight wait]”,

Re: [Pharo-dev] I'm confused about ProcessisTerminated

2014-09-22 Thread Max Leske
On 22.09.2014, at 09:47, Max Leske maxle...@gmail.com wrote: Thanks for the pointer. On 18.09.2014, at 22:52, Bob Westergaard bwesterga...@gmail.com wrote: Why not use #waitTimeoutMsecs:? Something like: greenLight := Semaphore new. process := [started := true. [Semaphore new

Re: [Pharo-dev] I'm confused about ProcessisTerminated

2014-09-22 Thread Max Leske
Hi Eliot, Thanks a lot for those explanations. On 18.09.2014, at 20:53, Eliot Miranda eliot.mira...@gmail.com wrote: Hi Max, phhh, time zone differences suck ;-) On Thu, Sep 18, 2014 at 3:50 AM, Max Leske maxle...@gmail.com wrote: Hi Eliot, On 18.09.2014, at 01:18, Eliot Miranda

Re: [Pharo-dev] Fixed case 11996 -- exception handler search bug

2014-09-22 Thread Max Leske
… *rolling my eyes*… *facepalm*… On 22.09.2014, at 11:55, Esteban Lorenzano esteba...@gmail.com wrote: On 22 Sep 2014, at 11:21, Ben Coman b...@openinworld.com wrote: Max Leske wrote: On 22.09.2014, at 09:12, Marcus Denker marcus.den...@inria.fr wrote: On 22 Sep 2014, at 07:30

Re: [Pharo-dev] [ANN] ExternalTools for *nix - edit w/ $EDITOR and open pictures

2014-09-21 Thread Max Leske
But if you open a file in an external application you’ll still be switching windows, namely between pharo and the external application… What am I missing? Cheers, Max On 19.09.2014, at 21:02, p...@highoctane.be wrote: I had enough to switch between windows to work on external files. So,

Re: [Pharo-dev] [ANN] ExternalTools for *nix - edit w/ $EDITOR and open pictures

2014-09-21 Thread Max Leske
On 21.09.2014, at 17:17, p...@highoctane.be wrote: Le 21 sept. 2014 15:53, Max Leske maxle...@gmail.com a écrit : But if you open a file in an external application you’ll still be switching windows, namely between pharo and the external application… What am I missing? I guess you

[Pharo-dev] [SO] Pharo 3 on 64-bit CentOS

2014-09-21 Thread Max Leske
http://stackoverflow.com/questions/25966652/cannot-even-install-pharo-3-on-centos-6-5

[Pharo-dev] [Review: 11536] Add Stream printString:

2014-09-19 Thread Max Leske
This issue was more of a discussion between Camillo and Sven. They never reached a conclusion, so please take a look. I’ve compiled the transcript below. The issue isn’t easy to solve and maybe we can just close it as “not important”.

[Pharo-dev] Implementing lazy loading for expandable collections

2014-09-19 Thread Max Leske
I’ve written an implementation of lazily initialized expandable collections (for OrderedCollection and subclasses only for now), inspired by Alexandre’s talk at ESUG (http://www.youtube.com/watch?v=x0YJ2dsZdKglist=UUO-vBhaKVZf0al-ISMMPvRw). The implementation is pretty much straight forward

Re: [Pharo-dev] Interesting Date/Time Thread on Squeak Dev

2014-09-19 Thread Max Leske
Hi Sean, did you see issue 13229 (https://pharo.fogbugz.com/f/cases/13229/Year-arithmetic-broken)? It adds a new class AnnualDuration to allow for correct year based arithmetics. It also introduces floats for seconds (with nano seconds as base). I guess that issue and your change will

Re: [Pharo-dev] Implementing lazy loading for expandable collections

2014-09-19 Thread Max Leske
On 19.09.2014, at 14:06, Nicolas Cellier nicolas.cellier.aka.n...@gmail.com wrote: 2014-09-19 13:55 GMT+02:00 Markus Fritsche mfrits...@reauktion.de: On 2014-09-19 11:35, Max Leske wrote: - my implementation requires an extra instance variable in OrderedCollection to store

Re: [Pharo-dev] Interesting Date/Time Thread on Squeak Dev

2014-09-19 Thread Max Leske
On 19.09.2014, at 14:16, Sven Van Caekenberghe s...@stfx.eu wrote: Part of that is in https://pharo.fogbugz.com/f/cases/13229/Year-arithmetic-broken Furthermore, I am not so sure all this is a good idea, year/month durations are not constants and are dealt with differently in many

Re: [Pharo-dev] Interesting Date/Time Thread on Squeak Dev

2014-09-19 Thread Max Leske
On 19.09.2014, at 14:16, Sean P. DeNigris s...@clipperadams.com wrote: Max Leske wrote your change It's not mine. I just scanned the thread from Squeak Dev and was intrigued because I've run into this limitation (the tension between year/month/etc as a conceptual ideal, and those entities

Re: [Pharo-dev] Interesting Date/Time Thread on Squeak Dev

2014-09-19 Thread Max Leske
Oops. Didn’t realize that thread was from Squeak dev. So there’s no Pharo implementation of that change for now anyway. On 19.09.2014, at 14:35, Max Leske maxle...@gmail.com wrote: On 19.09.2014, at 14:16, Sean P. DeNigris s...@clipperadams.com wrote: Max Leske wrote your change It's

Re: [Pharo-dev] Interesting Date/Time Thread on Squeak Dev

2014-09-19 Thread Max Leske
: we’re changing so much stuff in Pharo anyway all the time, I don’t think this would hurt. Cheers, Max On 19.09.2014, at 14:37, Max Leske maxle...@gmail.com wrote: Oops. Didn’t realize that thread was from Squeak dev. So there’s no Pharo implementation of that change for now anyway

Re: [Pharo-dev] Visualising Network Latency

2014-09-19 Thread Max Leske
Very cool. - Do you parse data from a file? If so, what format does that file need to be in? - Is the map zoomable to city level (to see connections between Bern and Zürich for instance)? Cheers, Max On 19.09.2014, at 15:23, Leonel Merino mer...@iam.unibe.ch wrote: Hi All, I have been

Re: [Pharo-dev] I'm confused about ProcessisTerminated

2014-09-18 Thread Max Leske
Hi Eliot, On 18.09.2014, at 01:18, Eliot Miranda eliot.mira...@gmail.com wrote: Hi Max, On Wed, Sep 17, 2014 at 1:59 PM, Max Leske maxle...@gmail.com wrote: Hi Eliot On 16.09.2014, at 20:18, Eliot Miranda eliot.mira...@gmail.com wrote: Hi Max, On Tue, Sep 16, 2014 at 11:05 AM

[Pharo-dev] [Review: 13229] Year arithmetic broken

2014-09-18 Thread Max Leske
Another issue for cleanup review. https://pharo.fogbugz.com/f/cases/13229/Year-arithmetic-broken Ported from Pharo 30. Made a few additional changes to #hash and #printOn: methods that no longer worked, added class comment to AnnualDuration. NOTE: I haven't done a full review on this and the

[Pharo-dev] [Review: 12111] (Date readFrom: '4.2.2013' readStream pattern: 'd.m.yy') == 4 February 2020

2014-09-17 Thread Max Leske
In the spirit of Markus’ cleanup please review this suggested fix to date parsing (from november 2013 originally…). I’ve ported the fix forward to 40 (which has the same issue). https://pharo.fogbugz.com/f/cases/12111/Date-readFrom-4-2-2013-readStream-pattern-d-m-yy-4-February-2020 Cheers, Max

Re: [Pharo-dev] I'm confused about ProcessisTerminated

2014-09-17 Thread Max Leske
Hi Eliot On 16.09.2014, at 20:18, Eliot Miranda eliot.mira...@gmail.com wrote: Hi Max, On Tue, Sep 16, 2014 at 11:05 AM, Max Leske maxle...@gmail.com wrote: Hi As always when I want to check if a process has died I get very confused by #isTerminated and I’m wondering if I just don’t

Re: [Pharo-dev] Strange behavior in Pharo 3.0

2014-09-16 Thread Max Leske
So first: as Sven said Sequenceable collection is abstract. Still I would consider what you found a bug since it provides the implementations that produce the behavior you reported. I can reproduce it in a 40 with vmLatest, and the proble occurs whenever either #do: or #size is sent.

Re: [Pharo-dev] Strange behavior in Pharo 3.0

2014-09-16 Thread Max Leske
And 30 has the exact same problem of course (just checked). On 16.09.2014, at 08:39, Max Leske maxle...@gmail.com wrote: So first: as Sven said Sequenceable collection is abstract. Still I would consider what you found a bug since it provides the implementations that produce the behavior

Re: [Pharo-dev] Strange behavior in Pharo 3.0

2014-09-16 Thread Max Leske
be fixed, it can be fixed IMHO, but it is a VM thing. On 16 Sep 2014, at 08:39, Max Leske maxle...@gmail.com wrote: So first: as Sven said Sequenceable collection is abstract. Still I would consider what you found a bug since it provides the implementations that produce the behavior you

Re: [Pharo-dev] Strange behavior in Pharo 3.0

2014-09-16 Thread Max Leske
On 16.09.2014, at 09:50, Sven Van Caekenberghe s...@stfx.eu wrote: On 16 Sep 2014, at 09:24, Max Leske maxle...@gmail.com wrote: Slice in inbox. Required reimplementing #size in Stack and LinkedList. Argh, that is a bit ugly. Stack#size is not needed as it inherits from LinkedList

[Pharo-dev] I'm confused about ProcessisTerminated

2014-09-16 Thread Max Leske
Hi As always when I want to check if a process has died I get very confused by #isTerminated and I’m wondering if I just don’t get how it’s supposed to work or if there are others that share my confusion. Old implementation: isTerminated self isActiveProcess ifTrue: [^ false].

Re: [Pharo-dev] Jenkins builds not properly preserving artifacts?

2014-09-02 Thread Max Leske
On 02.09.2014, at 00:41, Tim Mackinnon tim@testit.works wrote: Guys - I’ve noticed that when a build completed on the Inria infrastructure, for a short time the console output correctly shows all the artefacts that were used to create that build - e.g. the slices loaded etc. However after a

Re: [Pharo-dev] [ANN] Pointer Detective

2014-09-02 Thread Max Leske
You are my hero! I was just complaining about that to Doru at ESUG. This sort of tool should be part of the standard tool set so please keep on improving it and we’ll try to convince someone to integrate it :) Max On 02.09.2014, at 19:40, Ben Coman b...@openinworld.com wrote: greetings all,

Re: [Pharo-dev] Latch for Pharo (Opinion needed)

2014-08-31 Thread Max Leske
On 31.08.2014, at 23:32, Germán Arduino gardu...@gmail.com wrote: Hi Guys: I'm working in a project to write a SDK for use Latch with Pharo. Latch [1] is a product/service to add a degree of security to web applications and is developed and marketed by 11Paths [2] , a company from

Re: [Pharo-dev] Faster ThreadSafeTranscript Re: [pharo-project/pharo-core] 06d05b: 40165

2014-08-25 Thread Max Leske
I opened a case for removing ThreadSafeTranscript from the FLCommandlineHandler. Proposed slice is in inbox. Cheers, Max On 13.08.2014, at 19:17, Eliot Miranda eliot.mira...@gmail.com wrote: On Wed, Aug 13, 2014 at 8:24 AM, Ben Coman b...@openinworld.com wrote: Eliot Miranda wrote:

Re: [Pharo-dev] I want to remove zeroconf for 1.2, 1.3 and 1.4

2014-08-19 Thread Max Leske
I don’t need them. On 19.08.2014, at 11:17, Esteban Lorenzano esteba...@gmail.com wrote: Hi, right now there zeroconf scripts for pharo 1.2-1.4 that I do not think anyone is using it. Can I remove them? cheers, Esteban

Re: [Pharo-dev] Faster ThreadSafeTranscript Re: [pharo-project/pharo-core] 06d05b: 40165

2014-08-12 Thread Max Leske
On 12.08.2014, at 14:27, Ben Coman b...@openinworld.com wrote: GitHub wrote: Branch: refs/heads/4.0 Home: https://github.com/pharo-project/pharo-core Commit: 06d05bd822deee4a79736d9f99d4a666ca1637eb

Re: [Pharo-dev] Pull up a method or Push up a method?

2014-08-11 Thread Max Leske
I think “push” makes more sense than “pull” since the operation is performed on the class where the method resides and not the one it will end up in. Max On 12.08.2014, at 03:00, Bernardo Ezequiel Contreras vonbecm...@gmail.com wrote: Hi all, According to the book Refactoring[1] you pull

Re: [Pharo-dev] Xtreams build failing on 4.0

2014-08-11 Thread Max Leske
Sven, maybe get the output of otool -l /path/to/lib and compare the paths to linked libraries to the ones found in the plugin of the failing job. There might be a problem with the location of certain libraries. Or not… :) Cheers, Max On 11.08.2014, at 15:29, Sven Van Caekenberghe

Re: [Pharo-dev] building vm on OSX 10.9: 'features.h' not found

2014-08-09 Thread Max Leske
such that the #include won’t happen: Simply uncomment the line „#define HAVE_FEATURES_H 1“ Upps, of course comment out this line :) Perfect! Thanks. Regards, Andreas Am 09.08.2014 um 00:19 schrieb Max Leske maxle...@gmail.com: Apparently stuff has changed since I last built a VM. Now I can’t

Re: [Pharo-dev] building vm on OSX 10.9: 'features.h' not found

2014-08-09 Thread Max Leske
On 09.08.2014, at 09:20, Max Leske maxle...@gmail.com wrote: On 09.08.2014, at 08:39, Andreas Wacknitz a.wackn...@gmx.de wrote: Am 09.08.2014 um 08:13 schrieb Andreas Wacknitz a.wackn...@gmx.de: Hi Max, I had the same problems when I was building the VM for OpenSolaris. My simple

Re: [Pharo-dev] building vm on OSX 10.9: 'features.h' not found

2014-08-09 Thread Max Leske
On 09.08.2014, at 12:17, Ben Coman b...@openinworld.com wrote: copied to [vm-dev] Thanks Ben. Max Leske wrote: On 09.08.2014, at 09:20, Max Leske maxle...@gmail.com wrote: On 09.08.2014, at 08:39, Andreas Wacknitz a.wackn...@gmx.de wrote: Am 09.08.2014 um 08:13 schrieb

[Pharo-dev] building vm on OSX 10.9: 'features.h' not found

2014-08-08 Thread Max Leske
Apparently stuff has changed since I last built a VM. Now I can’t get past this annoying error: -- Generating done -- Build files have been written to: /Users/theseion/devel/git/pharo-vm/build Scanning dependencies of target SqueakSSL [ 1%] Building C object

Re: [Pharo-dev] Anybody using Yosemite?

2014-08-06 Thread Max Leske
Pharo worked fine for me while I was using Yosemite. Didn’t see any odd behavior (although there were some problems with my shell environment. Not sure where they came from). Max On 06.08.2014, at 14:05, Yuriy Tymchuk yuriy.tymc...@me.com wrote: Yes, OS X is not Pharo :) On 06 Aug 2014,

Re: [Pharo-dev] About Smalltalkhub

2014-08-06 Thread Max Leske
Yay! Nico’s back! :D On 06.08.2014, at 17:38, Nicolas Petton petton.nico...@gmail.com wrote: Hi guys, I'm just back from 2 weeks offline, and I just saw that SmalltalkHub has some issues. I just restarted everything as packets were dropped, and I'll have a deeper look tomorrow to see why

Re: [Pharo-dev] Smalltalkhub not serving any mcz files?

2014-07-31 Thread Max Leske
On 31.07.2014, at 14:01, pie...@nagel.co.za wrote: Hi, It seems that www.smalltalkhub.com is not serving up any mcz files anymore. For example, all of the links from http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main just lead to not found error pages. Same with

Re: [Pharo-dev] GToolkit in Pharo 4?

2014-07-29 Thread Max Leske
Ok, thanks. On 28.07.2014, at 22:37, Stephan Eggermont step...@stack.nl wrote: Just fix the configuration. Nothing there for pharo 4.x And as baseline012 refers to #development everywhere, you'll need to check all dependencies too Stephan

Re: [Pharo-dev] Future

2014-07-28 Thread Max Leske
On 28.07.2014, at 18:12, Thierry Goubier thierry.goub...@gmail.com wrote: Le 28/07/2014 16:06, Max Leske a écrit : IIRC TaskIT supports fututes: http://smalltalkhub.com/#!/~sbragagnolo/TaskIT (there was a thread on the list recently). Thanks. I missed it, especially the forkIt part

[Pharo-dev] GToolkit in Pharo 4?

2014-07-28 Thread Max Leske
I’ve tried loading GToolkit into Pharo 4 from a configuration: spec for: #'pharo4.x' do: [ spec project: 'GToolkit' with: [ spec className: 'ConfigurationOfGToolkit'; version: #bleedingEdge; file:

Re: [Pharo-dev] we need you on http://pharo.org/about

2014-07-22 Thread Max Leske
On 22.07.2014, at 10:27, Andrei Chis chisvasileand...@gmail.com wrote: I am missing :) We’ll organize a search party! :p Cheers, Andrei On Tue, Jul 22, 2014 at 10:16 AM, stepharo steph...@free.fr wrote: hi Are you on http://pharo.org/about? if not please do it because this is

Re: [Pharo-dev] WhatsUp from: 2014-07-21 until: 2014-07-31

2014-07-21 Thread Max Leske
On 21.07.2014, at 07:00, seas...@rmod.lille.inria.fr wrote: Hi! We're sending this automatic email twice a month, to give the community an opportunity to easily know what's happening and to coordinate efforts. Just answer informally, and feel free to spawn discussions thereafter! ###

Re: [Pharo-dev] 503 on pharo-contribution CI

2014-07-21 Thread Max Leske
. retarted… very strange. On Fri, Jul 18, 2014 at 10:12 AM, Marcus Denker marcus.den...@inria.fr wrote: On 18 Jul 2014, at 10:04, Max Leske maxle...@gmail.com wrote: I’m getting a 503 when trying to access pharo-contribution CI. It was working until half an hour ago. Could someone take

[Pharo-dev] 503 on pharo-contribution CI

2014-07-18 Thread Max Leske
I’m getting a 503 when trying to access pharo-contribution CI. It was working until half an hour ago. Could someone take a look please? Cheers, Max

Re: [Pharo-dev] 503 on pharo-contribution CI

2014-07-18 Thread Max Leske
Thanks! On 18.07.2014, at 10:12, Marcus Denker marcus.den...@inria.fr wrote: On 18 Jul 2014, at 10:04, Max Leske maxle...@gmail.com wrote: I’m getting a 503 when trying to access pharo-contribution CI. It was working until half an hour ago. Could someone take a look please? Cheers

Re: [Pharo-dev] [Article] Elegant Pharo Code

2014-07-08 Thread Max Leske
Very cool indeed! There’s another mistake here: Our software development environments should be designed in such a way that they ***are*** make it easy to read and to write code for day to day tasks, for those problems that are solved. Cheers, Max On 08.07.2014, at 00:21, Sven Van

Re: [Pharo-dev] [Pharo4] Slots: Class Definition

2014-07-05 Thread Max Leske
Thanks Marcus. I’ve read the paper and now I’m REALLY excited! YAY for Pharo :) On 03.07.2014, at 11:01, Marcus Denker marcus.den...@inria.fr wrote: On 03 Jul 2014, at 10:52, Max Leske maxle...@gmail.com wrote: On 03.07.2014, at 10:21, Marcus Denker marcus.den...@inria.fr wrote: Now

Re: [Pharo-dev] [Pharo4] Slots: Class Definition

2014-07-03 Thread Max Leske
On 03.07.2014, at 10:21, Marcus Denker marcus.den...@inria.fr wrote: Now classes with special Slots are shown with a special class definition (this is just a stand-in, not final… e.g. we need to add first class globals and think about what to do with #category… so we will see. For now

Re: [Pharo-dev] Seeking help

2014-07-02 Thread Max Leske
Can you provide a screenshot of what happens after startup? A stack trace would also be helpful. Cheers, Max On 02.07.2014, at 10:18, Janko Korelc dazajn.kor...@gmail.com wrote: Several days ago I was immersed in Pharo3.0 as this time things worked well. So, did include many packaeges in

Re: [Pharo-dev] Contact of HwaJong Oh

2014-06-28 Thread Max Leske
Copied from one of his messages on the list: daliot...@gmail.com On 28.06.2014, at 09:56, stepharo steph...@free.fr wrote: Hi guys I'm looking for the email of HwaJong Oh. Does anybody of you have it? Stef

Re: [Pharo-dev] about ~=

2014-06-26 Thread Max Leske
On 26.06.2014, at 10:15, Christophe Demarey christophe.dema...@inria.fr wrote: Hi, I would like to make a suggestion that may lead to a long debate but let's go: What do you think about deprecating ~= and replace it with != for example? Why? In mathematics the symbol ~ is used for

Re: [Pharo-dev] SystemWindow instances can't be garbage-collected

2014-06-24 Thread Max Leske
:11, Max Leske maxle...@gmail.com wrote: Found the problem, documenting it here in case anybody else ever needs this (remember, this is 1.1.1). Open a debugger (e.g. by evaluating 1/0), then click into the lower right workspace and type something. OCompletion will now have added an entry

Re: [Pharo-dev] SystemWindow instances can't be garbage-collected

2014-06-24 Thread Max Leske
On 24.06.2014, at 15:30, Max Leske maxle...@gmail.com wrote: For documentation purposes, this is what I found to be necessary to really clean all window instances. Note that this only works reliably when invoked from a non-UI process (e.g. via WAKom). cleanupWindows in general

Re: [Pharo-dev] TaskIT Revealed

2014-06-24 Thread Max Leske
Looks really cool! Everything’s an object :) Does it run in older images? How hard, do you reckon, would it be to backport TaskIT to e.g. Pharo 1.4? Cheers, Max On 23.06.2014, at 00:39, Santiago Bragagnolo santiagobragagn...@gmail.com wrote: Hi all, im glad to announce TaskIT. You may

Re: [Pharo-dev] TaskIT Revealed

2014-06-24 Thread Max Leske
! Thanks. 2014-06-24 17:23 GMT+02:00 Max Leske maxle...@gmail.com: Looks really cool! Everything’s an object :) Does it run in older images? How hard, do you reckon, would it be to backport TaskIT to e.g. Pharo 1.4? Cheers, Max On 23.06.2014, at 00:39, Santiago Bragagnolo

Re: [Pharo-dev] SystemWindow instances can't be garbage-collected

2014-06-21 Thread Max Leske
... sorry can't help you with your question :( Thanks anyway :) On Sat, Jun 21, 2014 at 6:24 PM, Max Leske maxle...@gmail.com wrote: First off: rantwhy do we have an IRC channel if nobody seems to be listening??/rant Sorry about that. Here’s my original question as posted on IRC: Hi

Re: [Pharo-dev] SystemWindow instances can't be garbage-collected

2014-06-21 Thread Max Leske
(no more entrypoints, processes, sessions…) On 21 Jun 2014, at 17:24, Max Leske maxle...@gmail.com wrote: First off: rantwhy do we have an IRC channel if nobody seems to be listening??/rant Sorry about that. Here’s my original question as posted on IRC: Hi guys. I have a couple

Re: [Pharo-dev] SystemWindow instances can't be garbage-collected

2014-06-21 Thread Max Leske
On 21.06.2014, at 18:53, Marcus Denker marcus.den...@inria.fr wrote: On 21 Jun 2014, at 17:36, kilon alios kilon.al...@gmail.com wrote: First off: rantwhy do we have an IRC channel if nobody seems to be listening??/rant too small community for an irc channel. My experience with irc is

Re: [Pharo-dev] SystemWindow instances can't be garbage-collected

2014-06-21 Thread Max Leske
to collect the SystemWindows, other morphs and the Debugger instances. Note that this is probably not an issue in later versions (e.g. 3.0 doesn’t include EventManager anymore) but it might be relevant for later 1.x versions. Max On 21.06.2014, at 20:44, Max Leske maxle...@gmail.com wrote

Re: [Pharo-dev] Cloudfork HMAC-SHA256 in System-Hashing

2014-06-19 Thread Max Leske
On 19.06.2014, at 17:59, François Stephany tulipe.mouta...@gmail.com wrote: Does it make sense from a license point of view and practical point of view to include the CloudFork HMAC-SHA256 implementation (CFSH256 class) in the System-Hashing package (in where there's already SHA1 and MD5)

Re: [Pharo-dev] zip filesystem test cases?

2014-06-18 Thread Max Leske
I have nothing. I checked my old images and there are no test cases for Zip-FileSystem that I could find. ++ for working on that! On 17.06.2014, at 23:51, Tudor Girba tu...@tudorgirba.com wrote: Hi, I am looking into how to fix the Zip FileSystem:

Re: [Pharo-dev] HowToMakeYourOwnTutorial, how to launch my own?

2014-06-13 Thread Max Leske
On 12.06.2014, at 15:06, Marc-Philippe Huget mphu...@gmail.com wrote: Hello everybody, I try to do a tutorial for our project and I decided to use ProfStef, so I follow the instructions as given in HowToMakeYourOwnTutorial, so * no problem to create a class inheriting from AbstractClass

Re: [Pharo-dev] issue validation needed

2014-06-13 Thread Max Leske
it like before, but I wanted to align as close as possible to current Eliot sources. cheers, Esteban On 05 Jun 2014, at 14:49, Max Leske maxle...@gmail.com wrote: Is there an easy way to reproduce this? I don’t quite see what I have to do to verify the fix. On 05.06.2014, at 14:30

Re: [Pharo-dev] strange difference between localhost and 127.0.0.1 with a Zinc server on mac

2014-06-13 Thread Max Leske
Can’t reproduce (OSX 10.9.3). Both curl calls work perfectly for me. Maybe its your curl? Max On 13.06.2014, at 21:32, Luc Fabresse luc.fabre...@gmail.com wrote: Hi, I experiencing a strange difference between localhost and 127.0.0.1. In Pharo I do: (ZnServer startDefaultOn: )

Re: [Pharo-dev] ZeroConf scripts download progress

2014-06-11 Thread Max Leske
On 11.06.2014, at 15:45, Esteban Lorenzano esteba...@gmail.com wrote: On 11 Jun 2014, at 10:41, Esteban A. Maringolo emaring...@gmail.com wrote: Can the zeroconf download of the image and/or vm display a progress? It is... remove the --silent and --quiet arguments from curl and wget

Re: [Pharo-dev] ZeroConf scripts download progress

2014-06-11 Thread Max Leske
On 11.06.2014, at 15:59, Esteban Lorenzano esteba...@gmail.com wrote: On 11 Jun 2014, at 10:54, Max Leske maxle...@gmail.com wrote: On 11.06.2014, at 15:45, Esteban Lorenzano esteba...@gmail.com wrote: On 11 Jun 2014, at 10:41, Esteban A. Maringolo emaring...@gmail.com wrote: Can

Re: [Pharo-dev] ZeroConf scripts download progress

2014-06-11 Thread Max Leske
the script (without any option). What I ask is: how do you tell bash that he needs to transfer a flag “-v” to the downloaded script? Esteban On 11 Jun 2014, at 11:07, Max Leske maxle...@gmail.com wrote: On 11.06.2014, at 15:59, Esteban Lorenzano esteba...@gmail.com wrote: On 11 Jun

Re: [Pharo-dev] Bench comparing Pahro 1.4 and 3.0.

2014-06-09 Thread Max Leske
On 10.06.2014, at 00:08, Nicolai Hess nicolaih...@web.de wrote: The script is slower on Pharo3. But I think, this has nothing to do with the pharo3 image, as the same drgeo image is slower on a pharo3 vm than on the pharo 1.4 vm. When you say “pharo 1.4 vm”, do you mean CogVM? Or SqueakVM?

Re: [Pharo-dev] issue validation needed

2014-06-05 Thread Max Leske
Is there an easy way to reproduce this? I don’t quite see what I have to do to verify the fix. On 05.06.2014, at 14:30, Damien Cassou damien.cas...@gmail.com wrote: On Wed, Jun 4, 2014 at 9:12 PM, Esteban Lorenzano esteba...@gmail.com wrote: can someone check this metacello issue?

Re: [Pharo-dev] github metacello pero and jenkins matrix builds

2014-06-05 Thread Max Leske
On 31.05.2014, at 11:10, Yuriy Tymchuk yuriy.tymc...@me.com wrote: Hi guys, So I’m using this fancy metacello github urls, like: github://user/project[:branch|tag|SHA][/path] and some of my Jenkins matrix builds are randomly failing with: Error: /tmp/github-UkoRenrakumaster.zip

Re: [Pharo-dev] github metacello pero and jenkins matrix builds

2014-06-05 Thread Max Leske
On 06.06.2014, at 07:28, Yuriy Tymchuk yuriy.tymc...@me.com wrote: Sorry for bothering guys, but I really get random errors. For example last one I saw is: An attempt to use interactive tools detected, while in non-interactive mode FileDoesNotExistException:

Re: [Pharo-dev] Some PharoVM work news

2014-06-04 Thread Max Leske
Go Esteban!! On 04.06.2014, at 15:38, Esteban Lorenzano esteba...@gmail.com wrote: Hi, I’ve been working on re-aligning our sources to latest Eliot sources. This is a step previous to compile a spur vm for Pharo. So far… it was a lot of work but I have a working version (in mac, not

[Pharo-dev] ExternalPipemakePipe error

2014-06-01 Thread Max Leske
When trying to load PythonParser into 30 with Gofer it smalltalkhubUser: 'Pharo' project: 'MetaRepoForPharo30/'; configurationOf: 'PythonParser'; loadDevelopment I get the following error (tested with …/30+vm and …/30+vmLatest). Any ideas? I’m on a MacBook Pro, OS X 10.9.3

Re: [Pharo-dev] ExternalPipemakePipe error

2014-06-01 Thread Max Leske
not in the Plugins directory), there’s no easy way of solving this other than updating ConfigurationOfPythonParser, I guess. Dave On Sun, Jun 01, 2014 at 10:25:14PM +0200, Max Leske wrote: When trying to load PythonParser into 30 with Gofer it smalltalkhubUser: 'Pharo' project

Re: [Pharo-dev] what happened with ZipWriteStream class#crcTable ?

2014-05-26 Thread Max Leske
On 26.05.2014, at 20:52, Esteban Lorenzano esteba...@gmail.com wrote: Hi, I wonder what happen with that method… why it was removed? no need of it? I removed that a while ago (see history of Compression package, MaxLeske.127). The crc table is now part of the CRC package and

Re: [Pharo-dev] Seaside 3.1.1 released

2014-05-25 Thread Max Leske
Thanks guys!! On 25.05.2014, at 16:01, Johan Brichau jo...@inceptive.be wrote: We are pleased to announce Seaside 3.1.1 [1]. This is a bugfix release for Seaside 3.1 but features a couple of notable enhancements: • Ported to Gemstone 3.1 • Slime is now available on Squeak,

Re: [Pharo-dev] Fast way to load package form github

2014-05-03 Thread Max Leske
, 2014 at 11:08 AM, Max Leske maxle...@gmail.com wrote: On 28.04.2014, at 10:42, François Stephany tulipe.mouta...@gmail.com wrote: Sounds *really* good! Do you have a time goal for this integration (even rough estimate)? Sorry if this sound stupid but are we far from an integration

Re: [Pharo-dev] Fast way to load package form github

2014-04-28 Thread Max Leske
them, but, still, having conflicts in git isn't cool. We have a better integration coming, through Max Leske work on integrating libgit to Pharo, and we will be able to solve some of the issues above ;) Thierry De : Pharo-dev [pharo-dev-boun...@lists.pharo.org] de la part de François

Re: [Pharo-dev] Differences when loading metacello stable configurations

2014-04-27 Thread Max Leske
On 27.04.2014, at 13:55, Guillermo Polito guillermopol...@gmail.com wrote: Hi guys! I'm having different behaviors when loading metacello configurations using the configuration directly and using gofer: This loads well Gofer it smalltalkhubUser: 'DBXTalk' project: 'DBXTalkDriver';

Re: [Pharo-dev] Fast way to load package form github

2014-04-27 Thread Max Leske
On 27.04.2014, at 17:19, Sean P. DeNigris s...@clipperadams.com wrote: Goubier Thierry wrote I didn't understand that you could, instead of the branch, use a tag or a commit ID as the version identifier Something interesting I read recently that helped me understand git better is that a

Re: [Pharo-dev] [Pharo CI] Linux slave problem solved

2014-04-23 Thread Max Leske
Thanks Marcus On 23.04.2014, at 10:28, Marcus Denker marcus.den...@inria.fr wrote: Hi, The problem with the linux slaves is fixed… things should get normal again. there was an inconsistency between libvirt (used on CloudStack's hypervisor nodes) and the configuration of system's

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

2014-04-22 Thread Max Leske
On 22.04.2014, at 00:16, Sven Van Caekenberghe s...@stfx.eu wrote: On 21 Apr 2014, at 22:51, Max Leske maxle...@gmail.com wrote: On 21.04.2014, at 22:09, Sven Van Caekenberghe s...@stfx.eu wrote: Nice one, why not add a file browser as well ? Sure, maybe the text then needs a small

Re: [Pharo-dev] pharo-contribution: full build queue

2014-04-21 Thread Max Leske
On 21.04.2014, at 09:27, Marcus Denker marcus.den...@inria.fr wrote: On 20 Apr 2014, at 22:22, Max Leske maxle...@gmail.com wrote: There are no available executors on the pharo-contribution CI. Builds are queuing up (around 50 right now) and can’t finish. Can someone have a look please

Re: [Pharo-dev] Arnaud Jean-Baptiste search for a Job position.

2014-04-20 Thread Max Leske
Hi Jean Baptiste We (i.e. netstyle.ch) are still looking for a Seaside / Pharo programmer. If you’re interested in Seaside and if you would consider moving to Switzerland, send us an e-mail. I’ve included the original job description below. Cheers, Max Hi all We are still looking for web

[Pharo-dev] pharo-contribution: full build queue

2014-04-20 Thread Max Leske
There are no available executors on the pharo-contribution CI. Builds are queuing up (around 50 right now) and can’t finish. Can someone have a look please? Max

Re: [Pharo-dev] pharo-project.org down?

2014-04-19 Thread Max Leske
Yes, we’re having server issues. Working on it… On 19.04.2014, at 14:45, Nicolas Petton petton.nico...@gmail.com wrote: http://www.downforeveryoneorjustme.com/pharo-project.org Nico -- Nicolas Petton http://nicolas-petton.fr

Re: [Pharo-dev] Closure vs BlockClosure

2014-04-17 Thread Max Leske
I usually say “block” but I have nothing against a name change. I think “closure” would be an intention revealing name, I like it. And I’m willing to say “closure” from now on :) On 17.04.2014, at 15:35, Alexandre Bergel alexandre.ber...@me.com wrote: Well… the whole community of programming

Re: [Pharo-dev] subversion client in pharo?

2014-04-15 Thread Max Leske
There was one a long time ago, written for pre 2.0 (basically a command line wrapper). I have no clue though where it is now and I very much doubt that it still works. Other than that I haven’t heard of any. Max On 15.04.2014, at 09:28, Tudor Girba tu...@tudorgirba.com wrote: Hi, Does

Re: [Pharo-dev] PharoCondenseChanges validation

2014-04-13 Thread Max Leske
I’d like to help but… where is PharoCondenseChanges in the latest image? On 13.04.2014, at 13:29, Ben Coman b...@openinworld.com wrote: Its cool the new PharoCondenseChanges was integrated 30821, presumably to be used for Pharo 3 release. I have a problem running it on MS Windows

Re: [Pharo-dev] FileSystem-Git status update 3

2014-04-13 Thread Max Leske
On 10.04.2014, at 13:18, Igor Stasenko siguc...@gmail.com wrote: On 10 April 2014 11:44, Henrik Johansen henrik.s.johan...@veloxit.no wrote: On 09 Apr 2014, at 5:30 , Max Leske maxle...@gmail.com wrote: On 09.04.2014, at 17:25, Sean P. DeNigris s...@clipperadams.com wrote: Max

Re: [Pharo-dev] Congratulation Doru Tudor Gîrba!

2014-04-10 Thread Max Leske
Congratulations Doru! Well deserved! On 10.04.2014, at 16:57, Alexandre Bergel alexandre.ber...@me.com wrote: Dear colleges and friends, It is a great pleasure for me to send this email. A couple of days ago AITO officially announced that the junior prize of the AITO Dahl-Nygaard Prize

Re: [Pharo-dev] FileSystem-Git status update 3

2014-04-09 Thread Max Leske
On 09.04.2014, at 17:25, Sean P. DeNigris s...@clipperadams.com wrote: Max Leske wrote In NB, how do I pass NULL into a function call without modifying the argument type? e.g. my argument has type String. passing something like `NBExternalAddress null` will be converted into a C string

Re: [Pharo-dev] FileSystem-Git status update 3

2014-04-08 Thread Max Leske
? Cheers, Max On 08.04.2014, at 18:11, Max Leske maxle...@gmail.com wrote: FINALLY managed to get pull via SSH working (no, there was no bug in libgit2 nor in libssh2… sadly…). Next thing is push via SSH but I think I have that figured out now (hopefully…). Max

Re: [Pharo-dev] strange creation time

2014-04-03 Thread Max Leske
+1 methods should return one single type of object. The only question: what time should be returned? Or should it be nil? On 03.04.2014, at 11:12, Tudor Girba tu...@tudorgirba.com wrote: Hi, I just stumbled across a strange piece of code, and I am wondering about the reasons behind it:

<    1   2   3   4   5   6   7   8   >