Re: [Pharo-users] How to have an in-image map (morph/spec/brick) showing a gps location

2018-02-08 Thread Sven Van Caekenberghe
> On 9 Feb 2018, at 06:40, Thierry Goubier wrote: > > Le 09/02/2018 à 00:46, Arturo Zambrano a écrit : >> I used Roassal + OSM and worked perfectly (2 year ago at least). Although I >> think there is no support for something like a tiles cache. > > We did the OSM

Re: [Pharo-users] Websocket features

2018-02-08 Thread Sven Van Caekenberghe
Ben, > On 9 Feb 2018, at 04:17, Ben Coman wrote: > > @Sven, > > I'm new to websockets and don't properly grok all the features in columns > here... > https://en.wikipedia.org/wiki/Comparison_of_WebSocket_implementations > > but could you comment on which are provided

Re: [Pharo-users] How to have an in-image map (morph/spec/brick) showing a gps location

2018-02-08 Thread Thierry Goubier
Le 09/02/2018 à 00:46, Arturo Zambrano a écrit : I used Roassal + OSM and worked perfectly (2 year ago at least). Although I think there is no support for something like a tiles cache. We did the OSM support with an in-image tiles cache, but limited to the current map section being viewed.

[Pharo-users] Websocket features

2018-02-08 Thread Ben Coman
@Sven, I'm new to websockets and don't properly grok all the features in columns here... https://en.wikipedia.org/wiki/Comparison_of_WebSocket_implementations but could you comment on which are provided by Zinc Websockets? cheers -ben

Re: [Pharo-users] How to have an in-image map (morph/spec/brick) showing a gps location

2018-02-08 Thread Arturo Zambrano
I used Roassal + OSM and worked perfectly (2 year ago at least). Although I think there is no support for something like a tiles cache. On Thu, Feb 8, 2018 at 7:46 AM, Cédrick Béler wrote: > Hello, > > I would like to have a representation of a map in the image to show (my)

Re: [Pharo-users] PetitParser: Building composed (dependent) parsers and isolating productions code

2018-02-08 Thread Arturo Zambrano
Thanks Diego! I really appreciate your comments. Best regards. Arturo On Fri, Feb 2, 2018 at 6:27 AM, Diego Lont wrote: > Hi, > > I have never used dependents (^ (self dependencyAt: StatementBParser) > ruleB), but here are my thoughts when reading this. > > When parsing

Re: [Pharo-users] GT Documenter status

2018-02-08 Thread Peter H. Meadows via Pharo-users
--- Begin Message --- On 8 February 2018 at 12:27, Tudor Girba wrote: > Hi, > > Thanks for the report. Unfortunately, I do not see the screenshot. Can you > resend it? https://imgur.com/Q76xrR7 > > If you installed the code using your script, you should gotten Moz2D as

Re: [Pharo-users] GT Documenter status

2018-02-08 Thread Peter H. Meadows via Pharo-users
--- Begin Message --- On 8 February 2018 at 12:27, Tudor Girba wrote: > Hi, > > Thanks for the report. Unfortunately, I do not see the screenshot. Can you > resend it? https://imgur.com/gallery/29Z9C > > If you installed the code using your script, you should gotten Moz2D

Re: [Pharo-users] GT Documenter status

2018-02-08 Thread Tudor Girba
Hi, Thanks for the report. Unfortunately, I do not see the screenshot. Can you resend it? If you installed the code using your script, you should gotten Moz2D as well. Doru > On Feb 8, 2018, at 7:59 PM, Peter H. Meadows via Pharo-users > wrote: > > > From:

Re: [Pharo-users] Code formatting in CustomHelp

2018-02-08 Thread Peter Uhnák
Hi, there are couple examples in WelcomeHelp. But more importantly, the HelpTopic content can be a Text, which means you can apply your own formatting. To the text. For example, I have also subsubheading: subsubheading: aString "Return Text object with subsubheading formating attributes." |

Re: [Pharo-users] [Newb Question] Single Nautilus window?

2018-02-08 Thread Stephane Ducasse
With calypso I think that we will be able to invent new flow. But we have more urgent topics but it means that people can experiment. Stef On Thu, Feb 8, 2018 at 11:46 AM, Animosity wrote: > I'm imagining something along the lines of: > - looking at the list of

[Pharo-users] GT Documenter status

