Re: [Pharo-users] [offtopic] Re: REST client hints

2017-12-06 Thread Paul DeBruicker
Hi Ben, I haven't used it very much. Just some light testing a few years ago. I've just been using piwik.org on my own server and it works OK for now. Someday maybe I'll want to add segment to access other tools but not yet. Paul Ben Coman wrote > btw, SegmentIO seems quite impressive aggreg

[Pharo-users] Fwd: Installing pharo6.1-64

2017-12-06 Thread Ben Coman
[fwd to list] Thanks for having a go at fixing your font. Unfortunately it didn't work (or maybe something wrong at my end) I'll follow up with you off-list. cheer -ben -- Forwarded message -- From: T.D. Telford Date: 7 December 2017 at 06:58 Subject: Re: [Pharo-users] Installing

Re: [Pharo-users] [Pharo-dev] [TechTalk] Topics Wanted for 2018!

2017-12-06 Thread Alexandre Bergel
Hi Marcus! Thanks for pushing the community! If there is a free slot at the end of January, I can do another tech talk on AI technique. I am thinking about a lecture on Genetic Algorithm and Genetic Programming. Let me know... Alexandre > On Dec 1, 2017, at 7:58 AM, Marcus Denker wrote: >

Re: [Pharo-users] Behold Pharo: The Modern Smalltalk

2017-12-06 Thread Offray Vladimir Luna Cárdenas
If you are working with Mac and Gnu/Linux, your quick start could start by: 1. Create the folder for your Pharo program, download it and Launch it. For that, open your Terminal and type: ``` mkdir -p ~/Programs/Pharo/ cd ~/Programs/Pharo/ |curl get.pharo.org/64/ | bash ./pharo-ui Pharo.image | `

Re: [Pharo-users] Installing pharo6.1-64

2017-12-06 Thread Ben Coman
hi T.D., There are a couple of sources to download Pharo. Could you provide the link that you used? cheers -ben P.S. If possible could you reduce the size of your font, or post using text. The size of your font is a bit jarring. :) On 7 December 2017 at 04:33, T.D. Telford wrote: > There a

[Pharo-users] Installing pharo6.1-64

2017-12-06 Thread T.D. Telford
There are no installation instructions in the README.  If you execute ./pharo at the top level: pharo6.1-64/vm/pharo: No such file or directory In directory tmp if you add ln -s ../shared/Pharo6.1-64.image Pharo.image and execute ./pharo in tmp, then it works.

Re: [Pharo-users] Reporting Pharo issues without FogBugz account

2017-12-06 Thread Julien
Any way to integrate a simple UI to report an issue from Pharo directly then? Since there is no need to log in. This is cool anyway. :-) --- Julien Delplanque Doctorant à l’Université de Lille 1 http://juliendelplanque.be/phd.html Equipe Rmod, Inria Bâtiment B 40, avenue Halley 59650 Villeneuve

Re: [Pharo-users] Reporting Pharo issues without FogBugz account

2017-12-06 Thread Sean P. DeNigris
Pavel Krivanek-3 wrote > FogBugz started to provide an option to report issues without need of > FogBugz account. Good news! - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

[Pharo-users] Reporting Pharo issues without FogBugz account

2017-12-06 Thread Pavel Krivanek
Hi, FogBugz started to provide an option to report issues without need of FogBugz account. Just go to https://pharo.fogbugz.com/ and click on the button "New case". It does not provide all the standard options but it will generate an unique link so you can follow the issue progress. Cheers, -- P

Re: [Pharo-users] dependent magritte descriptions

2017-12-06 Thread Peter Uhnák
> --- It will NOT recalculate the options on the fly when the other > dropdown box has been selected. This probably could be done with some > ajax stuff or a forced HTTP form send. This is precisely what I need. Btw I am using in Pharo (so no web). For now I switched to hand-written spec Form ins

Re: [Pharo-users] Fuel transfer from Pharo 1.4 to Pharo 6.1

2017-12-06 Thread Mariano Martinez Peck
Hi guys, Let me try to explain the current situation. Fuel does check if a closure is clean or not. If clean, it avoids serializing the whole stack. The way it does this is to simply clean the outerContext of the block to NOT have a sender. See methods CompiledMethod >> fuelAccept: So..a clean clo

Re: [Pharo-users] Fuel transfer from Pharo 1.4 to Pharo 6.1

2017-12-06 Thread Andreas Brodbeck
Am 05.12.17 um 17:25 schrieb Sean P. DeNigris: > Andreas Brodbeck-3 wrote >> --- Searched for some few usages of SortedCollection and made sure, that >> there is no sortBlock but only the default sort behaviour. > > Can't we have Fuel handle the sort block if it's clean? I feel like we > discussed

Re: [Pharo-users] dependent magritte descriptions

2017-12-06 Thread Andreas Brodbeck
Am 06.12.17 um 11:34 schrieb Peter Uhnák: > Hi, > > I'm trying to get dependent magritte descriptions, but it seems like this > is not something that can be done in the descriptions: > > Imagine a class Contact with "city" and "country" descriptions. > I would like to populate the city descriptio

Re: [Pharo-users] Calypso question: adding a context menu item

2017-12-06 Thread Juraj Kubelka
Hi Denis, Thanks! In dead, I used incorrect context. Juraj > On Dec 5, 2017, at 18:22, Denis Kudriashov wrote: > > Hi Juraj. > > I repeated your steps and it works for me: > In "vars" mode I have "Say Hello" in context menu of selected variable (just > before "Show in method browser" item).

Re: [Pharo-users] Commander feedback

2017-12-06 Thread Juraj Kubelka
Hi Denis, Thank you. Let me know. I will be happy to help. Juraj > On Dec 5, 2017, at 18:43, Denis Kudriashov wrote: > > Hi Juraj. > > Yes. documentation needs to be improved. I made only pass on it. > Now there is new Commander version. The code still in dev branch >

[Pharo-users] dependent magritte descriptions

2017-12-06 Thread Peter Uhnák
Hi, I'm trying to get dependent magritte descriptions, but it seems like this is not something that can be done in the descriptions: Imagine a class Contact with "city" and "country" descriptions. I would like to populate the city description based on the currently selected country ~