2018-02-08 Thread Peter H. Meadows via Pharo-users
--- Begin Message --- Hi. I'm looking at GT Documenter in Pharo 6.1 on Ubuntu. It doesn't display any spaces, and some of the text looks strange. (see attachment for screenshot). Why? (screenshot is from Moose6.1 beta image, but it's the same in Pharo6.1) The screenshot from

[Pharo-users] [ANN] CloudflareUn

2018-02-08 Thread Ben Coman
I needed to pass through a Cloudflare guard so made a tiny library that others may find useful. https://github.com/Traadh/cloudflareun Also I wrote a post detailing the background behind it... http://blog.openinworld.com/2018/02/pharo-v-cloudflare/ cheers -ben

Re: [Pharo-users] How can a Morph display a context menu on a mouse click?

2018-02-08 Thread Juraj Kubelka
Thanks to all answers! It finally works. :-) I am not sure where I did a mistake before. Juraj > On Feb 8, 2018, at 05:33, Stephan Eggermont wrote: > > And your original question > > morph := 'Hello' asMorph. > colorBlock := [ :colorName | > morph color: (Color perform:

Re: [Pharo-users] Generate equality

2018-02-08 Thread Herbert Vojčík
Stephane Ducasse wrote: http://smalltalkhub.com/#!/~CAR/ReusableBricks/packages/Equals Ah. It uses trait that does it dynamically. Good to know, usable for some more dynamic scenarios; but here I wanted something more explicit a la existing "generate xxx", so I went for Alistair's

[Pharo-users] Code formatting in CustomHelp

2018-02-08 Thread Cédrick Béler
Hi, I’m doing some tutorials with the help system. In ProfStef, there is code formatting but not thrgouh the HelpBrowser. In CustomHelp sublclasses, it’s possible to have some formatting (heading:, bold:, …). Do you know if it’s possible to have a #code: method so as to use shout specifically

Re: [Pharo-users] Generate equality

2018-02-08 Thread Stephane Ducasse
http://smalltalkhub.com/#!/~CAR/ReusableBricks/packages/Equals On Thu, Feb 8, 2018 at 12:47 PM, Herbert Vojčík wrote: > > > Alistair Grant wrote: >> >> Hi Herby, >> >> On 8 February 2018 at 03:10, Herbert Vojčík wrote: >>> >>> Hi! >>> >>> Do you think it

Re: [Pharo-users] Generate equality

2018-02-08 Thread Herbert Vojčík
Alistair Grant wrote: Hi Herby, On 8 February 2018 at 03:10, Herbert Vojčík wrote: Hi! Do you think it would be reasonable to have, a la "generate accessors" / "generate initialize method", a "generate equality" thingie that would generate #= and #hash for the method,

Re: [Pharo-users] Neural Network - Handwritten Digit Recognition

2018-02-08 Thread Pierce Ng
On Wed, Feb 07, 2018 at 08:24:29PM +0100, Stephane Ducasse wrote: > Here is the link https://github.com/SquareBracketAssociates/Booklet-IA-Neurons > I can give you commit rights. My Github username is PierceNg. Thank you. Pierce

Re: [Pharo-users] Generate equality

2018-02-08 Thread Alistair Grant
Hi Herby, On 8 February 2018 at 03:10, Herbert Vojčík wrote: > Hi! > > Do you think it would be reasonable to have, a la "generate accessors" / > "generate initialize method", a "generate equality" thingie that would > generate #= and #hash for the method, mechanically? > >

Re: [Pharo-users] Generate equality

2018-02-08 Thread herby
On February 8, 2018 5:07:03 AM GMT+01:00, "Hernán Morales Durand" wrote: >Hi Herbert, > >How the "generate equality" behavior would be the default? >Mechanically = non-interactive? Like “generate accessors”. So interactively, on demand. Of course. I tried to draw

[Pharo-users] How to have an in-image map (morph/spec/brick) showing a gps location

2018-02-08 Thread Cédrick Béler
Hello, I would like to have a representation of a map in the image to show (my) GPS coordinates. I haven’t really tried nor searched yet but I’ve seen Roassal examples that could do the job, especially the Open Street Map integration. So does people here have advices on how to to that (having

Re: [Pharo-users] [Newb Question] Single Nautilus window?

2018-02-08 Thread Animosity
I'm imagining something along the lines of: - looking at the list of senders or implementors that I'm interested in, I'll click on a bunch of them ( or click + a modifier key) - this would enqueue them in the Browser history - switch to my Browser window and use the History to navigate back and

Re: [Pharo-users] How can a Morph display a context menu on a mouse click?

2018-02-08 Thread Stephan Eggermont
And your original question morph := 'Hello' asMorph. colorBlock := [ :colorName | morph color: (Color perform: colorName)]. morph on: #mouseUp send: value to: [ |menu| menu := MenuMorph new. menu add: 'orange' target: colorBlock selector: #value: argument: #orange. menu add: 'blue'

Re: [Pharo-users] Generate equality

2018-02-08 Thread Stephane Ducasse
Guys you should really check what noury did :) On Thu, Feb 8, 2018 at 5:07 AM, Hernán Morales Durand wrote: > Hi Herbert, > > How the "generate equality" behavior would be the default? > Mechanically = non-interactive? > > Cheers, > > Hernán > > > 2018-02-07 13:10

Re: [Pharo-users] [Newb Question] Single Nautilus window?

2018-02-08 Thread Stephane Ducasse
It could be done now - we often look for multiple senders and implementors at the same time so having only one would not work. - we are working on calypso that will replace nautilus. Stef On Thu, Feb 8, 2018 at 3:37 AM, Animosity wrote: > Is there a way to